Hello community,

here is the log from the commit of package opa-fm for openSUSE:Factory checked 
in at 2017-09-20 17:12:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/opa-fm (Old)
 and      /work/SRC/openSUSE:Factory/.opa-fm.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "opa-fm"

Wed Sep 20 17:12:18 2017 rev:7 rq:527302 version:10.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/opa-fm/opa-fm.changes    2017-09-09 
20:25:21.144089680 +0200
+++ /work/SRC/openSUSE:Factory/.opa-fm.new/opa-fm.changes       2017-09-20 
17:12:22.936162455 +0200
@@ -1,0 +2,8 @@
+Tue Sep 19 11:53:01 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to v10.5.1.0.1
+  * No changelog available
+- Update opa-fm-Fallback-to-custom-vendor-if-os_vendor-fails.patch
+  to the latest sources
+
+-------------------------------------------------------------------

Old:
----
  opa-fm-10.4.1.0.2.0.3784085.tar.gz

New:
----
  opa-fm-10.5.1.0.1.0.b5eaf8d.tar.gz

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

Other differences:
------------------
++++++ opa-fm.spec ++++++
--- /var/tmp/diff_new_pack.6WFvIm/_old  2017-09-20 17:12:23.808039722 +0200
+++ /var/tmp/diff_new_pack.6WFvIm/_new  2017-09-20 17:12:23.812039158 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define git_ver .0.2.0.3784085
+%define git_ver .0.1.0.b5eaf8d
 
 %define pseudo_opt %{_prefix}/lib/opa-fm
 %define opasysconfdir %{_sysconfdir}/opa/sysconfig
 %define opavarlibdir %{_localstatedir}/usr/lib/opa-fm/
 Name:           opa-fm
-Version:        10.4.1
+Version:        10.5.1
 Release:        0
 Summary:        Intel Omni-Path Fabric Management Software
 License:        BSD-3-Clause

++++++ _service ++++++
--- /var/tmp/diff_new_pack.6WFvIm/_old  2017-09-20 17:12:23.840035217 +0200
+++ /var/tmp/diff_new_pack.6WFvIm/_new  2017-09-20 17:12:23.840035217 +0200
@@ -8,7 +8,7 @@
     <param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="versionrewrite-replacement">\1</param>
-    <param name="revision">3784085c8d7cb1eea36b0c71043884618f9b7e59</param>
+    <param name="revision">b5eaf8d7a4170fcd25dcf939ac7fca7cfcab3e41</param>
   </service>
   <service name="recompress" mode="disabled">
     <param name="file">opa-fm*.tar</param>

++++++ opa-fm-10.4.1.0.2.0.3784085.tar.gz -> opa-fm-10.5.1.0.1.0.b5eaf8d.tar.gz 
++++++
/work/SRC/openSUSE:Factory/opa-fm/opa-fm-10.4.1.0.2.0.3784085.tar.gz 
/work/SRC/openSUSE:Factory/.opa-fm.new/opa-fm-10.5.1.0.1.0.b5eaf8d.tar.gz 
differ: char 12, line 1

++++++ opa-fm-Fallback-to-custom-vendor-if-os_vendor-fails.patch ++++++
--- /var/tmp/diff_new_pack.6WFvIm/_old  2017-09-20 17:12:23.876030150 +0200
+++ /var/tmp/diff_new_pack.6WFvIm/_new  2017-09-20 17:12:23.876030150 +0200
@@ -1,17 +1,20 @@
 diff --git MakeTools/funcs-ext.sh MakeTools/funcs-ext.sh
-index afeeba9..62c96fe 100755
+index 0d9f1d5..3d283d3 100755
 --- MakeTools/funcs-ext.sh
 +++ MakeTools/funcs-ext.sh
-@@ -711,27 +711,32 @@ function os_vendor()
+@@ -711,30 +711,35 @@ function os_vendor()
          rval=apple
      else
-         filelist=`'ls' /etc/*-release | egrep -v lsb | egrep -v os`
+         filelist=($('ls' /etc/*-release | egrep -v lsb | egrep -v os))
 -        rval=""
+-        if [ ${#filelist[@]} -eq 0 ] && [ -f /etc/lsb-release ]; then
+-            rval=$(cat /etc/lsb-release | egrep DISTRIB_ID | cut -d'=' -f2)
+-        fi
 -        for file in $filelist
 -        do
 -          if [ -f $file ]
 -          then
--                  rval=`basename $file -release`
+-                  rval=$(basename $file -release)
 -                  if [ $rval = 'SuSE' ]
 -                  then
 -                          if [ -f /etc/UnitedLinux-release ]
@@ -31,28 +34,31 @@
 +        then
 +            rval="custom"
 +        else
-+            rval=""
-+            for file in $filelist
-+            do
-+                if [ -f $file ]
-+                then
-+                    rval=`basename $file -release`
-+                    if [ $rval = 'SuSE' ]
-+                    then
-+                        if [ -f /etc/UnitedLinux-release ]
-+                        then
-+                            rval=UnitedLinux
-+                        fi
-+                    elif [ $rval = 'centos' ]
-+                    then
-+                        rval=redhat
-+                    elif [ $rval != 'os' ]
-+                    then
-+                        break
-+                    fi
-+                fi
-+            done
-+        fi
++                      rval=""
++                      if [ ${#filelist[@]} -eq 0 ] && [ -f /etc/lsb-release 
]; then
++                              rval=$(cat /etc/lsb-release | egrep DISTRIB_ID 
| cut -d'=' -f2)
++                      fi
++                      for file in $filelist
++                      do
++                              if [ -f $file ]
++                              then
++                                      rval=$(basename $file -release)
++                                      if [ $rval = 'SuSE' ]
++                                      then
++                                              if [ -f 
/etc/UnitedLinux-release ]
++                                              then
++                                                      rval=UnitedLinux
++                                              fi
++                                      elif [ $rval = 'centos' ]
++                                      then
++                                              rval=redhat
++                                      elif [ $rval != 'os' ]
++                                      then
++                                              break
++                                      fi
++                              fi
++                      done
++              fi
      fi
      echo $rval
  }


Reply via email to