Hello community,

here is the log from the commit of package yast2-reipl for openSUSE:Factory 
checked in at 2015-01-30 06:12:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-reipl (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-reipl.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-reipl"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-reipl/yast2-reipl.changes  2014-12-05 
21:04:08.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-reipl.new/yast2-reipl.changes     
2015-01-30 06:12:26.000000000 +0100
@@ -1,0 +2,5 @@
+Mon Jan 26 13:39:42 UTC 2015 - [email protected]
+
+- fixed \r character lost during conversion to Ruby
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ yast2-reipl.spec ++++++
--- /var/tmp/diff_new_pack.0Pxytw/_old  2015-01-30 06:12:27.000000000 +0100
+++ /var/tmp/diff_new_pack.0Pxytw/_new  2015-01-30 06:12:27.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-reipl
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++++++ yast2-reipl-3.1.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.6/package/yast2-reipl.changes 
new/yast2-reipl-3.1.6/package/yast2-reipl.changes
--- old/yast2-reipl-3.1.6/package/yast2-reipl.changes   2014-12-04 
11:01:56.000000000 +0100
+++ new/yast2-reipl-3.1.6/package/yast2-reipl.changes   2015-01-27 
13:38:11.000000000 +0100
@@ -1,4 +1,9 @@
 -------------------------------------------------------------------
+Mon Jan 26 13:39:42 UTC 2015 - [email protected]
+
+- fixed \r character lost during conversion to Ruby
+
+-------------------------------------------------------------------
 Thu Dec  4 09:51:20 UTC 2014 - [email protected]
 
 - remove X-KDE-Library from desktop file (bnc#899104)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.6/src/modules/Reipl.rb 
new/yast2-reipl-3.1.6/src/modules/Reipl.rb
--- old/yast2-reipl-3.1.6/src/modules/Reipl.rb  2014-12-04 11:01:56.000000000 
+0100
+++ new/yast2-reipl-3.1.6/src/modules/Reipl.rb  2015-01-27 13:38:11.000000000 
+0100
@@ -134,19 +134,19 @@
       type = lsreipl_lines[0][/ccw$|fcp$|node$/]
       if type == "ccw"
          ccw_map = configuration["ccw"]
-         ccw_map["device"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[1][/[0-3]\.[0-3]\.[\h.]*$/]),
 "\n ") if lsreipl_lines[1]
-         ccw_map["loadparm"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[2][/".*"$/]), "\n \"") if 
lsreipl_lines[2]
-         ccw_map["parm"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[3][/".*"$/]), "\n \"") if 
lsreipl_lines[3]
+         ccw_map["device"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[1][/[0-3]\.[0-3]\.[\h.]*$/]),
 "\n\r") if lsreipl_lines[1]
+         ccw_map["loadparm"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[2][/".*"$/]), "\n\r\"") if 
lsreipl_lines[2]
+         ccw_map["parm"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[3][/".*"$/]), "\n\r\"") if 
lsreipl_lines[3]
          Ops.set(configuration, "ccw", ccw_map)
       end
       if type == "fcp"
          fcp_map = configuration["fcp"]
-         ccw_map["wwpm"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[1][/[x\h]*$/]), "\n ") if 
lsreipl_lines[1]
-         ccw_map["lun"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[2][/[x\h]*$/]), "\n ") if 
lsreipl_lines[2]
-         ccw_map["device"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[3][/[0-3]\.[0-3]\.[\h.]*$/]),
 "\n ") if lsreipl_lines[3]
-         ccw_map["bootprog"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[4][/[0-9]*$/]), "\n ") if 
lsreipl_lines[4]
-         ccw_map["br_lbr"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[5][/[0-9]*$/]), "\n ") if 
lsreipl_lines[5]
-         ccw_map["bootparms"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[6][/".*"*$/]), "\n \"") if 
lsreipl_lines[6]
+         ccw_map["wwpm"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[1][/[x\h]*$/]), "\n\r") if 
lsreipl_lines[1]
+         ccw_map["lun"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[2][/[x\h]*$/]), "\n\r") if 
lsreipl_lines[2]
+         ccw_map["device"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[3][/[0-3]\.[0-3]\.[\h.]*$/]),
 "\n\r") if lsreipl_lines[3]
+         ccw_map["bootprog"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[4][/[0-9]*$/]), "\n\r") if 
lsreipl_lines[4]
+         ccw_map["br_lbr"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[5][/[0-9]*$/]), "\n\r") if 
lsreipl_lines[5]
+         ccw_map["bootparms"] = 
Builtins.deletechars(Convert.to_string(lsreipl_lines[6][/".*"*$/]), "\n\r\"") 
if lsreipl_lines[6]
          Ops.set(configuration, "fcp", fcp_map)
       end
 

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

Reply via email to