Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package autoyast2 for openSUSE:Factory checked in at 2022-05-09 18:43:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old) and /work/SRC/openSUSE:Factory/.autoyast2.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "autoyast2" Mon May 9 18:43:37 2022 rev:323 rq:975442 version:4.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes 2022-04-08 00:27:55.494183449 +0200 +++ /work/SRC/openSUSE:Factory/.autoyast2.new.1538/autoyast2.changes 2022-05-09 18:43:52.852191809 +0200 @@ -1,0 +2,8 @@ +Tue May 3 15:00:22 UTC 2022 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Fix detection disk serial and size in the "disks" ERB helper + (bsc#1199000). +- Fix rules validation when using a dialog (bsc#1199165). +- 4.5.1 + +------------------------------------------------------------------- @@ -4 +12 @@ -- Bump version to 4.5.0 (#bsc1198109) +- Bump version to 4.5.0 (bsc#1198109) Old: ---- autoyast2-4.5.0.tar.bz2 New: ---- autoyast2-4.5.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ autoyast2.spec ++++++ --- /var/tmp/diff_new_pack.IACngF/_old 2022-05-09 18:43:53.560192639 +0200 +++ /var/tmp/diff_new_pack.IACngF/_new 2022-05-09 18:43:53.568192649 +0200 @@ -22,7 +22,7 @@ %endif Name: autoyast2 -Version: 4.5.0 +Version: 4.5.1 Release: 0 Summary: YaST2 - Automated Installation License: GPL-2.0-only ++++++ autoyast2-4.5.0.tar.bz2 -> autoyast2-4.5.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.5.0/package/autoyast2.changes new/autoyast2-4.5.1/package/autoyast2.changes --- old/autoyast2-4.5.0/package/autoyast2.changes 2022-04-06 15:29:14.000000000 +0200 +++ new/autoyast2-4.5.1/package/autoyast2.changes 2022-05-06 17:27:23.000000000 +0200 @@ -1,7 +1,15 @@ ------------------------------------------------------------------- +Tue May 3 15:00:22 UTC 2022 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Fix detection disk serial and size in the "disks" ERB helper + (bsc#1199000). +- Fix rules validation when using a dialog (bsc#1199165). +- 4.5.1 + +------------------------------------------------------------------- Wed Apr 06 13:24:58 UTC 2022 - Ladislav Slez??k <lsle...@suse.cz> -- Bump version to 4.5.0 (#bsc1198109) +- Bump version to 4.5.0 (bsc#1198109) ------------------------------------------------------------------- Fri Apr 1 06:12:50 UTC 2022 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.5.0/package/autoyast2.spec new/autoyast2-4.5.1/package/autoyast2.spec --- old/autoyast2-4.5.0/package/autoyast2.spec 2022-04-06 15:29:14.000000000 +0200 +++ new/autoyast2-4.5.1/package/autoyast2.spec 2022-05-06 17:27:23.000000000 +0200 @@ -22,7 +22,7 @@ %endif Name: autoyast2 -Version: 4.5.0 +Version: 4.5.1 Release: 0 Summary: YaST2 - Automated Installation License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.5.0/src/autoyast-rnc/rules.rnc new/autoyast2-4.5.1/src/autoyast-rnc/rules.rnc --- old/autoyast2-4.5.0/src/autoyast-rnc/rules.rnc 2022-04-06 15:29:14.000000000 +0200 +++ new/autoyast2-4.5.1/src/autoyast-rnc/rules.rnc 2022-05-06 17:27:23.000000000 +0200 @@ -28,10 +28,11 @@ element rule { MAP, ( - y2_match_to+ & + ( + y2_match_to+ | (y2_match_to* & dialog) + ) & result & - operator? & - dialog? + operator? ) } @@ -120,7 +121,7 @@ element conflicts { LIST, element (element | listentry) { INTEGER }* - } + }? } profile = diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.5.0/src/lib/autoinstall/y2erb.rb new/autoyast2-4.5.1/src/lib/autoinstall/y2erb.rb --- old/autoyast2-4.5.0/src/lib/autoinstall/y2erb.rb 2022-04-06 15:29:14.000000000 +0200 +++ new/autoyast2-4.5.1/src/lib/autoinstall/y2erb.rb 2022-05-06 17:27:23.000000000 +0200 @@ -41,8 +41,8 @@ udev_names: disk["dev_names"] } result[:model] = sys_block_value(dev_name, "device/model") || "Unknown" - result[:serial] = sys_block_value(dev_name, "device/serial") || "Unknown" - result[:size] = (sys_block_value(dev_name, "device/size") || "-1").to_i + result[:serial] = sys_block_value(dev_name, "serial") || "Unknown" + result[:size] = (sys_block_value(dev_name, "size") || "-1").to_i @disks << result end @@ -117,7 +117,7 @@ sys_path = "/sys/block/#{device}/" ::File.read(sys_path + path).strip rescue StandardError => e - log.warn "read of #{sys_path + path} failed with #{e}" + log.warn "read of #{sys_path + path} failed with #{e}" nil end end