[yast-commit] [ci_new_pac] JFYI yast2-network -> 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-network -> sle12 ## BNC# 869353 : "Can't go back to language / keyboard selection dialog" (ASSIGNED/) ## BNC# 869224 : "yast lan field for network interface name too short" (REOPENED/) Changes: -------- --- /work/SRC/SUSE:SLE-12:GA/yast2-network/yast2-network.changes 2014-03-21 15:21:45.000000000 +0100 +++ /mounts/work_src_done/SLE12/yast2-network/yast2-network.changes 2014-03-25 15:50:50.000000000 +0100 @@ -1,0 +2,15 @@ +Mon Mar 24 23:18:43 UTC 2014 - mfilka@suse.com + +- bnc#869353 + - inst_lan can walk back in installer +- 3.1.38 + +------------------------------------------------------------------- +Fri Mar 21 15:24:19 UTC 2014 - mfilka@suse.com + +- bnc#869224 + - enlarged nic name input field in "Edit Nic Name" dialogue in + ncurses mode +- 3.1.37 + +------------------------------------------------------------------- calling whatdependson for sle12-i586 Packages directly triggered for rebuild: - yast2-network - at least 15 other packages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:SLE-12:GA/yast2-network (Old) and /mounts/work_src_done/SLE12/yast2-network (BS:build ID:34781 MAIL:yast-commit@opensuse.org) (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-network", Maintainer is "yast-commit@opensuse.org" Old: ---- yast2-network-3.1.36.tar.bz2 New: ---- yast2-network-3.1.38.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-network.spec ++++++ --- /var/tmp/diff_new_pack.CCQwsE/_old 2014-03-25 16:03:50.000000000 +0100 +++ /var/tmp/diff_new_pack.CCQwsE/_new 2014-03-25 16:03:50.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-network -Version: 3.1.36 +Version: 3.1.38 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-network-3.1.36.tar.bz2 -> yast2-network-3.1.38.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-3.1.36/package/yast2-network.changes new/yast2-network-3.1.38/package/yast2-network.changes --- old/yast2-network-3.1.36/package/yast2-network.changes 2014-03-19 18:29:20.000000000 +0100 +++ new/yast2-network-3.1.38/package/yast2-network.changes 2014-03-25 15:46:12.000000000 +0100 @@ -1,4 +1,19 @@ ------------------------------------------------------------------- +Mon Mar 24 23:18:43 UTC 2014 - mfilka@suse.com + +- bnc#869353 + - inst_lan can walk back in installer +- 3.1.38 + +------------------------------------------------------------------- +Fri Mar 21 15:24:19 UTC 2014 - mfilka@suse.com + +- bnc#869224 + - enlarged nic name input field in "Edit Nic Name" dialogue in + ncurses mode +- 3.1.37 + +------------------------------------------------------------------- Wed Mar 19 09:53:20 UTC 2014 - mfilka@suse.com - bnc#868830 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-3.1.36/package/yast2-network.spec new/yast2-network-3.1.38/package/yast2-network.spec --- old/yast2-network-3.1.36/package/yast2-network.spec 2014-03-19 18:29:20.000000000 +0100 +++ new/yast2-network-3.1.38/package/yast2-network.spec 2014-03-25 15:46:12.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-network -Version: 3.1.36 +Version: 3.1.38 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-3.1.36/src/clients/inst_lan.rb new/yast2-network-3.1.38/src/clients/inst_lan.rb --- old/yast2-network-3.1.36/src/clients/inst_lan.rb 2014-03-19 18:29:20.000000000 +0100 +++ new/yast2-network-3.1.38/src/clients/inst_lan.rb 2014-03-25 15:46:12.000000000 +0100 @@ -38,6 +38,7 @@ Yast.import "Label" Yast.import "Lan" Yast.import "RichText" + Yast.import "GetInstArgs" textdomain "network" @@ -47,11 +48,19 @@ Yast.include self, "network/lan/cmdline.rb" Yast.include self, "network/lan/wizards.rb" - conf_net = LanItems.Items.keys.any? { |i| LanItems.IsItemConfigured(i) } - - log.info("Configured network found: #{conf_net}") - - ret = !conf_net ? LanSequence() : :next + # keep network configuration state in @@conf_net to gurantee same + # behavior when walking :back in installation workflow + if !defined?(@@network_configured) + @@network_configured = LanItems.Items.keys.any? { |i| LanItems.IsItemConfigured(i) } + end + + log.info("Configured network found: #{@@network_configured}") + + if @@network_configured + ret = GetInstArgs.going_back ? :back : :next + else + ret = LanSequence() + end log.info("Lan module finished, ret = #{ret}") log.info("----------------------------------------") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-3.1.36/src/lib/network/edit_nic_name.rb new/yast2-network-3.1.38/src/lib/network/edit_nic_name.rb --- old/yast2-network-3.1.36/src/lib/network/edit_nic_name.rb 2014-03-19 18:29:20.000000000 +0100 +++ new/yast2-network-3.1.38/src/lib/network/edit_nic_name.rb 2014-03-25 15:46:12.000000000 +0100 @@ -95,7 +95,7 @@ Left( HBox( Label(_("Device name:")), - InputField(Id(:dev_name), "", @old_name) + InputField(Id(:dev_name), Opt(:hstretch), "", @old_name) ) ), VSpacing(0.5), continue with "q"... Checked in at Tue Mar 25 16:03:59 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