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 2023-02-17 16:43:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-packager.new.22824 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-packager"

Fri Feb 17 16:43:53 2023 rev:436 rq:1066132 version:4.5.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes    
2023-02-09 16:22:29.262490639 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-packager.new.22824/yast2-packager.changes 
2023-02-17 16:43:56.334502397 +0100
@@ -1,0 +2,7 @@
+Tue Feb 14 13:40:12 UTC 2023 - Martin Vidner <mvid...@suse.com>
+
+- Ruby 3.2: Change a test to treat dir:///foo equal to dir:/foo
+  (bsc#1207239)
+- 4.5.15
+
+-------------------------------------------------------------------

Old:
----
  yast2-packager-4.5.14.tar.bz2

New:
----
  yast2-packager-4.5.15.tar.bz2

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

Other differences:
------------------
++++++ yast2-packager.spec ++++++
--- /var/tmp/diff_new_pack.jPW9ZD/_old  2023-02-17 16:43:56.902505596 +0100
+++ /var/tmp/diff_new_pack.jPW9ZD/_new  2023-02-17 16:43:56.906505619 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        4.5.14
+Version:        4.5.15
 Release:        0
 Summary:        YaST2 - Package Library
 License:        GPL-2.0-or-later

++++++ yast2-packager-4.5.14.tar.bz2 -> yast2-packager-4.5.15.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.5.14/package/yast2-packager.changes 
new/yast2-packager-4.5.15/package/yast2-packager.changes
--- old/yast2-packager-4.5.14/package/yast2-packager.changes    2023-02-08 
19:02:59.000000000 +0100
+++ new/yast2-packager-4.5.15/package/yast2-packager.changes    2023-02-16 
10:23:01.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Tue Feb 14 13:40:12 UTC 2023 - Martin Vidner <mvid...@suse.com>
+
+- Ruby 3.2: Change a test to treat dir:///foo equal to dir:/foo
+  (bsc#1207239)
+- 4.5.15
+
+-------------------------------------------------------------------
 Wed Feb  8 17:29:25 UTC 2023 - Stefan Hundhammer <shundham...@suse.com>
 
 - Prevent crash if nil dependencies instead of [] (bsc#1208068)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.5.14/package/yast2-packager.spec 
new/yast2-packager-4.5.15/package/yast2-packager.spec
--- old/yast2-packager-4.5.14/package/yast2-packager.spec       2023-02-08 
19:02:59.000000000 +0100
+++ new/yast2-packager-4.5.15/package/yast2-packager.spec       2023-02-16 
10:23:01.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        4.5.14
+Version:        4.5.15
 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.14/test/source_dialogs_test.rb 
new/yast2-packager-4.5.15/test/source_dialogs_test.rb
--- old/yast2-packager-4.5.14/test/source_dialogs_test.rb       2023-02-08 
19:02:59.000000000 +0100
+++ new/yast2-packager-4.5.15/test/source_dialogs_test.rb       2023-02-16 
10:23:01.000000000 +0100
@@ -116,17 +116,22 @@
 
     it "uses dir url scheme parameter for local ISO files" do
       converted = "iso:///install/openSUSE-13.2-DVD-x86_64.iso"
-      url = "iso:///?iso=openSUSE-13.2-DVD-x86_64.iso&url=dir%3A%2Finstall"
+      url_old = "iso:///?iso=openSUSE-13.2-DVD-x86_64.iso&url=dir%3A%2Finstall"
+      url_new = 
"iso:///?iso=openSUSE-13.2-DVD-x86_64.iso&url=dir%3A%2F%2F%2Finstall"
 
-      expect(subject.PostprocessISOURL(converted)).to eq(url)
+      # Since Ruby 3.2, URI("dir:///foo").to_s no longer returns "dir:/foo"
+      # It's OK with Zypp, it understands both forms
+      expect([url_old, url_new]).to 
include(subject.PostprocessISOURL(converted))
     end
 
     it "prevents double escaping if get already escaped string" do
       converted = 
"iso:///install/Duomenys%20600%20GB/openSUSE-13.2-DVD-x86_64.iso"
-      url = "iso:///?iso=openSUSE-13.2-DVD-x86_64.iso" \
-            "&url=dir%3A%2Finstall%2FDuomenys%2520600%2520GB"
+      url_old = "iso:///?iso=openSUSE-13.2-DVD-x86_64.iso" \
+                "&url=dir%3A%2Finstall%2FDuomenys%2520600%2520GB"
+      url_new = "iso:///?iso=openSUSE-13.2-DVD-x86_64.iso" \
+                "&url=dir%3A%2F%2F%2Finstall%2FDuomenys%2520600%2520GB"
 
-      expect(subject.PostprocessISOURL(converted)).to eq(url)
+      expect([url_old, url_new]).to 
include(subject.PostprocessISOURL(converted))
     end
   end
 

Reply via email to