Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2025-07-27 16:25:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and      /work/SRC/openSUSE:Factory/.post-build-checks.new.13279 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "post-build-checks"

Sun Jul 27 16:25:35 2025 rev:118 rq:1295772 version:84.87+git20250725.0c3a172

Changes:
--------
--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes      
2024-03-29 13:08:57.466719836 +0100
+++ 
/work/SRC/openSUSE:Factory/.post-build-checks.new.13279/post-build-checks.changes
   2025-07-27 16:25:36.920133557 +0200
@@ -1,0 +2,6 @@
+Fri Jul 25 12:50:58 UTC 2025 - Ruediger Oertel <r...@suse.com>
+
+- Update to version 84.87+git20250725.0c3a172:
+  * try to sort all searches for built rpms to make it more consistent
+
+-------------------------------------------------------------------

Old:
----
  post-build-checks-84.87+git20240327.7996a0f.tar.xz

New:
----
  post-build-checks-84.87+git20250725.0c3a172.tar.xz

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

Other differences:
------------------
++++++ post-build-checks.spec ++++++
--- /var/tmp/diff_new_pack.YQcVbe/_old  2025-07-27 16:25:39.256229972 +0200
+++ /var/tmp/diff_new_pack.YQcVbe/_new  2025-07-27 16:25:39.256229972 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package post-build-checks
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 Summary:        post checks for build after rpms have been created
 License:        GPL-2.0-or-later
 Group:          Development/Tools/Building
-Version:        84.87+git20240327.7996a0f
+Version:        84.87+git20250725.0c3a172
 Release:        0
 PreReq:         aaa_base
 PreReq:         permissions

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.YQcVbe/_old  2025-07-27 16:25:39.696248132 +0200
+++ /var/tmp/diff_new_pack.YQcVbe/_new  2025-07-27 16:25:39.756250608 +0200
@@ -4,6 +4,6 @@
   <param 
name="changesrevision">9a72096c56008474c812a087e25d6e84eb357297</param></service>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/openSUSE/post-build-checks.git</param>
-              <param 
name="changesrevision">73dbdbc1f8b89bd5959d150203dc57a93132bc20</param></service></servicedata>
+              <param 
name="changesrevision">0c3a172193506175482fbbd5ea366744c1ef4d2f</param></service></servicedata>
 (No newline at EOF)
 

++++++ post-build-checks-84.87+git20240327.7996a0f.tar.xz -> 
post-build-checks-84.87+git20250725.0c3a172.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/00-check-install-rpms 
new/post-build-checks-84.87+git20250725.0c3a172/checks/00-check-install-rpms
--- 
old/post-build-checks-84.87+git20240327.7996a0f/checks/00-check-install-rpms    
    2024-03-27 10:38:02.000000000 +0100
+++ 
new/post-build-checks-84.87+git20250725.0c3a172/checks/00-check-install-rpms    
    2025-07-25 14:48:24.000000000 +0200
@@ -4,7 +4,7 @@
 TOPDIR=/usr/src/packages
 test -d $BUILD_ROOT/.build.packages && TOPDIR=/.build.packages
 export YAST_IS_RUNNING="instsys"
-for rpm in `find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm"`; do
+for rpm in `find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | LC_ALL=C 
sort`; do
   case ${rpm##*/} in
     rpm-ndb-*) 
       echo "converting rpm database to ndb"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-filelist 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-filelist
--- old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-filelist    
2024-03-27 10:38:02.000000000 +0100
+++ new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-filelist    
2025-07-25 14:48:24.000000000 +0200
@@ -6,7 +6,7 @@
 test -d $BUILD_ROOT/.build.packages && TOPDIR=/.build.packages
 ret=0
 
-for pkg in `find $BUILD_ROOT$TOPDIR/RPMS -name "*.rpm"`; do
+for pkg in `find $BUILD_ROOT$TOPDIR/RPMS -name "*.rpm" | LC_ALL=C sort`; do
        case "$pkg" in
                *-debuginfo-*|*-debugsource-*) continue ;;
        esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-installtest 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-installtest
--- old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-installtest 
2024-03-27 10:38:02.000000000 +0100
+++ new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-installtest 
2025-07-25 14:48:24.000000000 +0200
@@ -17,7 +17,7 @@
 test -d $BUILD_ROOT/proc/sys || { echo "proc is not mounted"; exit 1; }
 
 export YAST_IS_RUNNING="instsys"
