Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2 for openSUSE:Factory checked in at 2026-01-07 16:00:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2 (Old) and /work/SRC/openSUSE:Factory/.yast2.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2" Wed Jan 7 16:00:50 2026 rev:568 rq:1325637 version:5.0.18 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2/yast2.changes 2025-10-24 17:23:03.954480054 +0200 +++ /work/SRC/openSUSE:Factory/.yast2.new.1928/yast2.changes 2026-01-07 16:01:08.554437643 +0100 @@ -1,0 +2,7 @@ +Tue Jan 6 13:29:03 UTC 2026 - Martin Vidner <[email protected]> + +- save_y2logs: Do not use the legacy /var/lib/rpm database path + (bsc#1254914) +- 5.0.18 + +------------------------------------------------------------------- Old: ---- yast2-5.0.17.tar.bz2 New: ---- yast2-5.0.18.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.m3T6uU/_old 2026-01-07 16:01:09.186463949 +0100 +++ /var/tmp/diff_new_pack.m3T6uU/_new 2026-01-07 16:01:09.186463949 +0100 @@ -1,7 +1,7 @@ # # spec file for package yast2 # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: yast2 -Version: 5.0.17 +Version: 5.0.18 Release: 0 Summary: YaST2 Main Package ++++++ yast2-5.0.17.tar.bz2 -> yast2-5.0.18.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-5.0.17/package/yast2.changes new/yast2-5.0.18/package/yast2.changes --- old/yast2-5.0.17/package/yast2.changes 2025-10-23 09:32:12.000000000 +0200 +++ new/yast2-5.0.18/package/yast2.changes 2026-01-06 14:50:08.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Jan 6 13:29:03 UTC 2026 - Martin Vidner <[email protected]> + +- save_y2logs: Do not use the legacy /var/lib/rpm database path + (bsc#1254914) +- 5.0.18 + +------------------------------------------------------------------- Thu Oct 16 07:44:28 UTC 2025 - Stefan Schubert <[email protected]> - Checking for TPM version. TPM2 < 1.38 will not be supported diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-5.0.17/package/yast2.spec new/yast2-5.0.18/package/yast2.spec --- old/yast2-5.0.17/package/yast2.spec 2025-10-23 09:32:12.000000000 +0200 +++ new/yast2-5.0.18/package/yast2.spec 2026-01-06 14:50:08.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2 -Version: 5.0.17 +Version: 5.0.18 Release: 0 Summary: YaST2 Main Package diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-5.0.17/scripts/save_y2logs new/yast2-5.0.18/scripts/save_y2logs --- old/yast2-5.0.17/scripts/save_y2logs 2025-10-23 09:32:12.000000000 +0200 +++ new/yast2-5.0.18/scripts/save_y2logs 2026-01-06 14:50:08.000000000 +0100 @@ -64,7 +64,7 @@ fi # check for compression program -if [ "$COMPRESSION" -a -z "$(type -p $COMPRESSION)" ]; then +if [ "$COMPRESSION" ] && [ -z "$(type -p $COMPRESSION)" ]; then echo "FATAL: $COMPRESSION not available" >&2 exit 3 fi @@ -118,11 +118,16 @@ fi # installed packages -if [ -f /var/lib/rpm/Packages -o -f /var/lib/rpm/Packages.db ] && [ "$(type -p rpm)" ]; then - rpm -qa --qf '%{NAME}-%{VERSION}-%{RELEASE}\t\t\t(%{VENDOR})\t%{DISTRIBUTION}\n' 2>/dev/null | sort >/$TMPDIR/rpm-qa - LIST_TMP="$LIST_TMP rpm-qa" +if [ "$(type -p rpm)" ]; then + RPM_DBPATH=$(rpm --eval "%{_dbpath}") + if [ -f "$RPM_DBPATH"/Packages.db ] || + [ -f "$RPM_DBPATH"/Packages ]; then + rpm -qa --qf '%{NAME}-%{VERSION}-%{RELEASE}\t\t\t(%{VENDOR})\t%{DISTRIBUTION}\n' | sort >$TMPDIR/rpm-qa + LIST_TMP="$LIST_TMP rpm-qa" + fi fi + # rename, so people can see it if [ -f /.packages.root ]; then cp /.packages.root $TMPDIR/_packages.root
