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-04-08 17:38:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-packager.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-packager"

Sat Apr  8 17:38:44 2023 rev:439 rq:1077710 version:4.6.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes    
2023-03-04 22:43:31.851843011 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-packager.new.19717/yast2-packager.changes 
2023-04-08 17:38:47.901954507 +0200
@@ -1,0 +2,9 @@
+Thu Apr  6 10:17:23 UTC 2023 - Josef Reidinger <jreidin...@suse.com>
+
+- Adapt test to changes in ruby-bindings when detecting Yast
+  modules using public only methods (related to bsc#1210051)
+- Comment out expensive debug calls to improve performance
+  (bsc#1210051)
+- 4.6.1
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ yast2-packager.spec ++++++
--- /var/tmp/diff_new_pack.MlX1bu/_old  2023-04-08 17:38:48.537958158 +0200
+++ /var/tmp/diff_new_pack.MlX1bu/_new  2023-04-08 17:38:48.541958182 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        4.6.0
+Version:        4.6.1
 Release:        0
 Summary:        YaST2 - Package Library
 License:        GPL-2.0-or-later

++++++ yast2-packager-4.6.0.tar.bz2 -> yast2-packager-4.6.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.6.0/package/yast2-packager.changes 
new/yast2-packager-4.6.1/package/yast2-packager.changes
--- old/yast2-packager-4.6.0/package/yast2-packager.changes     2023-03-03 
15:57:12.000000000 +0100
+++ new/yast2-packager-4.6.1/package/yast2-packager.changes     2023-04-06 
12:35:16.000000000 +0200
@@ -1,4 +1,13 @@
 -------------------------------------------------------------------
+Thu Apr  6 10:17:23 UTC 2023 - Josef Reidinger <jreidin...@suse.com>
+
+- Adapt test to changes in ruby-bindings when detecting Yast
+  modules using public only methods (related to bsc#1210051)
+- Comment out expensive debug calls to improve performance
+  (bsc#1210051)
+- 4.6.1
+
+-------------------------------------------------------------------
 Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <lsle...@suse.cz>
 
 - Bump version to 4.6.0 (bsc#1208913)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.6.0/package/yast2-packager.spec 
new/yast2-packager-4.6.1/package/yast2-packager.spec
--- old/yast2-packager-4.6.0/package/yast2-packager.spec        2023-03-03 
15:57:12.000000000 +0100
+++ new/yast2-packager-4.6.1/package/yast2-packager.spec        2023-04-06 
12:35:16.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        4.6.0
+Version:        4.6.1
 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.6.0/src/lib/packager/product_patterns.rb 
new/yast2-packager-4.6.1/src/lib/packager/product_patterns.rb
--- old/yast2-packager-4.6.0/src/lib/packager/product_patterns.rb       
2023-03-03 15:57:12.000000000 +0100
+++ new/yast2-packager-4.6.1/src/lib/packager/product_patterns.rb       
2023-04-06 12:35:16.000000000 +0200
@@ -99,7 +99,8 @@
         end
       end
 
-      log.debug "Product #{product} depependencies: #{product_dependencies}"
+      # commented out block debug call until issue is fixed: 
https://github.com/yast/yast-ruby-bindings/issues/290
+      # log.debug { "Product #{product} depependencies: 
#{product_dependencies}" }
 
       product_dependencies
     end
@@ -131,7 +132,8 @@
         provides << prov if prov
       end
 
-      log.debug "Collected provides dependencies: #{provides.inspect}"
+      # commented out block debug call until issue is fixed: 
https://github.com/yast/yast-ruby-bindings/issues/290
+      # log.debug { "Collected provides dependencies: #{provides.inspect}" }
 
       provides
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.6.0/test/addon_selector_test.rb 
new/yast2-packager-4.6.1/test/addon_selector_test.rb
--- old/yast2-packager-4.6.0/test/addon_selector_test.rb        2023-03-03 
15:57:12.000000000 +0100
+++ new/yast2-packager-4.6.1/test/addon_selector_test.rb        2023-04-06 
12:35:16.000000000 +0200
@@ -66,7 +66,8 @@
 
       it "does not display any popup" do
         # stub empty Yast::Popup so any method call would raise an exception
-        stub_const("Yast::Popup", double)
+        # at least one public method is mandatory, otherwise import init it 
again
+        stub_const("Yast::Popup", double({ do_not_import_again: true }))
         subject.next_handler
       end
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.6.0/test/pkg_finish_test.rb 
new/yast2-packager-4.6.1/test/pkg_finish_test.rb
--- old/yast2-packager-4.6.0/test/pkg_finish_test.rb    2023-03-03 
15:57:12.000000000 +0100
+++ new/yast2-packager-4.6.1/test/pkg_finish_test.rb    2023-04-06 
12:35:16.000000000 +0200
@@ -357,7 +357,7 @@
 
       context "if libzypp's minimalistic configuration is enabled" do
         let(:minimalistic_libzypp_config) { true }
-        let(:destdir) { tmpdir }
+        let(:destdir) { tmpdir.to_s }
 
         before do
           conf_file = File.join(tmpdir, Yast::Packager::CFA::ZyppConf::PATH)

Reply via email to