Hello community,

here is the log from the commit of package yast2-caasp for openSUSE:Factory 
checked in at 2018-01-30 17:40:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-caasp (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-caasp.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-caasp"

Tue Jan 30 17:40:49 2018 rev:5 rq:571157 version:4.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-caasp/yast2-caasp.changes  2018-01-17 
21:42:28.607673553 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-caasp.new/yast2-caasp.changes     
2018-01-30 17:40:50.408103669 +0100
@@ -1,0 +2,6 @@
+Tue Jan 30 10:36:58 UTC 2018 - igonzalezs...@suse.com
+
+- Handle product features overlay in a proper way (bsc#1077038).
+- 4.0.4
+
+-------------------------------------------------------------------

Old:
----
  yast2-caasp-4.0.3.tar.bz2

New:
----
  yast2-caasp-4.0.4.tar.bz2

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

Other differences:
------------------
++++++ yast2-caasp.spec ++++++
--- /var/tmp/diff_new_pack.6w33qI/_old  2018-01-30 17:40:51.048073844 +0100
+++ /var/tmp/diff_new_pack.6w33qI/_new  2018-01-30 17:40:51.048073844 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-caasp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-caasp
-Version:        4.0.3
+Version:        4.0.4
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-caasp-4.0.3.tar.bz2 -> yast2-caasp-4.0.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-caasp-4.0.3/package/yast2-caasp.changes 
new/yast2-caasp-4.0.4/package/yast2-caasp.changes
--- old/yast2-caasp-4.0.3/package/yast2-caasp.changes   2017-12-12 
14:43:00.000000000 +0100
+++ new/yast2-caasp-4.0.4/package/yast2-caasp.changes   2018-01-30 
17:33:18.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Tue Jan 30 10:36:58 UTC 2018 - igonzalezs...@suse.com
+
+- Handle product features overlay in a proper way (bsc#1077038).
+- 4.0.4
+
+-------------------------------------------------------------------
 Tue Dec 12 13:16:49 UTC 2017 - jreidin...@suse.com
 
 - Use chrony instead of ntp (FATE#323432)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-caasp-4.0.3/package/yast2-caasp.spec 
new/yast2-caasp-4.0.4/package/yast2-caasp.spec
--- old/yast2-caasp-4.0.3/package/yast2-caasp.spec      2017-12-12 
14:43:00.000000000 +0100
+++ new/yast2-caasp-4.0.4/package/yast2-caasp.spec      2018-01-30 
17:33:18.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-caasp
-Version:        4.0.3
+Version:        4.0.4
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-caasp-4.0.3/src/lib/y2caasp/widgets/system_role.rb 
new/yast2-caasp-4.0.4/src/lib/y2caasp/widgets/system_role.rb
--- old/yast2-caasp-4.0.3/src/lib/y2caasp/widgets/system_role.rb        
2017-12-12 14:43:00.000000000 +0100
+++ new/yast2-caasp-4.0.4/src/lib/y2caasp/widgets/system_role.rb        
2018-01-30 17:33:18.000000000 +0100
@@ -26,6 +26,7 @@
 require "y2caasp/widgets/ntp_server"
 
 Yast.import "ProductControl"
+Yast.import "ProductFeatures"
 Yast.import "IP"
 Yast.import "Hostname"
 
@@ -130,6 +131,7 @@
         log.info "Applying system role '#{value}'"
         role = ::Installation::SystemRole.select(value)
 
+        Yast::ProductFeatures.ClearOverlay
         role.overlay_features
         role.adapt_services
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-caasp-4.0.3/test/lib/widgets/system_role_test.rb 
new/yast2-caasp-4.0.4/test/lib/widgets/system_role_test.rb
--- old/yast2-caasp-4.0.3/test/lib/widgets/system_role_test.rb  2017-12-12 
14:43:00.000000000 +0100
+++ new/yast2-caasp-4.0.4/test/lib/widgets/system_role_test.rb  2018-01-30 
17:33:18.000000000 +0100
@@ -95,6 +95,7 @@
     end
 
     it "overlays role features" do
+      expect(Yast::ProductFeatures).to receive(:ClearOverlay)
       expect(test_role).to receive(:overlay_features)
       widget.store
     end


Reply via email to