commit perl-Bootloader for openSUSE:Factory
Hello community, here is the log from the commit of package perl-Bootloader for openSUSE:Factory checked in at 2014-05-10 07:48:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Bootloader (Old) and /work/SRC/openSUSE:Factory/.perl-Bootloader.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "perl-Bootloader" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes 2014-05-02 20:52:10.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 2014-05-10 07:48:57.000000000 +0200 @@ -1,0 +2,6 @@ +Tue May 6 11:15:41 UTC 2014 - jreidinger@suse.com + +- fix upgrade when converting from grub1 to grub2 (bnc#876359) +- 0.814 + +------------------------------------------------------------------- Old: ---- perl-Bootloader-0.813.tar.xz New: ---- perl-Bootloader-0.814.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Bootloader.spec ++++++ --- /var/tmp/diff_new_pack.5DD9Wf/_old 2014-05-10 07:48:58.000000000 +0200 +++ /var/tmp/diff_new_pack.5DD9Wf/_new 2014-05-10 07:48:58.000000000 +0200 @@ -17,7 +17,7 @@ Name: perl-Bootloader -Version: 0.813 +Version: 0.814 Release: 0 Requires: coreutils Requires: e2fsprogs ++++++ perl-Bootloader-0.813.tar.xz -> perl-Bootloader-0.814.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.813/perl-Bootloader.changes new/perl-Bootloader-0.814/perl-Bootloader.changes --- old/perl-Bootloader-0.813/perl-Bootloader.changes 2014-04-29 10:26:03.000000000 +0200 +++ new/perl-Bootloader-0.814/perl-Bootloader.changes 2014-05-06 13:37:51.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue May 6 11:15:41 UTC 2014 - jreidinger@suse.com + +- fix upgrade when converting from grub1 to grub2 (bnc#876359) +- 0.814 + +------------------------------------------------------------------- Tue Apr 29 10:21:07 CEST 2014 - snwint@suse.de - fix regexp to not backtrack endlessly if parentheses don't match (bnc #875369) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.813/src/Core/GRUB2.pm new/perl-Bootloader-0.814/src/Core/GRUB2.pm --- old/perl-Bootloader-0.813/src/Core/GRUB2.pm 2014-04-29 10:26:03.000000000 +0200 +++ new/perl-Bootloader-0.814/src/Core/GRUB2.pm 2014-05-06 13:37:51.000000000 +0200 @@ -388,22 +388,11 @@ # list<string> ListFiles () sub ListFiles { my $self = shift; - my @ret = (); - - for my $i ( - Bootloader::Path::Grub2_installdevice(), + return [ Bootloader::Path::Grub2_installdevice(), Bootloader::Path::Grub2_defaultconf(), Bootloader::Path::Grub2_conf(), - Bootloader::Path::Grub2_devicemap(), - ) { - if (-e $i) { - push @ret, $i; - } else { - $self->warning ("$i: config file does not exist"); - } - } - - return \@ret; + Bootloader::Path::Grub2_devicemap() + ]; } =item diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.813/src/Core/GRUB2EFI.pm new/perl-Bootloader-0.814/src/Core/GRUB2EFI.pm --- old/perl-Bootloader-0.813/src/Core/GRUB2EFI.pm 2014-04-29 10:26:03.000000000 +0200 +++ new/perl-Bootloader-0.814/src/Core/GRUB2EFI.pm 2014-05-06 13:37:51.000000000 +0200 @@ -198,21 +198,9 @@ # list<string> ListFiles () sub ListFiles { my $self = shift; - my @ret = (); - - if (-e Bootloader::Path::Grub2_defaultconf()) { - push @ret, Bootloader::Path::Grub2_defaultconf(); - } else { - $self->warning ("file not exist ".Bootloader::Path::Grub2_defaultconf()); - } - - if (-e Bootloader::Path::Grub2_conf()) { - push @ret, Bootloader::Path::Grub2_conf(); - } else { - $self->warning ("file not exist ".Bootloader::Path::Grub2_conf()); - } - - return \@ret; + return [ Bootloader::Path::Grub2_defaultconf(), + Bootloader::Path::Grub2_conf() + ]; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.813/version new/perl-Bootloader-0.814/version --- old/perl-Bootloader-0.813/version 2014-04-29 10:26:03.000000000 +0200 +++ new/perl-Bootloader-0.814/version 2014-05-06 13:37:51.000000000 +0200 @@ -1 +1 @@ -0.813 +0.814 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de