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-12-20 20:20:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old) and /work/SRC/openSUSE:Factory/.yast2-packager.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-packager" Tue Dec 20 20:20:08 2022 rev:432 rq:1043880 version:4.5.10 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes 2022-12-15 19:24:27.323800343 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-packager.new.1835/yast2-packager.changes 2022-12-20 20:20:52.182004099 +0100 @@ -1,0 +2,7 @@ +Tue Dec 20 09:30:54 UTC 2022 - Ladislav Slezák <lsle...@suse.com> + +- Do not fail when the installation URL contains a space + (bsc#1201816) +- 4.5.10 + +------------------------------------------------------------------- Old: ---- yast2-packager-4.5.9.tar.bz2 New: ---- yast2-packager-4.5.10.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-packager.spec ++++++ --- /var/tmp/diff_new_pack.bUpLiI/_old 2022-12-20 20:20:52.814007562 +0100 +++ /var/tmp/diff_new_pack.bUpLiI/_new 2022-12-20 20:20:52.818007584 +0100 @@ -17,7 +17,7 @@ Name: yast2-packager -Version: 4.5.9 +Version: 4.5.10 Release: 0 Summary: YaST2 - Package Library License: GPL-2.0-or-later ++++++ yast2-packager-4.5.9.tar.bz2 -> yast2-packager-4.5.10.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.9/package/yast2-packager.changes new/yast2-packager-4.5.10/package/yast2-packager.changes --- old/yast2-packager-4.5.9/package/yast2-packager.changes 2022-12-14 11:30:52.000000000 +0100 +++ new/yast2-packager-4.5.10/package/yast2-packager.changes 2022-12-20 10:39:29.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Dec 20 09:30:54 UTC 2022 - Ladislav Slezák <lsle...@suse.com> + +- Do not fail when the installation URL contains a space + (bsc#1201816) +- 4.5.10 + +------------------------------------------------------------------- Wed Dec 14 10:25:42 UTC 2022 - Stefan Hundhammer <shundham...@suse.com> - Merged PR https://github.com/yast/yast-packager/pull/623 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.9/package/yast2-packager.spec new/yast2-packager-4.5.10/package/yast2-packager.spec --- old/yast2-packager-4.5.9/package/yast2-packager.spec 2022-12-14 11:30:52.000000000 +0100 +++ new/yast2-packager-4.5.10/package/yast2-packager.spec 2022-12-20 10:39:29.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-packager -Version: 4.5.9 +Version: 4.5.10 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.9/src/modules/InstURL.rb new/yast2-packager-4.5.10/src/modules/InstURL.rb --- old/yast2-packager-4.5.9/src/modules/InstURL.rb 2022-12-14 11:30:52.000000000 +0100 +++ new/yast2-packager-4.5.10/src/modules/InstURL.rb 2022-12-20 10:39:29.000000000 +0100 @@ -149,6 +149,9 @@ @installInf2Url = add_ssl_verify_no_to_url(@installInf2Url) unless SSLVerificationEnabled() end + # escape spaces otherwise it would be invalid and rejected by libzypp + @installInf2Url.gsub!(" ", "%20") + log.info "Using install URL: #{URL.HidePassword(@installInf2Url)}" @installInf2Url end