Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2021-01-15 19:45:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Fri Jan 15 19:45:11 2021 rev:502 rq:862954 version:4.3.49

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2020-12-18 
19:52:14.925604000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new.28504/yast2.changes   2021-01-15 
19:45:31.297958699 +0100
@@ -1,0 +2,22 @@
+Wed Jan 13 16:03:51 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz>
+
+- Keep the libzypp target open to verify other packages
+  (bsc#1180858, related to the previous fix bsc#1179773)
+- 4.3.49
+
+-------------------------------------------------------------------
+Mon Jan 11 16:40:37 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz>
+
+- Ensure the libzypp target is initialized when downloading
+  the skelcd packages (to verify the GPG signatures) (bsc#1179773)
+- Log more details when several resolvables (instead of a single
+  one) are unexpectedly found (related to bsc#1176276)
+- 4.3.48
+
+-------------------------------------------------------------------
+Mon Jan 11 11:47:27 UTC 2021 - Josef Reidinger <jreidin...@suse.com>
+
+- Fix default for hibernation proposal (bsc#1169874)
+- 4.3.47
+
+-------------------------------------------------------------------

Old:
----
  yast2-4.3.46.tar.bz2

New:
----
  yast2-4.3.49.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.RWsGDv/_old  2021-01-15 19:45:32.173960004 +0100
+++ /var/tmp/diff_new_pack.RWsGDv/_new  2021-01-15 19:45:32.185960021 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        4.3.46
+Version:        4.3.49
 Release:        0
 Summary:        YaST2 Main Package
 License:        GPL-2.0-only

++++++ yast2-4.3.46.tar.bz2 -> yast2-4.3.49.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-4.3.46/library/control/src/modules/ProductFeatures.rb 
new/yast2-4.3.49/library/control/src/modules/ProductFeatures.rb
--- old/yast2-4.3.46/library/control/src/modules/ProductFeatures.rb     
2020-12-16 10:25:50.000000000 +0100
+++ new/yast2-4.3.49/library/control/src/modules/ProductFeatures.rb     
2021-01-13 18:10:03.000000000 +0100
@@ -73,7 +73,7 @@
           "full_system_media_name"          => "",
           "full_system_download_url"        => "",
           "save_y2logs"                     => true,
-          "propose_hibernate"               => true
+          "propose_hibernation"             => true
         },
         "partitioning"             => {
           "use_flexible_partitioning"    => false,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-4.3.46/library/control/src/modules/WorkflowManager.rb 
new/yast2-4.3.49/library/control/src/modules/WorkflowManager.rb
--- old/yast2-4.3.46/library/control/src/modules/WorkflowManager.rb     
2020-12-16 10:25:50.000000000 +0100
+++ new/yast2-4.3.49/library/control/src/modules/WorkflowManager.rb     
2021-01-13 18:10:03.000000000 +0100
@@ -1692,7 +1692,11 @@
       downloader = ::Packages::PackageDownloader.new(repo_id, package)
 
       Tempfile.open("downloaded-package-") do |tmp|
+        # libzypp needs the target for verifying the GPG signatures of the 
downloaded packages,
+        # keep the target initialized, it might be needed later for verifying 
other packages
+        Pkg.TargetInitialize("/") if Stage.initial
         downloader.download(tmp.path)
+
         extract(tmp.path, dir)
         # the RPM package file is not needed after extracting it's content,
         # remove it explicitly now, do not wait for the garbage collector
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-4.3.46/library/packages/src/lib/y2packager/resolvable.rb 
new/yast2-4.3.49/library/packages/src/lib/y2packager/resolvable.rb
--- old/yast2-4.3.46/library/packages/src/lib/y2packager/resolvable.rb  
2020-12-16 10:25:50.000000000 +0100
+++ new/yast2-4.3.49/library/packages/src/lib/y2packager/resolvable.rb  
2021-01-13 18:10:03.000000000 +0100
@@ -158,7 +158,10 @@
       resolvables = Yast::Pkg.Resolvables(attrs, [attr])
 
       # Finding more than one result is suspicious, log a warning
-      log.warn("Found several resolvables: #{resolvables.inspect}") if 
resolvables.size > 1
+      if resolvables.size > 1
+        log.warn("Found several resolvables: #{resolvables.inspect}")
+        log.warn("Resolvable details: #{Yast::Pkg.ResolvableProperties(@name, 
@kind, "").inspect}")
+      end
 
       resolvable = resolvables.first
       return unless resolvable&.key?(attr.to_s)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-4.3.46/package/yast2.changes 
new/yast2-4.3.49/package/yast2.changes
--- old/yast2-4.3.46/package/yast2.changes      2020-12-16 10:25:50.000000000 
+0100
+++ new/yast2-4.3.49/package/yast2.changes      2021-01-13 18:10:03.000000000 
+0100
@@ -1,4 +1,26 @@
 -------------------------------------------------------------------
+Wed Jan 13 16:03:51 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz>
+
+- Keep the libzypp target open to verify other packages
+  (bsc#1180858, related to the previous fix bsc#1179773)
+- 4.3.49
+
+-------------------------------------------------------------------
+Mon Jan 11 16:40:37 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz>
+
+- Ensure the libzypp target is initialized when downloading
+  the skelcd packages (to verify the GPG signatures) (bsc#1179773)
+- Log more details when several resolvables (instead of a single
+  one) are unexpectedly found (related to bsc#1176276)
+- 4.3.48
+
+-------------------------------------------------------------------
+Mon Jan 11 11:47:27 UTC 2021 - Josef Reidinger <jreidin...@suse.com>
+
+- Fix default for hibernation proposal (bsc#1169874)
+- 4.3.47
+
+-------------------------------------------------------------------
 Tue Dec 15 15:49:56 UTC 2020 - Stefan Schubert <sch...@suse.de>
 
 - Removed SCR agent .etc.inittab which is obsolete because SysVinit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-4.3.46/package/yast2.spec 
new/yast2-4.3.49/package/yast2.spec
--- old/yast2-4.3.46/package/yast2.spec 2020-12-16 10:25:50.000000000 +0100
+++ new/yast2-4.3.49/package/yast2.spec 2021-01-13 18:10:03.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        4.3.46
+Version:        4.3.49
 Release:        0
 Summary:        YaST2 Main Package
 License:        GPL-2.0-only

Reply via email to