Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2014-02-05 16:29:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and      /work/SRC/openSUSE:Factory/.post-build-checks.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "post-build-checks"

Changes:
--------
--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes      
2014-02-02 07:43:49.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2014-02-05 16:29:31.000000000 +0100
@@ -1,0 +2,5 @@
+Tue Feb  4 14:19:50 UTC 2014 - [email protected]
+
+- do not remove libgcc or libstdc++ packages in install-check
+
+-------------------------------------------------------------------

Old:
----
  post-build-checks-13.2+git20140131.590c07b.tar.xz

New:
----
  post-build-checks-13.2+git20140204.5b17faa.tar.xz

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

Other differences:
------------------
++++++ post-build-checks.spec ++++++
--- /var/tmp/diff_new_pack.wRflOD/_old  2014-02-05 16:29:31.000000000 +0100
+++ /var/tmp/diff_new_pack.wRflOD/_new  2014-02-05 16:29:31.000000000 +0100
@@ -20,7 +20,7 @@
 Summary:        post checks for build after rpms have been created
 License:        GPL-2.0+
 Group:          Development/Tools/Building
-Version:        13.2+git20140131.590c07b
+Version:        13.2+git20140204.5b17faa
 Release:        0
 PreReq:         aaa_base permissions sed
 Requires:       aaa_base-malloccheck

++++++ post-build-checks-13.2+git20140131.590c07b.tar.xz -> 
post-build-checks-13.2+git20140204.5b17faa.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-13.2+git20140131.590c07b/checks/99-check-remove-rpms 
new/post-build-checks-13.2+git20140204.5b17faa/checks/99-check-remove-rpms
--- old/post-build-checks-13.2+git20140131.590c07b/checks/99-check-remove-rpms  
2014-01-31 15:24:53.000000000 +0100
+++ new/post-build-checks-13.2+git20140204.5b17faa/checks/99-check-remove-rpms  
2014-02-04 15:18:49.000000000 +0100
@@ -50,7 +50,10 @@
     PKG=${RPM##*/}
     PKG=${PKG%-*-*.*.rpm}
     PKG=${PKG%.rpm}
+    # Do not remove installed packages
     test -e "$BUILD_ROOT/installed-pkg/$PKG" && 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`
@@ -58,7 +61,14 @@
        echo "(keeping $PKG because of $N)"
        continue
     }
-    RPM_ERASE_LIST="$RPM_ERASE_LIST $PKG"
+    # Do not remove libgcc or libstdc++ variants
+    case ${RPM} in
+    libgcc*|libstdc++*)
+       ;;
+    *)
+       RPM_ERASE_LIST="$RPM_ERASE_LIST $PKG"
+       ;;
+    esac
 done
 test -z "$REORDER_MISSED" || echo "    (reorder missed ${REORDER_MISSED% })"
 if test -n "$RPM_ERASE_LIST" ; then

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to