Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-firstboot for openSUSE:Factory 
checked in at 2022-10-28 19:29:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-firstboot (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-firstboot.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-firstboot"

Fri Oct 28 19:29:14 2022 rev:116 rq:1031499 version:4.5.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes  
2022-10-22 14:12:46.184692881 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-firstboot.new.2275/yast2-firstboot.changes    
    2022-10-28 19:29:22.438584284 +0200
@@ -1,0 +2,6 @@
+Thu Oct 27 08:21:44 UTC 2022 - Josef Reidinger <jreidin...@suse.com>
+
+- Compute properly dependencies of WSL GUI pattern (jsc#PM-3439)
+- 4.5.5
+
+-------------------------------------------------------------------

Old:
----
  yast2-firstboot-4.5.4.tar.bz2

New:
----
  yast2-firstboot-4.5.5.tar.bz2

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

Other differences:
------------------
++++++ yast2-firstboot.spec ++++++
--- /var/tmp/diff_new_pack.vsrV4O/_old  2022-10-28 19:29:23.238588296 +0200
+++ /var/tmp/diff_new_pack.vsrV4O/_new  2022-10-28 19:29:23.242588316 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-firstboot
-Version:        4.5.4
+Version:        4.5.5
 Release:        0
 Summary:        YaST2 - Initial System Configuration
 License:        GPL-2.0-only

++++++ yast2-firstboot-4.5.4.tar.bz2 -> yast2-firstboot-4.5.5.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-4.5.4/package/yast2-firstboot.changes 
new/yast2-firstboot-4.5.5/package/yast2-firstboot.changes
--- old/yast2-firstboot-4.5.4/package/yast2-firstboot.changes   2022-10-21 
11:27:11.000000000 +0200
+++ new/yast2-firstboot-4.5.5/package/yast2-firstboot.changes   2022-10-27 
11:05:12.000000000 +0200
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Thu Oct 27 08:21:44 UTC 2022 - Josef Reidinger <jreidin...@suse.com>
+
+- Compute properly dependencies of WSL GUI pattern (jsc#PM-3439)
+- 4.5.5
+
+-------------------------------------------------------------------
 Wed Oct 19 08:09:57 UTC 2022 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com>
 
 - Add client to select product in WSL (jsc#PED-1380).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-4.5.4/package/yast2-firstboot.spec 
new/yast2-firstboot-4.5.5/package/yast2-firstboot.spec
--- old/yast2-firstboot-4.5.4/package/yast2-firstboot.spec      2022-10-21 
11:27:11.000000000 +0200
+++ new/yast2-firstboot-4.5.5/package/yast2-firstboot.spec      2022-10-27 
11:05:12.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-firstboot
-Version:        4.5.4
+Version:        4.5.5
 Release:        0
 Summary:        YaST2 - Initial System Configuration
 License:        GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-4.5.4/src/lib/y2firstboot/clients/wsl.rb 
new/yast2-firstboot-4.5.5/src/lib/y2firstboot/clients/wsl.rb
--- old/yast2-firstboot-4.5.4/src/lib/y2firstboot/clients/wsl.rb        
2022-10-21 11:27:11.000000000 +0200
+++ new/yast2-firstboot-4.5.5/src/lib/y2firstboot/clients/wsl.rb        
2022-10-27 11:05:12.000000000 +0200
@@ -42,6 +42,8 @@
         setup_machine_id
         switch_product
         install_patterns
+        # and now call just once solver to compute deps of new software
+        Yast::Pkg.PkgSolve(false)
 
         :next
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-4.5.4/test/y2firstboot/clients/wsl_test.rb 
new/yast2-firstboot-4.5.5/test/y2firstboot/clients/wsl_test.rb
--- old/yast2-firstboot-4.5.4/test/y2firstboot/clients/wsl_test.rb      
2022-10-21 11:27:11.000000000 +0200
+++ new/yast2-firstboot-4.5.5/test/y2firstboot/clients/wsl_test.rb      
2022-10-27 11:05:12.000000000 +0200
@@ -46,6 +46,7 @@
 
       allow(Yast::Pkg).to receive(:ResolvableRemove)
       allow(Yast::Pkg).to receive(:ResolvableInstall)
+      allow(Yast::Pkg).to receive(:PkgSolve)
     end
 
     let(:going_back) { nil }
@@ -175,6 +176,12 @@
           subject.run
         end
       end
+
+      it "always call solver just once to compute properly dependencies of 
changes" do
+        expect(Yast::Pkg).to receive(:PkgSolve).with(false)
+
+        subject.run
+      end
     end
   end
 end

Reply via email to