-for i in $(find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | sort) ; do
+for i in $(find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | LC_ALL=C sort) 
; do
     set -- $($RPM --macros=/dev/null -qp --qf '%{PREINPROG} %{POSTINPROG} 
%{PREUNPROG} %{POSTUNPROG}' ${i#$BUILD_ROOT})
     pre_p="$1"
     post_p="$2"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-invalid-provides
 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-invalid-provides
--- 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-invalid-provides
    2024-03-27 10:38:02.000000000 +0100
+++ 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-invalid-provides
    2025-07-25 14:48:24.000000000 +0200
@@ -8,7 +8,7 @@
 
 RPM="env LC_ALL=C rpm --macros=/dev/null --nodigest --nosignature"
 
-for package in `find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm"` ; do
+for package in `find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | LC_ALL=C 
sort` ; do
   if $RPM -qp --provides $package | grep -q -E "^$($RPM -qp --qf='%{NAME}' 
$package)[[:space:]]*$"; then
     echo ""
     echo "ERROR: ${package##$BUILD_ROOT}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-invalid-requires
 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-invalid-requires
--- 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-invalid-requires
    2024-03-27 10:38:02.000000000 +0100
+++ 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-invalid-requires
    2025-07-25 14:48:24.000000000 +0200
@@ -8,6 +8,7 @@
 RPM="chroot $BUILD_ROOT rpm --nodigest --nosignature"
 
 FORBIDDEN_REQ=`find $BUILD_ROOT$TOPDIR/RPMS -name "*.rpm" | \
+    LC_ALL=C sort | \
     xargs --no-run-if-empty rpm -qp --requires| \
     grep -E "/usr/local/|/usr/share/bin"`
 
@@ -22,7 +23,7 @@
         esac
 done
 
-for pack in $(find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm") ; do
+for pack in $(find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | LC_ALL=C 
sort) ; do
        case $pack in
                *-debuginfo-*|*-debugsource-*)
                        N=`rpm -qp --qf "%{NAME}" $pack`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-permissions 
new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-permissions
--- old/post-build-checks-84.87+git20240327.7996a0f/checks/50-check-permissions 
2024-03-27 10:38:02.000000000 +0100
+++ new/post-build-checks-84.87+git20250725.0c3a172/checks/50-check-permissions 
2025-07-25 14:48:24.000000000 +0200
@@ -14,7 +14,7 @@
 
 RPM="chroot $BUILD_ROOT env LC_ALL=C rpm --nodigest --nosignature -Vp 
--nofiledigest --nodeps"
 
-for i in $(find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | sort) ; do
+for i in $(find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | LC_ALL=C sort) 
; do
     case "$pkg" in
         *-debuginfo-*|*-debugsource-*) continue ;;
     esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20240327.7996a0f/checks/99-check-remove-rpms 
new/post-build-checks-84.87+git20250725.0c3a172/checks/99-check-remove-rpms
--- old/post-build-checks-84.87+git20240327.7996a0f/checks/99-check-remove-rpms 
2024-03-27 10:38:02.000000000 +0100
+++ new/post-build-checks-84.87+git20250725.0c3a172/checks/99-check-remove-rpms 
2025-07-25 14:48:24.000000000 +0200
@@ -50,7 +50,7 @@
 echo "... removing all built rpms"
 export YAST_IS_RUNNING="instsys"
 RPM_ERASE_LIST=
-RPM_FILE_LIST=(`find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm"`)
+RPM_FILE_LIST=(`find $BUILD_ROOT$TOPDIR/RPMS -type f -name "*.rpm" | LC_ALL=C 
sort`)
 
 # essential deps that are needed by the build script to finish
 ESSENTIAL_PKG_TO_KEEP=" $(chroot $BUILD_ROOT rpm --qf '%{NAME}\n' -qf 
/usr/bin/{date,cat,rm,chown,find,su,gzip,cpio,sh,mount,umount} 
/sbin/{swapon,swapoff} $(readlink -f 
/usr/bin/{date,cat,rm,chown,find,su,gzip,cpio,sh})|sort -u|xargs) "

Reply via email to