Hello community, here is the log from the commit of package perl-Bootloader for openSUSE:Factory checked in at 2014-05-17 22:01:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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-10 07:48:57.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 2014-05-17 22:01:53.000000000 +0200 @@ -1,0 +2,12 @@ +Thu May 15 11:48:38 CEST 2014 - snwint@suse.de + +- remove grub2 sections workaround +- 0.816 + +------------------------------------------------------------------- +Thu May 15 06:28:56 UTC 2014 - mchang@suse.com + +- enable btrfs snapshot booting on all architectures +- 0.815 + +------------------------------------------------------------------- Old: ---- perl-Bootloader-0.814.tar.xz New: ---- perl-Bootloader-0.816.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Bootloader.spec ++++++ --- /var/tmp/diff_new_pack.MNquXa/_old 2014-05-17 22:01:54.000000000 +0200 +++ /var/tmp/diff_new_pack.MNquXa/_new 2014-05-17 22:01:54.000000000 +0200 @@ -17,7 +17,7 @@ Name: perl-Bootloader -Version: 0.814 +Version: 0.816 Release: 0 Requires: coreutils Requires: e2fsprogs ++++++ perl-Bootloader-0.814.tar.xz -> perl-Bootloader-0.816.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.814/perl-Bootloader.changes new/perl-Bootloader-0.816/perl-Bootloader.changes --- old/perl-Bootloader-0.814/perl-Bootloader.changes 2014-05-06 13:37:51.000000000 +0200 +++ new/perl-Bootloader-0.816/perl-Bootloader.changes 2014-05-15 11:48:55.000000000 +0200 @@ -1,4 +1,16 @@ ------------------------------------------------------------------- +Thu May 15 11:48:38 CEST 2014 - snwint@suse.de + +- remove grub2 sections workaround +- 0.816 + +------------------------------------------------------------------- +Thu May 15 06:28:56 UTC 2014 - mchang@suse.com + +- enable btrfs snapshot booting on all architectures +- 0.815 + +------------------------------------------------------------------- Tue May 6 11:15:41 UTC 2014 - jreidinger@suse.com - fix upgrade when converting from grub1 to grub2 (bnc#876359) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.814/src/Core/GRUB2.pm new/perl-Bootloader-0.816/src/Core/GRUB2.pm --- old/perl-Bootloader-0.814/src/Core/GRUB2.pm 2014-05-06 13:37:51.000000000 +0200 +++ new/perl-Bootloader-0.816/src/Core/GRUB2.pm 2014-05-15 11:48:55.000000000 +0200 @@ -666,7 +666,6 @@ sub CreateLines { my $self = shift; my $global = $self->{"global"}; - my $sections = $self->{"sections"}; # first create /etc/default/grub_installdevice my $grub2_installdev = $self->CreateGrubInstalldevLines(); @@ -679,26 +678,6 @@ } } - foreach my $sect (@{$sections}) { - - my $append = undef; - - next unless $sect->{"__modified"} || 0; - - if (exists $sect->{"usage"}) { - if ($sect->{"usage"} eq "linux") { - $append = \$global->{"append"}; - } elsif ($sect->{"usage"} eq "linux_failsafe") { - $append = \$global->{"append_failsafe"}; - } - } - - if (defined $append && $sect->{"append"} ne ${$append}) { - ${$append} = $sect->{"append"}; - last; - } - } - my $grub2_defaultconf = $self->PrepareMenuFileLines ( [], $global, @@ -965,12 +944,7 @@ my $distributor = delete $globinfo{"distributor"} || ""; my $append_failsafe = delete $globinfo{"append_failsafe"} || ""; my $os_prober = delete $globinfo{"os_prober"} || ""; - my $suse_btrfs = delete $globinfo{"suse_btrfs"} || ""; - # per default enable btrfs snapshot boot configs only on i386-pc - # other architectures (s390, ppc) are planned but not ready - if ($suse_btrfs eq "" and $self->{'target'} =~ /(i386-pc|powerpc-ieee1275)/) { - $suse_btrfs = "true"; - } + my $suse_btrfs = delete $globinfo{"suse_btrfs"} || "true"; # $root = " root=$root" if $root ne ""; $vga = " vga=$vga" if $vga ne ""; $append = " $append" if $append ne ""; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.814/src/Core/GRUB2EFI.pm new/perl-Bootloader-0.816/src/Core/GRUB2EFI.pm --- old/perl-Bootloader-0.814/src/Core/GRUB2EFI.pm 2014-05-06 13:37:51.000000000 +0200 +++ new/perl-Bootloader-0.816/src/Core/GRUB2EFI.pm 2014-05-15 11:48:55.000000000 +0200 @@ -271,7 +271,6 @@ sub CreateLines { my $self = shift; my $global = $self->{"global"}; - my $sections = $self->{"sections"}; if (defined $global->{"__lines"}) { foreach my $line (@{$global->{"__lines"}}) { @@ -281,26 +280,6 @@ } } - foreach my $sect (@{$sections}) { - - my $append = undef; - - next unless $sect->{"__modified"} || 0; - - if (exists $sect->{"usage"}) { - if ($sect->{"usage"} eq "linux") { - $append = \$global->{"append"}; - } elsif ($sect->{"usage"} eq "linux_failsafe") { - $append = \$global->{"append_failsafe"}; - } - } - - if (defined $append && $sect->{"append"} ne ${$append}) { - ${$append} = $sect->{"append"}; - last; - } - } - my $grub2_defaultconf = $self->PrepareMenuFileLines ( [], $global, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.814/version new/perl-Bootloader-0.816/version --- old/perl-Bootloader-0.814/version 2014-05-06 13:37:51.000000000 +0200 +++ new/perl-Bootloader-0.816/version 2014-05-15 11:48:55.000000000 +0200 @@ -1 +1 @@ -0.814 +0.816 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org