Hello community, here is the log from the commit of package yast2-configuration-management for openSUSE:Factory checked in at 2020-10-20 16:00:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-configuration-management (Old) and /work/SRC/openSUSE:Factory/.yast2-configuration-management.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-configuration-management" Tue Oct 20 16:00:18 2020 rev:19 rq:842055 version:4.3.4 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-configuration-management/yast2-configuration-management.changes 2020-08-14 13:09:53.437223032 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-configuration-management.new.3486/yast2-configuration-management.changes 2020-10-20 16:03:21.417809391 +0200 @@ -1,0 +2,7 @@ +Sat Oct 10 08:47:44 UTC 2020 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Clean-up the libzypp's raw cache before running the finish client + (bsc#1177522). +- 4.3.4 + +------------------------------------------------------------------- Old: ---- yast2-configuration-management-4.3.3.tar.bz2 New: ---- yast2-configuration-management-4.3.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-configuration-management.spec ++++++ --- /var/tmp/diff_new_pack.dSWgrp/_old 2020-10-20 16:03:23.065810171 +0200 +++ /var/tmp/diff_new_pack.dSWgrp/_new 2020-10-20 16:03:23.069810173 +0200 @@ -1,7 +1,7 @@ # # spec file for package yast2-configuration-management # -# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,14 +12,14 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: yast2-configuration-management -Version: 4.3.3 +Version: 4.3.4 Release: 0 -Url: https://github.com/yast/yast-migration +URL: https://github.com/yast/yast-migration Summary: YaST2 - YaST Configuration Management License: GPL-2.0-only Group: System/YaST ++++++ yast2-configuration-management-4.3.3.tar.bz2 -> yast2-configuration-management-4.3.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.3.3/package/yast2-configuration-management.changes new/yast2-configuration-management-4.3.4/package/yast2-configuration-management.changes --- old/yast2-configuration-management-4.3.3/package/yast2-configuration-management.changes 2020-08-12 12:24:39.000000000 +0200 +++ new/yast2-configuration-management-4.3.4/package/yast2-configuration-management.changes 2020-10-16 09:58:38.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Sat Oct 10 08:47:44 UTC 2020 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Clean-up the libzypp's raw cache before running the finish client + (bsc#1177522). +- 4.3.4 + +------------------------------------------------------------------- Tue Aug 11 12:22:20 CEST 2020 - sch...@suse.de - AutoYaST: Added supplements: autoyast(configuration-management) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.3.3/package/yast2-configuration-management.spec new/yast2-configuration-management-4.3.4/package/yast2-configuration-management.spec --- old/yast2-configuration-management-4.3.3/package/yast2-configuration-management.spec 2020-08-12 12:24:39.000000000 +0200 +++ new/yast2-configuration-management-4.3.4/package/yast2-configuration-management.spec 2020-10-16 09:58:38.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-configuration-management -Version: 4.3.3 +Version: 4.3.4 Release: 0 Url: https://github.com/yast/yast-migration Summary: YaST2 - YaST Configuration Management diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.3.3/src/lib/y2configuration_management/clients/configuration_management_finish.rb new/yast2-configuration-management-4.3.4/src/lib/y2configuration_management/clients/configuration_management_finish.rb --- old/yast2-configuration-management-4.3.3/src/lib/y2configuration_management/clients/configuration_management_finish.rb 2020-08-12 12:24:39.000000000 +0200 +++ new/yast2-configuration-management-4.3.4/src/lib/y2configuration_management/clients/configuration_management_finish.rb 2020-10-16 09:58:38.000000000 +0200 @@ -32,6 +32,11 @@ return false if config.nil? Yast::Wizard.CreateDialog log.info("Provisioning Configuration Management with config #{config.inspect}") + + # We need the raw cache to be clean in order to do "zypper ref --force". + # Otherwise, the operation will fail (bsc#1177522). + ::FileUtils.rm_r(ZYPP_RAW_CACHE) if Dir.exist?(ZYPP_RAW_CACHE) + configurator.prepare(require_formulas: false) # saving settings to target system Y2ConfigurationManagement::Clients::Provision.new.run @@ -55,6 +60,8 @@ private + ZYPP_RAW_CACHE = File.join(Yast::Installation.destdir, "var", "cache", "zypp", "raw") + def configurator @configurator ||= Y2ConfigurationManagement::Configurators::Base.current end