Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2017-07-24 12:28:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and      /work/SRC/openSUSE:Factory/.post-build-checks.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "post-build-checks"

Mon Jul 24 12:28:51 2017 rev:85 rq:510267 version:84.87+git20170712.7ededdb

Changes:
--------
--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes      
2017-05-27 13:05:07.255853615 +0200
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2017-07-24 12:28:53.975353498 +0200
@@ -1,0 +2,7 @@
+Wed Jul 12 15:28:01 UTC 2017 - tchva...@suse.com
+
+- Update to version 84.87+git20170712.7ededdb:
+  * Fix spacing in sequence-point warning
+  * Try harder matching soname changes/tweaks (this fixes lua name change)
+
+-------------------------------------------------------------------

Old:
----
  post-build-checks-84.87+git20170411.08a40e3.tar.xz

New:
----
  post-build-checks-84.87+git20170712.7ededdb.tar.xz

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

Other differences:
------------------
++++++ post-build-checks.spec ++++++
--- /var/tmp/diff_new_pack.qLIJj6/_old  2017-07-24 12:28:54.727247401 +0200
+++ /var/tmp/diff_new_pack.qLIJj6/_new  2017-07-24 12:28:54.731246836 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define version_unconverted 84.87+git20170411.08a40e3
+%define version_unconverted 84.87+git20170712.7ededdb
 
 Name:           post-build-checks
 Summary:        post checks for build after rpms have been created
 License:        GPL-2.0+
 Group:          Development/Tools/Building
-Version:        84.87+git20170411.08a40e3
+Version:        84.87+git20170712.7ededdb
 Release:        0
 PreReq:         aaa_base permissions sed
 Requires:       aaa_base-malloccheck

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.qLIJj6/_old  2017-07-24 12:28:54.771241193 +0200
+++ /var/tmp/diff_new_pack.qLIJj6/_new  2017-07-24 12:28:54.771241193 +0200
@@ -1,5 +1,5 @@
 <servicedata>
   <service name="tar_scm">
     <param name="url">git://github.com/openSUSE/post-build-checks.git</param>
-  <param 
name="changesrevision">9ada94ad999c469c04f9a4225e7007da36c382e3</param></service>
+  <param 
name="changesrevision">268bf4f1ad73ba925ae045fc3ee8b339f6b71b3e</param></service>
 </servicedata>
\ No newline at end of file

++++++ post-build-checks-84.87+git20170411.08a40e3.tar.xz -> 
post-build-checks-84.87+git20170712.7ededdb.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20170411.08a40e3/checks/99-check-remove-rpms 
new/post-build-checks-84.87+git20170712.7ededdb/checks/99-check-remove-rpms
--- old/post-build-checks-84.87+git20170411.08a40e3/checks/99-check-remove-rpms 
2017-04-11 13:57:44.000000000 +0200
+++ new/post-build-checks-84.87+git20170712.7ededdb/checks/99-check-remove-rpms 
2017-07-12 17:20:36.000000000 +0200
@@ -56,13 +56,15 @@
     test -e "$BUILD_ROOT/installed-pkg/$PKG-mini" && continue
     # Nor packages differing in the shlib version like libreadline5 vs.
     # libreadline6
-    PKG1=${PKG%[0-9]}[0-9]
-    test -e $BUILD_ROOT/installed-pkg/$PKG1 && {
-        N=`ls $BUILD_ROOT/installed-pkg/$PKG1`
+    # libtool allows for version match like libbla-1_2-5 thus we should match
+    # for it all possibilities and pass if the soname changed
+    PKG1=${PKG//[0-9_-]/}[0-9]*
+    if [[ `ls -1 $BUILD_ROOT/installed-pkg/$PKG1 2>/dev/null | wc -l ` -gt 0 
]]; then
+        N=`ls -1 $BUILD_ROOT/installed-pkg/$PKG1 |head -n1`
        N=`basename $N`
        echo "(keeping $PKG because of $N)"
        continue
-    }
+    fi
     # Do not remove libgcc or libstdc++ variants
     case ${PKG} in
     libgcc*|libstdc++*)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20170411.08a40e3/checks-data/check_gcc_output 
new/post-build-checks-84.87+git20170712.7ededdb/checks-data/check_gcc_output
--- 
old/post-build-checks-84.87+git20170411.08a40e3/checks-data/check_gcc_output    
    2017-04-11 13:57:44.000000000 +0200
+++ 
new/post-build-checks-84.87+git20170712.7ededdb/checks-data/check_gcc_output    
    2017-07-12 17:20:36.000000000 +0200
@@ -41,7 +41,7 @@
 my %warn_desc = (
     "strict-aliasing-punning" =>  "Program is likely to break with new gcc. 
Try -fno-strict-aliasing.\n",
     "sequence-point" => "Program causes undefined operation\n(likely same 
variable used twice" .
-            "and post/pre incremented in the same expression).\n" .
+            " and post/pre incremented in the same expression).\n" .
             "e.g. x = x++; Split it in two operations.",
     "mathmeaning" => "Program uses operation a <= b <= c, which is not well 
defined.\n",
     "no-return-in-nonvoid-function" => "Program returns random data in a 
function",


Reply via email to