Hello community,

here is the log from the commit of package perl-Bootloader for openSUSE:Factory 
checked in at 2014-02-21 13:48:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-01-23 15:51:13.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes     
2014-02-21 13:48:25.000000000 +0100
@@ -1,0 +2,12 @@
+Mon Feb 17 13:15:12 CET 2014 - [email protected]
+
+- fix section info not returning initrd (bnc #863909)
+- 0.804
+
+-------------------------------------------------------------------
+Tue Feb 11 13:14:12 CET 2014 - [email protected]
+
+- fix grub2-editenv path: failed to determine default menu entry (bnc #861469)
+- 0.803
+
+-------------------------------------------------------------------

Old:
----
  perl-Bootloader-0.802.tar.xz

New:
----
  perl-Bootloader-0.804.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Bootloader.spec ++++++
--- /var/tmp/diff_new_pack.bqXByK/_old  2014-02-21 13:48:25.000000000 +0100
+++ /var/tmp/diff_new_pack.bqXByK/_new  2014-02-21 13:48:25.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Bootloader
-Version:        0.802
+Version:        0.804
 Release:        0
 Requires:       coreutils
 Requires:       e2fsprogs

++++++ perl-Bootloader-0.802.tar.xz -> perl-Bootloader-0.804.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.802/perl-Bootloader.changes 
new/perl-Bootloader-0.804/perl-Bootloader.changes
--- old/perl-Bootloader-0.802/perl-Bootloader.changes   2014-01-16 
16:42:25.000000000 +0100
+++ new/perl-Bootloader-0.804/perl-Bootloader.changes   2014-02-17 
13:15:59.000000000 +0100
@@ -1,4 +1,16 @@
 -------------------------------------------------------------------
+Mon Feb 17 13:15:12 CET 2014 - [email protected]
+
+- fix section info not returning initrd (bnc #863909)
+- 0.804
+
+-------------------------------------------------------------------
+Tue Feb 11 13:14:12 CET 2014 - [email protected]
+
+- fix grub2-editenv path: failed to determine default menu entry (bnc #861469)
+- 0.803
+
+-------------------------------------------------------------------
 Thu Jan 16 16:41:54 CET 2014 - [email protected]
 
 - workaround to avoid double rootflags entries
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.802/src/Core/GRUB2.pm 
new/perl-Bootloader-0.804/src/Core/GRUB2.pm
--- old/perl-Bootloader-0.802/src/Core/GRUB2.pm 2014-01-16 16:41:16.000000000 
+0100
+++ new/perl-Bootloader-0.804/src/Core/GRUB2.pm 2014-02-17 13:15:59.000000000 
+0100
@@ -289,6 +289,11 @@
 
                 $sect_info{"append"} = $append;
             }
+
+            if ($cfg2 =~ /^\s+initrd\s+([^\s]+)/m) {
+                $sect_info{"initrd"} = $1;
+            }
+
             push @{$sect}, \%sect_info;
         } elsif ($type eq "submenu") {
             &GrubCfgSections ($name, $cfg2, $sect);
@@ -1111,8 +1116,8 @@
     my $sections = $ret->{"sections"};
     my $globals = $ret->{"global"};
 
-    if (! -e "/usr/sbin/grub2-editenv") {
-        $self->warning ("file not exist /usr/sbin/grub2-editenv");
+    if (! -e "/usr/bin/grub2-editenv") {
+        $self->warning ("file not exist /usr/bin/grub2-editenv");
         return $ret;
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.802/src/Core/GRUB2EFI.pm 
new/perl-Bootloader-0.804/src/Core/GRUB2EFI.pm
--- old/perl-Bootloader-0.802/src/Core/GRUB2EFI.pm      2014-01-16 
16:43:02.000000000 +0100
+++ new/perl-Bootloader-0.804/src/Core/GRUB2EFI.pm      2014-02-17 
13:15:59.000000000 +0100
@@ -113,6 +113,11 @@
 
                 $sect_info{"append"} = $append;
             }
+
+            if ($cfg2 =~ /^\s+(initrd|initrdefi)\s+([^\s]+)/m) {
+                $sect_info{"initrd"} = $2;
+            }
+
             push @{$sect}, \%sect_info;
         } elsif ($type eq "submenu") {
             &GrubCfgSections ($name, $cfg2, $sect);
@@ -703,8 +708,8 @@
     my $sections = $ret->{"sections"};
     my $globals = $ret->{"global"};
 
-    if (! -e "/usr/sbin/grub2-editenv") {
-        $self->warning ("file not exist /usr/sbin/grub2-editenv");
+    if (! -e "/usr/bin/grub2-editenv") {
+        $self->warning ("file not exist /usr/bin/grub2-editenv");
         return $ret;
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.802/version 
new/perl-Bootloader-0.804/version
--- old/perl-Bootloader-0.802/version   2014-01-16 16:41:48.000000000 +0100
+++ new/perl-Bootloader-0.804/version   2014-02-17 13:15:59.000000000 +0100
@@ -1 +1 @@
-0.802
+0.804
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.802/version~ 
new/perl-Bootloader-0.804/version~
--- old/perl-Bootloader-0.802/version~  2014-01-14 14:12:28.000000000 +0100
+++ new/perl-Bootloader-0.804/version~  1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-0.801

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to