Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-packager for openSUSE:Factory checked in at 2022-05-30 12:42:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old) and /work/SRC/openSUSE:Factory/.yast2-packager.new.2254 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-packager" Mon May 30 12:42:27 2022 rev:428 rq:979364 version:4.5.5 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes 2022-05-20 17:51:04.331244916 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-packager.new.2254/yast2-packager.changes 2022-05-30 12:42:55.600308783 +0200 @@ -1,0 +2,6 @@ +Thu May 26 12:40:24 UTC 2022 - Ladislav Slez??k <lsle...@suse.cz> + +- Support managing system in a chroot (bsc#1199840) +- 4.5.5 + +------------------------------------------------------------------- Old: ---- yast2-packager-4.5.4.tar.bz2 New: ---- yast2-packager-4.5.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-packager.spec ++++++ --- /var/tmp/diff_new_pack.zI5Pmn/_old 2022-05-30 12:42:56.312309731 +0200 +++ /var/tmp/diff_new_pack.zI5Pmn/_new 2022-05-30 12:42:56.324309746 +0200 @@ -17,7 +17,7 @@ Name: yast2-packager -Version: 4.5.4 +Version: 4.5.5 Release: 0 Summary: YaST2 - Package Library License: GPL-2.0-or-later ++++++ yast2-packager-4.5.4.tar.bz2 -> yast2-packager-4.5.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.4/package/yast2-packager.changes new/yast2-packager-4.5.5/package/yast2-packager.changes --- old/yast2-packager-4.5.4/package/yast2-packager.changes 2022-05-19 16:07:48.000000000 +0200 +++ new/yast2-packager-4.5.5/package/yast2-packager.changes 2022-05-26 16:55:44.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu May 26 12:40:24 UTC 2022 - Ladislav Slez??k <lsle...@suse.cz> + +- Support managing system in a chroot (bsc#1199840) +- 4.5.5 + +------------------------------------------------------------------- Tue May 17 20:49:27 UTC 2022 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> - Fix package counters in the installation slideshow diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.4/package/yast2-packager.spec new/yast2-packager-4.5.5/package/yast2-packager.spec --- old/yast2-packager-4.5.4/package/yast2-packager.spec 2022-05-19 16:07:48.000000000 +0200 +++ new/yast2-packager-4.5.5/package/yast2-packager.spec 2022-05-26 16:55:44.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-packager -Version: 4.5.4 +Version: 4.5.5 Release: 0 Summary: YaST2 - Package Library License: GPL-2.0-or-later diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.4/src/clients/sw_single.rb new/yast2-packager-4.5.5/src/clients/sw_single.rb --- old/yast2-packager-4.5.4/src/clients/sw_single.rb 2022-05-19 16:07:48.000000000 +0200 +++ new/yast2-packager-4.5.5/src/clients/sw_single.rb 2022-05-26 16:55:44.000000000 +0200 @@ -135,7 +135,7 @@ def CheckWhichPackages(arg_list) arg_list = deep_copy(arg_list) - if !Pkg.TargetInit("/", false) + if !Pkg.TargetInit(Installation.destdir, false) # error message Report.Error("Cannot read the list of installed packages.") return :failed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.4/src/lib/packager/clients/repositories.rb new/yast2-packager-4.5.5/src/lib/packager/clients/repositories.rb --- old/yast2-packager-4.5.4/src/lib/packager/clients/repositories.rb 2022-05-19 16:07:48.000000000 +0200 +++ new/yast2-packager-4.5.5/src/lib/packager/clients/repositories.rb 2022-05-26 16:55:44.000000000 +0200 @@ -25,6 +25,7 @@ Yast.import "SourceDialogs" Yast.import "Wizard" +Yast.import "Installation" Yast.import "Label" Yast.import "Popup" Yast.import "Sequencer" @@ -1527,7 +1528,7 @@ if !@full_mode # dialog caption Wizard.SetContents(_("Initializing..."), Empty(), "", false, true) - Pkg.TargetInit("/", true) + Pkg.TargetInit(Installation.destdir, true) end Wizard.SetDesktopTitleAndIcon("org.opensuse.yast.SWSource")