Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package update-bootloader for openSUSE:Factory checked in at 2025-07-20 15:28:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/update-bootloader (Old) and /work/SRC/openSUSE:Factory/.update-bootloader.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "update-bootloader" Sun Jul 20 15:28:37 2025 rev:9 rq:1294066 version:1.25 Changes: -------- --- /work/SRC/openSUSE:Factory/update-bootloader/update-bootloader.changes 2025-01-27 20:50:26.766734598 +0100 +++ /work/SRC/openSUSE:Factory/.update-bootloader.new.8875/update-bootloader.changes 2025-07-20 15:29:15.296523597 +0200 @@ -1,0 +2,8 @@ +Thu Jul 17 09:11:35 UTC 2025 - wfe...@opensuse.org + +- merge gh#openSUSE/perl-bootloader#191 +- avoid spurious warning messages when parsing /etc/default/grub + (bsc#1246373, bsc#1245323) +- 1.25 + +-------------------------------------------------------------------- Old: ---- update-bootloader-1.24.tar.xz New: ---- update-bootloader-1.25.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ update-bootloader.spec ++++++ --- /var/tmp/diff_new_pack.Gjbk7e/_old 2025-07-20 15:29:16.988593616 +0200 +++ /var/tmp/diff_new_pack.Gjbk7e/_new 2025-07-20 15:29:17.004594279 +0200 @@ -25,7 +25,7 @@ %{!?_distconfdir:%global _distconfdir /etc} Name: update-bootloader -Version: 1.24 +Version: 1.25 Release: 0 Requires: coreutils Requires: util-linux ++++++ update-bootloader-1.24.tar.xz -> update-bootloader-1.25.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/update-bootloader-1.24/VERSION new/update-bootloader-1.25/VERSION --- old/update-bootloader-1.24/VERSION 2025-01-24 18:03:35.000000000 +0100 +++ new/update-bootloader-1.25/VERSION 2025-07-17 11:11:35.000000000 +0200 @@ -1 +1 @@ -1.24 +1.25 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/update-bootloader-1.24/changelog new/update-bootloader-1.25/changelog --- old/update-bootloader-1.24/changelog 2025-01-24 18:03:35.000000000 +0100 +++ new/update-bootloader-1.25/changelog 2025-07-17 11:11:35.000000000 +0200 @@ -1,3 +1,8 @@ +2025-07-17: 1.25 + - merge gh#openSUSE/perl-bootloader#191 + - avoid spurious warning messages when parsing /etc/default/grub + (bsc#1246373, bsc#1245323) + 2025-01-24: 1.24 - merge gh#openSUSE/perl-bootloader#190 - re-add --refresh option (bsc#1236393) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/update-bootloader-1.24/pbl.sh new/update-bootloader-1.25/pbl.sh --- old/update-bootloader-1.24/pbl.sh 2025-01-24 18:03:35.000000000 +0100 +++ new/update-bootloader-1.25/pbl.sh 2025-07-17 11:11:35.000000000 +0200 @@ -255,12 +255,6 @@ # set_loader () { - if [ "$1" = grub2-bls -a "$DEFAULT__GRUB_ENABLE_BLSCFG" = false ] ; then - lib_set_config "/etc/default/grub" "GRUB_ENABLE_BLSCFG" "true" - elif [ \( "$1" = grub2-efi -o "$1" = grub2 \) -a "$DEFAULT__GRUB_ENABLE_BLSCFG" = true ] ; then - lib_set_config "/etc/default/grub" "GRUB_ENABLE_BLSCFG" "false" - fi - lib_set_config "$sysconfig_dir/bootloader" "LOADER_TYPE" "$1" return $? @@ -312,17 +306,9 @@ read_sysconfig "bootloader"; read_sysconfig "language"; -read_config "/etc/default/grub" "DEFAULT" - loader="$SYS__BOOTLOADER__LOADER_TYPE" lang="$SYS__LANGUAGE__RC_LANG" -if [ "$loader" = grub2-efi -a "$DEFAULT__GRUB_ENABLE_BLSCFG" = true ] ; then - loader=grub2-bls -elif [ "$loader" = grub2-bls -a "$DEFAULT__GRUB_ENABLE_BLSCFG" = false ] ; then - loader=grub2-efi -fi - set_log "$logfile" log_msg 1 "bootloader = $loader"