Hello community,

here is the log from the commit of package powerpc-utils for openSUSE:Factory 
checked in at 2020-02-29 21:20:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/powerpc-utils (Old)
 and      /work/SRC/openSUSE:Factory/.powerpc-utils.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "powerpc-utils"

Sat Feb 29 21:20:11 2020 rev:100 rq:779523 version:1.3.7.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/powerpc-utils/powerpc-utils.changes      
2020-02-14 16:27:38.155264298 +0100
+++ /work/SRC/openSUSE:Factory/.powerpc-utils.new.26092/powerpc-utils.changes   
2020-02-29 21:20:19.634019312 +0100
@@ -1,0 +2,9 @@
+Wed Feb 26 14:56:16 UTC 2020 - Josef Möllers <[email protected]>
+
+- Fixed one instance where the previous change corrupted the
+  exit status of a command.
+  Redirected two error messages to stderr.
+  [bsc#1164068,
+   0001-powerpc-utils-Suppress-errors-reading-kernel-files.patch]
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ powerpc-utils.spec ++++++
--- /var/tmp/diff_new_pack.4CgAEi/_old  2020-02-29 21:20:20.642021306 +0100
+++ /var/tmp/diff_new_pack.4CgAEi/_new  2020-02-29 21:20:20.642021306 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package powerpc-utils
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++++++ 0001-powerpc-utils-Suppress-errors-reading-kernel-files.patch ++++++
--- /var/tmp/diff_new_pack.4CgAEi/_old  2020-02-29 21:20:20.670021361 +0100
+++ /var/tmp/diff_new_pack.4CgAEi/_new  2020-02-29 21:20:20.670021361 +0100
@@ -34,19 +34,10 @@
  scripts/ofpathname | 4 ++--
  2 files changed, 6 insertions(+), 6 deletions(-)
 
-diff --git a/scripts/bootlist b/scripts/bootlist
-index acdaf89..1d1c210 100755
---- a/scripts/bootlist
-+++ b/scripts/bootlist
-@@ -169,7 +169,7 @@ get_logical_device_name()
-     local devname=$1
-     local logical_name
- 
--    logical_name=`$OFPATHNAME -l $devname 2>/dev/null`
-+    logical_name=`$OFPATHNAME -l $devname 2>/dev/null | tr -d '\000'`
-     if [[ $? -ne 0 ]]; then
-       echo ""
-     else
+Index: powerpc-utils-1.3.7/scripts/bootlist
+===================================================================
+--- powerpc-utils-1.3.7.orig/scripts/bootlist
++++ powerpc-utils-1.3.7/scripts/bootlist
 @@ -207,11 +207,11 @@ show_bootlist()
      local devlist=$1
      local i
@@ -57,7 +48,7 @@
            name=`get_logical_device_name $i`
            if [[ -z $name ]]; then
 -              echo "Could not translate $i to logical device name"
-+              echo "Could not translate $i to logical device name" 2>&1
++              echo "Could not translate $i to logical device name" >&2
            else
                case $name in
                    eth*)   parse_eth_info $name $i ;;
@@ -66,14 +57,14 @@
  . $PSERIES_PLATFORM
  if [[ $platform != $PLATFORM_PSERIES_LPAR ]]; then
 -    echo "bootlist: is not supported on the $platform_name platform"
-+    echo "bootlist: is not supported on the $platform_name platform" 2>&1
++    echo "bootlist: is not supported on the $platform_name platform" >&2
      exit 1
  fi
  
-diff --git a/scripts/ofpathname b/scripts/ofpathname
-index dc452c4..7c6345e 100755
---- a/scripts/ofpathname
-+++ b/scripts/ofpathname
+Index: powerpc-utils-1.3.7/scripts/ofpathname
+===================================================================
+--- powerpc-utils-1.3.7.orig/scripts/ofpathname
++++ powerpc-utils-1.3.7/scripts/ofpathname
 @@ -656,7 +656,7 @@ l2of_nvme()
  
          goto_dir $PWD "device/devspec"
@@ -92,6 +83,3 @@
      if [[ -z $devtype ]]; then
          err $ERR_NO_OFPATH
      fi
--- 
-2.16.4
-


Reply via email to