commit autoyast2 for openSUSE:Factory
Hello community, here is the log from the commit of package autoyast2 for openSUSE:Factory checked in at 2014-05-06 13:40:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old) and /work/SRC/openSUSE:Factory/.autoyast2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "autoyast2" Changes: -------- --- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes 2014-04-05 14:43:06.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2014-05-06 13:40:25.000000000 +0200 @@ -1,0 +2,14 @@ +Tue Apr 22 10:17:55 CEST 2014 - locilka@suse.com + +- Replaced old Product.patterns with new Packages.default_patterns + (bnc#873923) +- 3.1.24 + +------------------------------------------------------------------- +Thu Apr 17 15:05:11 CEST 2014 - tgoettlicher@suse.de + +- added disklabel for autoyast.xml needed for gpt partition + tables (bnc#873766) +- 3.1.23 + +------------------------------------------------------------------- Old: ---- autoyast2-3.1.22.tar.bz2 New: ---- autoyast2-3.1.24.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ autoyast2.spec ++++++ --- /var/tmp/diff_new_pack.NbKqGP/_old 2014-05-06 13:40:26.000000000 +0200 +++ /var/tmp/diff_new_pack.NbKqGP/_new 2014-05-06 13:40:26.000000000 +0200 @@ -17,7 +17,7 @@ Name: autoyast2 -Version: 3.1.22 +Version: 3.1.24 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -89,7 +89,8 @@ Requires: yast2-core Requires: yast2-country Requires: yast2-ncurses -Requires: yast2-packager +# Packages.default_patterns +Requires: yast2-packager >= 3.1.10 # ServicesManagerTargetClass::BaseTargets Requires: yast2-services-manager >= 3.1.10 Requires: yast2-slp ++++++ autoyast2-3.1.22.tar.bz2 -> autoyast2-3.1.24.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.22/package/autoyast2.changes new/autoyast2-3.1.24/package/autoyast2.changes --- old/autoyast2-3.1.22/package/autoyast2.changes 2014-04-03 11:19:49.000000000 +0200 +++ new/autoyast2-3.1.24/package/autoyast2.changes 2014-04-22 10:35:43.000000000 +0200 @@ -1,4 +1,18 @@ ------------------------------------------------------------------- +Tue Apr 22 10:17:55 CEST 2014 - locilka@suse.com + +- Replaced old Product.patterns with new Packages.default_patterns + (bnc#873923) +- 3.1.24 + +------------------------------------------------------------------- +Thu Apr 17 15:05:11 CEST 2014 - tgoettlicher@suse.de + +- added disklabel for autoyast.xml needed for gpt partition + tables (bnc#873766) +- 3.1.23 + +------------------------------------------------------------------- Thu Apr 3 10:33:34 CEST 2014 - tgoettlicher@suse.de - removed check for "eth" prefix for network devices (bnc#871090) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.22/package/autoyast2.spec new/autoyast2-3.1.24/package/autoyast2.spec --- old/autoyast2-3.1.22/package/autoyast2.spec 2014-04-03 11:19:49.000000000 +0200 +++ new/autoyast2-3.1.24/package/autoyast2.spec 2014-04-22 10:35:43.000000000 +0200 @@ -17,7 +17,7 @@ Name: autoyast2 -Version: 3.1.22 +Version: 3.1.24 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -89,7 +89,8 @@ Requires: yast2-core Requires: yast2-country Requires: yast2-ncurses -Requires: yast2-packager +# Packages.default_patterns +Requires: yast2-packager >= 3.1.10 # ServicesManagerTargetClass::BaseTargets Requires: yast2-services-manager >= 3.1.10 Requires: yast2-slp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.22/src/clients/inst_autosetup_upgrade.rb new/autoyast2-3.1.24/src/clients/inst_autosetup_upgrade.rb --- old/autoyast2-3.1.22/src/clients/inst_autosetup_upgrade.rb 2014-04-03 11:19:50.000000000 +0200 +++ new/autoyast2-3.1.24/src/clients/inst_autosetup_upgrade.rb 2014-04-22 10:35:43.000000000 +0200 @@ -9,6 +9,8 @@ # $Id: inst_autosetup.ycp 61521 2010-03-29 09:10:07Z ug $ module Yast class InstAutosetupUpgradeClient < Client + include Yast::Logger + def main Yast.import "Pkg" Yast.import "UI" @@ -286,18 +288,12 @@ Builtins.foreach(@restore) { |res| Pkg.ResolvableInstall(res, :product) } Update.SetDesktopPattern if !Update.onlyUpdateInstalled - if !Update.onlyUpdateInstalled && # just consider already installed packages - !ProductFeatures.GetBooleanFeature( - "software", - "only_update_installed" - ) - Builtins.foreach(Product.patterns) do |pat| - Builtins.y2milestone("Pre-select pattern %1", pat) - Pkg.ResolvableInstall(pat, :pattern) + if !Update.OnlyUpdateInstalled + Packages.default_patterns.each do |pattern| + log.info "Pre-select pattern #{pattern}: " << Pkg.ResolvableInstall(pattern, :pattern) end end - Packages.SelectProduct # bnc #382208 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.22/src/modules/AutoinstDrive.rb new/autoyast2-3.1.24/src/modules/AutoinstDrive.rb --- old/autoyast2-3.1.22/src/modules/AutoinstDrive.rb 2014-04-03 11:19:50.000000000 +0200 +++ new/autoyast2-3.1.24/src/modules/AutoinstDrive.rb 2014-04-22 10:35:43.000000000 +0200 @@ -31,7 +31,8 @@ "partitions" => [], # list of partitions on this drive "type" => :CT_DISK, # type of drive, see diskTypes below "use" => :all, # `all, `linux, `free, or list of partition numbers to use - "pesize" => "" + "pesize" => "", + "disklabel" => "msdos" # type of partition table (msdos or gpt) } # size of physical extents (currently no GUI support for this setting) # Every drive created gets an id. @@ -356,6 +357,11 @@ Builtins.y2error("Couldn't construct PartitionT from '%1'", part) end end + newDrive = set( + newDrive, + "disklabel", + Ops.get_string(drive, "disklabel", "msdos") + ) deep_copy(newDrive) end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.22/src/modules/AutoinstPartPlan.rb new/autoyast2-3.1.24/src/modules/AutoinstPartPlan.rb --- old/autoyast2-3.1.22/src/modules/AutoinstPartPlan.rb 2014-04-03 11:19:50.000000000 +0200 +++ new/autoyast2-3.1.24/src/modules/AutoinstPartPlan.rb 2014-04-22 10:35:43.000000000 +0200 @@ -586,6 +586,7 @@ # they must exist drive = {} Ops.set(drive, "type", Ops.get_symbol(v, "type", :CT_DISK)) + Ops.set(drive, "disklabel", Ops.get_string(v, "label", "msdos")) if no_create partitions = Builtins.maplist( Convert.convert(partitions, :from => "list", :to => "list <map>") -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de