Hello community, here is the log from the commit of package perl-Bootloader for openSUSE:Factory checked in at 2015-07-21 13:25:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2015-07-05 17:51:27.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 2015-07-21 13:25:54.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Jul 20 11:06:23 CEST 2015 - [email protected] + +- do not escape empty string as it lead to invalid kernel command line (bsc#937806) +- 0.839 + +------------------------------------------------------------------- Old: ---- perl-Bootloader-0.838.tar.xz New: ---- perl-Bootloader-0.839.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Bootloader.spec ++++++ --- /var/tmp/diff_new_pack.TujxgC/_old 2015-07-21 13:25:54.000000000 +0200 +++ /var/tmp/diff_new_pack.TujxgC/_new 2015-07-21 13:25:54.000000000 +0200 @@ -17,7 +17,7 @@ Name: perl-Bootloader -Version: 0.838 +Version: 0.839 Release: 0 Requires: coreutils Requires: perl-base = %{perl_version} ++++++ perl-Bootloader-0.838.tar.xz -> perl-Bootloader-0.839.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.838/VERSION new/perl-Bootloader-0.839/VERSION --- old/perl-Bootloader-0.838/VERSION 2015-06-23 17:06:21.000000000 +0200 +++ new/perl-Bootloader-0.839/VERSION 2015-07-20 11:02:56.000000000 +0200 @@ -1 +1 @@ -0.838 +0.839 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.838/changelog new/perl-Bootloader-0.839/changelog --- old/perl-Bootloader-0.838/changelog 2015-06-23 17:06:21.000000000 +0200 +++ new/perl-Bootloader-0.839/changelog 2015-07-20 11:02:56.000000000 +0200 @@ -1,3 +1,6 @@ +2015-07-20: 0.839 + - do not escape empty string as it lead to invalid kernel command line (bnc #937806) + 2015-06-23: 0.838 - do not prepend additional empty space to append (bnc #926426) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.838/src/Core.pm new/perl-Bootloader-0.839/src/Core.pm --- old/perl-Bootloader-0.838/src/Core.pm 2015-06-23 17:06:21.000000000 +0200 +++ new/perl-Bootloader-0.839/src/Core.pm 2015-07-20 11:02:56.000000000 +0200 @@ -329,6 +329,8 @@ $text = $self->trim($text); return $text if ($text =~ /^`.*`$/); #leave full strings in backticks untouched + #leave empty string as it is as there is no other way to express it (bnc#937806) + return $text if ($text =~ /^""$/); $text =~ s/([\\"`\$])/\\$1/g; #escape backslashes, backticks, dollars and quotes
