Hello community, here is the log from the commit of package autoyast2 for openSUSE:Factory checked in at 2019-03-21 09:51:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old) and /work/SRC/openSUSE:Factory/.autoyast2.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "autoyast2" Thu Mar 21 09:51:53 2019 rev:256 rq:686418 version:4.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes 2019-02-28 21:47:09.905428715 +0100 +++ /work/SRC/openSUSE:Factory/.autoyast2.new.28833/autoyast2.changes 2019-03-21 09:51:55.790811093 +0100 @@ -1,0 +2,14 @@ +Fri Mar 15 15:54:52 CET 2019 - [email protected] + +- Postpone disabling local repositories if the second stage is + required (bsc#1127818). +- 4.1.4 + +------------------------------------------------------------------- +Fri Mar 8 12:59:05 UTC 2019 - Imobach Gonzalez Sosa <[email protected]> + +- Add Bcache related elements to the partitioning schema + (fate#325346). +- 4.1.3 + +------------------------------------------------------------------- Old: ---- autoyast2-4.1.2.tar.bz2 New: ---- autoyast2-4.1.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ autoyast2.spec ++++++ --- /var/tmp/diff_new_pack.m4Bmee/_old 2019-03-21 09:51:56.450810915 +0100 +++ /var/tmp/diff_new_pack.m4Bmee/_new 2019-03-21 09:51:56.454810914 +0100 @@ -22,7 +22,7 @@ %endif Name: autoyast2 -Version: 4.1.2 +Version: 4.1.4 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -113,8 +113,8 @@ Requires: yast2-core Requires: yast2-country Requires: yast2-ncurses -# Packages.default_patterns -Requires: yast2-packager >= 3.1.10 +# Disabling local repos in second stage only. +Requires: yast2-packager >= 4.1.33 # ServicesManagerTargetClass::BaseTargets Requires: yast2-services-manager >= 3.1.10 Requires: yast2-slp ++++++ autoyast2-4.1.2.tar.bz2 -> autoyast2-4.1.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.1.2/package/autoyast2.changes new/autoyast2-4.1.4/package/autoyast2.changes --- old/autoyast2-4.1.2/package/autoyast2.changes 2019-02-25 15:59:52.000000000 +0100 +++ new/autoyast2-4.1.4/package/autoyast2.changes 2019-03-19 14:15:00.000000000 +0100 @@ -1,4 +1,18 @@ ------------------------------------------------------------------- +Fri Mar 15 15:54:52 CET 2019 - [email protected] + +- Postpone disabling local repositories if the second stage is + required (bsc#1127818). +- 4.1.4 + +------------------------------------------------------------------- +Fri Mar 8 12:59:05 UTC 2019 - Imobach Gonzalez Sosa <[email protected]> + +- Add Bcache related elements to the partitioning schema + (fate#325346). +- 4.1.3 + +------------------------------------------------------------------- Fri Feb 22 16:40:30 UTC 2019 - [email protected] - Avoid to crash when the profile has a not valid sofware section diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.1.2/package/autoyast2.spec new/autoyast2-4.1.4/package/autoyast2.spec --- old/autoyast2-4.1.2/package/autoyast2.spec 2019-02-25 15:59:52.000000000 +0100 +++ new/autoyast2-4.1.4/package/autoyast2.spec 2019-03-19 14:15:00.000000000 +0100 @@ -22,7 +22,7 @@ %endif Name: autoyast2 -Version: 4.1.2 +Version: 4.1.4 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -113,8 +113,8 @@ Requires: yast2-core Requires: yast2-country Requires: yast2-ncurses -# Packages.default_patterns -Requires: yast2-packager >= 3.1.10 +# Disabling local repos in second stage only. +Requires: yast2-packager >= 4.1.33 # ServicesManagerTargetClass::BaseTargets Requires: yast2-services-manager >= 3.1.10 Requires: yast2-slp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.1.2/src/autoyast-rnc/partitioning.rnc new/autoyast2-4.1.4/src/autoyast-rnc/partitioning.rnc --- old/autoyast2-4.1.2/src/autoyast-rnc/partitioning.rnc 2019-02-25 15:59:52.000000000 +0100 +++ new/autoyast2-4.1.4/src/autoyast-rnc/partitioning.rnc 2019-03-19 14:15:00.000000000 +0100 @@ -21,7 +21,8 @@ element enable_snapshots { BOOLEAN }? & skip_list? & partitions? & - raid_options? + raid_options? & + bcache_options? } skip_list = @@ -78,6 +79,8 @@ | raid_options | subvolumes | create_subvolumes + | bcache_backing_for + | bcache_caching_for partition = element partition { y2_partition* } part_create = @@ -129,6 +132,9 @@ element device { text }* } +cache_mode = element cache_mode { "writethrough" | "writeback" | "writearound" | "none" } +bcache_options = element bcache_options { cache_mode? } + subvolumes = element subvolumes { LIST, subvolume* @@ -184,4 +190,8 @@ part_lv_name = element lv_name { text } part_lvm_group = element lvm_group { text } part_resize = element resize { BOOLEAN } - +bcache_backing_for = element bcache_backing_for { text } +bcache_caching_for = element bcache_caching_for { + LIST, + element listentry { text }* +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-4.1.2/src/clients/inst_autoconfigure.rb new/autoyast2-4.1.4/src/clients/inst_autoconfigure.rb --- old/autoyast2-4.1.2/src/clients/inst_autoconfigure.rb 2019-02-25 15:59:52.000000000 +0100 +++ new/autoyast2-4.1.4/src/clients/inst_autoconfigure.rb 2019-03-19 14:15:00.000000000 +0100 @@ -370,6 +370,9 @@ # Invoke SnapshotsFinish client to perform snapshots (if needed) WFM.CallFunction("snapshots_finish", ["Write"]) + # Disabling all local repos + WFM.CallFunction("pkg_finish", ["Write"]) + # Saving y2logs WFM.CallFunction("save_y2logs")
