Hello community,

here is the log from the commit of package perl-Bootloader for openSUSE:Factory 
checked in at 2016-02-18 11:05:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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  
2016-01-28 17:18:30.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes     
2016-02-18 12:35:25.000000000 +0100
@@ -1,0 +2,12 @@
+Mon Feb  8 10:37:23 UTC 2016 - [email protected]
+
+- fix misleading error message (bsc#965499)
+- 0.906
+
+-------------------------------------------------------------------
+Mon Feb  8 10:17:24 UTC 2016 - [email protected]
+
+- Fix parsing of /etc/default/grub
+- 0.905
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ perl-Bootloader.spec ++++++
--- /var/tmp/diff_new_pack.oVCifA/_old  2016-02-18 12:35:26.000000000 +0100
+++ /var/tmp/diff_new_pack.oVCifA/_new  2016-02-18 12:35:26.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Bootloader
-Version:        0.904
+Version:        0.906
 Release:        0
 Requires:       coreutils
 Requires:       perl-base = %{perl_version}

++++++ perl-Bootloader-0.904.tar.xz -> perl-Bootloader-0.906.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.904/VERSION 
new/perl-Bootloader-0.906/VERSION
--- old/perl-Bootloader-0.904/VERSION   2016-01-22 11:32:44.000000000 +0100
+++ new/perl-Bootloader-0.906/VERSION   2016-02-08 11:35:19.000000000 +0100
@@ -1 +1 @@
-0.904
+0.906
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.904/changelog 
new/perl-Bootloader-0.906/changelog
--- old/perl-Bootloader-0.904/changelog 2016-01-22 11:32:44.000000000 +0100
+++ new/perl-Bootloader-0.906/changelog 2016-02-08 11:35:19.000000000 +0100
@@ -1,3 +1,9 @@
+2016-02-08:    0.906
+       - fix misleading error message (bsc #965499)
+
+2016-02-06:    0.905
+       - Fix parsing of /etc/default/grub
+
 2016-01-22:    0.904
        - fix typo
        - Fix dtb searching
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.904/pbl 
new/perl-Bootloader-0.906/pbl
--- old/perl-Bootloader-0.904/pbl       2016-01-22 11:32:44.000000000 +0100
+++ new/perl-Bootloader-0.906/pbl       2016-02-08 11:35:19.000000000 +0100
@@ -200,11 +200,10 @@
   else {
     open STDERR, ">&STDOUT";
     exec @_;
+    print "$command: " . ($! == 13 ? $! : "command not found") . " \n";
     exit 127;
   }
 
-  $output = "$command: " . ($! == 13 ? $! : "command not found") . " \n" if 
$ret == 127;
-
   if(!$ret) {
     log_msg(1, "'$command' = $ret, output:", $output);
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.904/src/Core/GRUB2.pm 
new/perl-Bootloader-0.906/src/Core/GRUB2.pm
--- old/perl-Bootloader-0.904/src/Core/GRUB2.pm 2016-01-22 11:32:44.000000000 
+0100
+++ new/perl-Bootloader-0.906/src/Core/GRUB2.pm 2016-02-08 11:35:19.000000000 
+0100
@@ -466,7 +466,7 @@
     # need to process saparately
     foreach my $conf (@defaultconf) {
         if ($conf =~ m/^\s*#\s*GRUB_/) {
-            $conf =~ s/^\s*#/@/;
+            $conf =~ s/^\s*#\s*/@/;
         }
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.904/src/Core/GRUB2EFI.pm 
new/perl-Bootloader-0.906/src/Core/GRUB2EFI.pm
--- old/perl-Bootloader-0.904/src/Core/GRUB2EFI.pm      2016-01-22 
11:32:44.000000000 +0100
+++ new/perl-Bootloader-0.906/src/Core/GRUB2EFI.pm      2016-02-08 
11:35:19.000000000 +0100
@@ -275,7 +275,7 @@
     # need to process saparately
     foreach my $conf (@defaultconf) {
         if ($conf =~ m/^\s*#\s*GRUB_/) {
-            $conf =~ s/^\s*#/@/;
+            $conf =~ s/^\s*#\s*/@/;
         }
     }
 


Reply via email to