Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-Bootloader for openSUSE:Factory checked in at 2023-09-08 21:15:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Bootloader (Old) and /work/SRC/openSUSE:Factory/.perl-Bootloader.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Bootloader" Fri Sep 8 21:15:14 2023 rev:210 rq:1109591 version:1.8 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes 2023-07-04 15:21:59.634066434 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new.1766/perl-Bootloader.changes 2023-09-08 21:15:44.714908501 +0200 @@ -1,0 +2,15 @@ +Thu Sep 7 17:05:41 UTC 2023 - wfe...@opensuse.org + +- merge gh#openSUSE/perl-bootloader#158 +- skip warning about unsupported options when in compat mode +- 1.8 + +-------------------------------------------------------------------- +Thu Sep 7 16:36:25 UTC 2023 - wfe...@opensuse.org + +- merge gh#openSUSE/perl-bootloader#156 +- bootloader_entry script can have an optional 'force-default' + argument (bsc#1215064) +- 1.7 + +-------------------------------------------------------------------- Old: ---- perl-Bootloader-1.6.tar.xz New: ---- perl-Bootloader-1.8.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Bootloader.spec ++++++ --- /var/tmp/diff_new_pack.fKZtBl/_old 2023-09-08 21:15:46.382968117 +0200 +++ /var/tmp/diff_new_pack.fKZtBl/_new 2023-09-08 21:15:46.382968117 +0200 @@ -25,7 +25,7 @@ %{!?_distconfdir:%global _distconfdir /etc} Name: perl-Bootloader -Version: 1.6 +Version: 1.8 Release: 0 Requires: coreutils Requires: perl-base = %{perl_version} ++++++ perl-Bootloader-1.6.tar.xz -> perl-Bootloader-1.8.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-1.6/VERSION new/perl-Bootloader-1.8/VERSION --- old/perl-Bootloader-1.6/VERSION 2023-07-03 14:40:36.000000000 +0200 +++ new/perl-Bootloader-1.8/VERSION 2023-09-07 19:05:41.000000000 +0200 @@ -1 +1 @@ -1.6 +1.8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-1.6/changelog new/perl-Bootloader-1.8/changelog --- old/perl-Bootloader-1.6/changelog 2023-07-03 14:40:36.000000000 +0200 +++ new/perl-Bootloader-1.8/changelog 2023-09-07 19:05:41.000000000 +0200 @@ -1,3 +1,12 @@ +2023-09-07: 1.8 + - merge gh#openSUSE/perl-bootloader#158 + - skip warning about unsupported options when in compat mode + +2023-09-07: 1.7 + - merge gh#openSUSE/perl-bootloader#156 + - bootloader_entry script can have an optional 'force-default' + argument (bsc#1215064) + 2023-07-03: 1.6 - merge gh#openSUSE/perl-bootloader#154 - move kexec-bootloader from kexec-tools to perl-Bootloader diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-1.6/pbl new/perl-Bootloader-1.8/pbl --- old/perl-Bootloader-1.6/pbl 2023-07-03 14:40:36.000000000 +0200 +++ new/perl-Bootloader-1.8/pbl 2023-09-07 19:05:41.000000000 +0200 @@ -300,7 +300,8 @@ } if($program eq 'bootloader_entry') { - if($ARGV[0] =~ /^(add|remove)$/ && @ARGV == 5) { + # there might be an optional 6th argument 'force-default' + if($ARGV[0] =~ /^(add|remove)$/ && @ARGV >= 5) { push @todo, [ "$ARGV[0]-kernel", @ARGV[2..4] ] } else { @@ -338,7 +339,7 @@ } else { log_msg(1, "$cmd[0] skipped"); - print "Option --$opt not available for $loader.\n"; + print "Option --$opt not available for $loader.\n" if $program eq "pbl"; } } }