[yast-commit] [ci_new_pac] JFYI yast2-installation -> sle12
Script 'mail_helper' called by ro Hello packager, This is just FYI. Your package was checked in in distribution "sle12" by autobuild-member: ro. Here comes the log... ---------------------------%<------------------------------ Hi, here is the log from ci_new_pac /mounts/work_src_done/SLE12/yast2-installation -> sle12 ## BNC# 869463 : "[s390x, boot] KCL contains 'IPLDEV CONDEV'" (RESOLVED/FIXED) Changes: -------- --- /work/SRC/SUSE:SLE-12:GA/yast2-installation/yast2-installation.changes 2014-03-24 16:55:53.000000000 +0100 +++ /mounts/work_src_done/SLE12/yast2-installation/yast2-installation.changes 2014-03-25 11:37:18.000000000 +0100 @@ -1,0 +2,7 @@ +Mon Mar 24 14:48:36 UTC 2014 - jreidinger@suse.com + +- change cio_ignore kernel parameter according to kernel changes + (bnc#869463) +- 3.1.59 + +------------------------------------------------------------------- calling whatdependson for sle12-i586 Packages directly triggered for rebuild: - yast2-installation - at least 20 other packages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:SLE-12:GA/yast2-installation (Old) and /mounts/work_src_done/SLE12/yast2-installation (BS:build ID:34760 MAIL:yast-commit@opensuse.org) (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-installation", Maintainer is "yast-commit@opensuse.org" Old: ---- yast2-installation-3.1.58.tar.bz2 New: ---- yast2-installation-3.1.59.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.MITgCc/_old 2014-03-25 16:02:25.000000000 +0100 +++ /var/tmp/diff_new_pack.MITgCc/_new 2014-03-25 16:02:25.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 3.1.58 +Version: 3.1.59 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-installation-3.1.58.tar.bz2 -> yast2-installation-3.1.59.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.58/package/yast2-installation.changes new/yast2-installation-3.1.59/package/yast2-installation.changes --- old/yast2-installation-3.1.58/package/yast2-installation.changes 2014-03-24 13:44:22.000000000 +0100 +++ new/yast2-installation-3.1.59/package/yast2-installation.changes 2014-03-25 11:34:09.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Mar 24 14:48:36 UTC 2014 - jreidinger@suse.com + +- change cio_ignore kernel parameter according to kernel changes + (bnc#869463) +- 3.1.59 + +------------------------------------------------------------------- Mon Mar 24 12:33:47 UTC 2014 - jreidinger@suse.com - avoid constant redefinition warning(BNC#869202) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.58/package/yast2-installation.spec new/yast2-installation-3.1.59/package/yast2-installation.spec --- old/yast2-installation-3.1.58/package/yast2-installation.spec 2014-03-24 13:44:22.000000000 +0100 +++ new/yast2-installation-3.1.59/package/yast2-installation.spec 2014-03-25 11:34:09.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 3.1.58 +Version: 3.1.59 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.58/src/lib/installation/cio_ignore.rb new/yast2-installation-3.1.59/src/lib/installation/cio_ignore.rb --- old/yast2-installation-3.1.58/src/lib/installation/cio_ignore.rb 2014-03-24 13:44:22.000000000 +0100 +++ new/yast2-installation-3.1.59/src/lib/installation/cio_ignore.rb 2014-03-25 11:34:09.000000000 +0100 @@ -166,9 +166,7 @@ res = Yast::Bootloader.Read # API is not much intuitive, see Yast::Bootloader.setKernelParam for details - res &&= Yast::Bootloader.setKernelParam("DEFAULT", "IPLDEV", "true") - res &&= Yast::Bootloader.setKernelParam("DEFAULT", "CONDEV", "true") - + res &&= Yast::Bootloader.setKernelParam("DEFAULT", "cio_ignore", "ALL,!IPLDEV,!CONDEV") res &&= Yast::Bootloader.Write diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.58/test/cio_ignore_test.rb new/yast2-installation-3.1.59/test/cio_ignore_test.rb --- old/yast2-installation-3.1.58/test/cio_ignore_test.rb 2014-03-24 13:44:22.000000000 +0100 +++ new/yast2-installation-3.1.59/test/cio_ignore_test.rb 2014-03-25 11:34:09.000000000 +0100 @@ -162,10 +162,8 @@ it "adds kernel parameters IPLDEV and CONDEV to the bootloader" do expect(Yast::Bootloader).to receive(:Write).once { true } expect(Yast::Bootloader).to receive(:Read).once { true } - allow(Yast::Bootloader).to receive(:setKernelParam).once. - with("DEFAULT", "IPLDEV", "true").and_return(true) - allow(Yast::Bootloader).to receive(:setKernelParam).once. - with("DEFAULT", "CONDEV", "true").and_return(true) + expect(Yast::Bootloader).to receive(:setKernelParam).once. + with("DEFAULT", "cio_ignore", /ALL/).and_return(true) subject.run("Write") end @@ -174,9 +172,7 @@ expect(Yast::Bootloader).to receive(:Write).never expect(Yast::Bootloader).to receive(:Read).once { true } allow(Yast::Bootloader).to receive(:setKernelParam).once. - with("DEFAULT", "IPLDEV", "true").and_return(true) - allow(Yast::Bootloader).to receive(:setKernelParam).once. - with("DEFAULT", "CONDEV", "true").and_return(false) + with("DEFAULT", "cio_ignore", /ALL/).and_return(false) expect{subject.run("Write")}.to raise_error(RuntimeError, /failed to write kernel parameters/) end continue with "q"... Checked in at Tue Mar 25 16:02:36 CET 2014 by ro Remember to have fun... -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ro