Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2025-02-21 21:35:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new.1873 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Fri Feb 21 21:35:00 2025 rev:562 rq:1247455 version:5.0.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2025-01-07 
20:51:24.075905670 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new.1873/yast2.changes    2025-02-21 
21:35:12.001321594 +0100
@@ -1,0 +2,7 @@
+Thu Feb 20 16:09:57 UTC 2025 - Josef Reidinger <jreidin...@suse.com>
+
+- respect kernel parameter filtering from agama if found
+  (bsc#1237390,bsc#1234678)
+- 5.0.12
+
+-------------------------------------------------------------------

Old:
----
  yast2-5.0.11.tar.bz2

New:
----
  yast2-5.0.12.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.i9q3dF/_old  2025-02-21 21:35:13.805396709 +0100
+++ /var/tmp/diff_new_pack.i9q3dF/_new  2025-02-21 21:35:13.821397375 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        5.0.11
+Version:        5.0.12
 
 Release:        0
 Summary:        YaST2 Main Package

++++++ yast2-5.0.11.tar.bz2 -> yast2-5.0.12.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-5.0.11/library/system/src/modules/Kernel.rb 
new/yast2-5.0.12/library/system/src/modules/Kernel.rb
--- old/yast2-5.0.11/library/system/src/modules/Kernel.rb       2025-01-02 
10:40:37.000000000 +0100
+++ new/yast2-5.0.12/library/system/src/modules/Kernel.rb       2025-02-20 
17:40:41.000000000 +0100
@@ -170,13 +170,16 @@
       return if !(Stage.initial || Stage.cont)
 
       # Check if /etc/install.inf exists
-      tmp = if SCR.Dir(path(".etc.install_inf")).empty?
+      tmp = if !SCR.Dir(path(".etc.install_inf")).empty?
+        SCR.Read(path(".etc.install_inf.Cmdline")).to_s
+      # else check if there is agama specific filtered kernel options
+      elsif ::File.exist?("/run/agama/cmdline.d/kernel.conf")
+        WFM.Read(path(".local.string"), 
"/run/agama/cmdline.d/kernel.conf").to_s
+      else
         # not using dedicated agent in order to use the same parser for cmdline
         # independently on whether it comes from /proc/cmdline or 
/etc/install.inf
         # use local read as it does not make sense to depend on binding it to 
chroot
         WFM.Read(path(".local.string"), "/proc/cmdline").to_s
-      else
-        SCR.Read(path(".etc.install_inf.Cmdline")).to_s
       end
 
       Builtins.y2milestone(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-5.0.11/library/system/test/kernel_test.rb 
new/yast2-5.0.12/library/system/test/kernel_test.rb
--- old/yast2-5.0.11/library/system/test/kernel_test.rb 2025-01-02 
10:40:37.000000000 +0100
+++ new/yast2-5.0.12/library/system/test/kernel_test.rb 2025-02-20 
17:40:41.000000000 +0100
@@ -152,6 +152,7 @@
     before do
       allow(Yast::SCR).to 
receive(:Dir).with(path(".etc.install_inf")).and_return(["CmdLine"])
       allow(Yast::SCR).to 
receive(:Read).with(path(".etc.install_inf.Cmdline")).and_return(cmdline)
+      allow(::File).to receive(:exist?).and_return(false)
       allow(Yast::Stage).to receive(:initial).and_return(true)
       allow(Yast::Arch).to receive(:architecture).and_return("x86_64")
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-5.0.11/package/yast2.changes 
new/yast2-5.0.12/package/yast2.changes
--- old/yast2-5.0.11/package/yast2.changes      2025-01-02 10:40:37.000000000 
+0100
+++ new/yast2-5.0.12/package/yast2.changes      2025-02-20 17:40:41.000000000 
+0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Thu Feb 20 16:09:57 UTC 2025 - Josef Reidinger <jreidin...@suse.com>
+
+- respect kernel parameter filtering from agama if found
+  (bsc#1237390,bsc#1234678)
+- 5.0.12
+
+-------------------------------------------------------------------
 Thu Jan  2 06:51:16 UTC 2025 - Josef Reidinger <jreidin...@suse.com>
 
 - Fix failing tests with ruby 3.4 (gh#yast/yast-yast2#1314)
@@ -14,7 +21,7 @@
 -------------------------------------------------------------------
 Wed Jul 10 12:19:16 UTC 2024 - Stefan Hundhammer <shundham...@suse.com>
 
-- Re-added missing error class (bsc#1227580) 
+- Re-added missing error class (bsc#1227580)
 - 5.0.9
 
 -------------------------------------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-5.0.11/package/yast2.spec 
new/yast2-5.0.12/package/yast2.spec
--- old/yast2-5.0.11/package/yast2.spec 2025-01-02 10:40:37.000000000 +0100
+++ new/yast2-5.0.12/package/yast2.spec 2025-02-20 17:40:41.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        5.0.11
+Version:        5.0.12
 
 Release:        0
 Summary:        YaST2 Main Package

Reply via email to