Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2023-03-04 22:42:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dracut (Old)
 and      /work/SRC/openSUSE:Factory/.dracut.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dracut"

Sat Mar  4 22:42:25 2023 rev:205 rq:1069170 version:059+suse.366.gf45bc67a

Changes:
--------
--- /work/SRC/openSUSE:Factory/dracut/dracut.changes    2023-01-26 
13:59:05.828359777 +0100
+++ /work/SRC/openSUSE:Factory/.dracut.new.31432/dracut.changes 2023-03-04 
22:42:36.043574735 +0100
@@ -1,0 +2,8 @@
+Fri Mar 03 13:24:28 UTC 2023 - antonio.fei...@suse.com
+
+- Update to version 059+suse.366.gf45bc67a:
+  * fix(fips): add libkcapi fipscheck also with the libexec location 
(bsc#1207892)
+  * feat(lvm): always include all drivers that LVM can use (bsc#1206195)
+  * chore(suse): update url in spec
+
+-------------------------------------------------------------------

Old:
----
  dracut-059+suse.360.g2e0ed5f7.obscpio

New:
----
  dracut-059+suse.366.gf45bc67a.obscpio

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

Other differences:
------------------
++++++ dracut.spec ++++++
--- /var/tmp/diff_new_pack.g4As5S/_old  2023-03-04 22:42:36.951579099 +0100
+++ /var/tmp/diff_new_pack.g4As5S/_new  2023-03-04 22:42:36.955579119 +0100
@@ -25,12 +25,12 @@
 %endif
 
 Name:           dracut
-Version:        059+suse.360.g2e0ed5f7
+Version:        059+suse.366.gf45bc67a
 Release:        0
 Summary:        Event driven initramfs infrastructure
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later
 Group:          System/Base
-URL:            https://dracut.wiki.kernel.org/
+URL:            https://github.com/dracutdevs/dracut/wiki
 Source0:        dracut-%{version}.tar.xz
 Source1:        dracut-rpmlintrc
 Source2:        README.susemaint

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.g4As5S/_old  2023-03-04 22:42:37.015579407 +0100
+++ /var/tmp/diff_new_pack.g4As5S/_new  2023-03-04 22:42:37.015579407 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/opensuse/dracut.git</param>
-              <param 
name="changesrevision">725b5c2ddcc8a784dd4d44ec3b9c3c2f56885fb2</param></service></servicedata>
+              <param 
name="changesrevision">751ba7f7a052676341f37f59a11807b4dae24dd9</param></service></servicedata>
 (No newline at EOF)
 

++++++ dracut-059+suse.360.g2e0ed5f7.obscpio -> 
dracut-059+suse.366.gf45bc67a.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dracut-059+suse.360.g2e0ed5f7/modules.d/01fips/fips.sh 
new/dracut-059+suse.366.gf45bc67a/modules.d/01fips/fips.sh
--- old/dracut-059+suse.360.g2e0ed5f7/modules.d/01fips/fips.sh  2023-01-25 
16:55:33.000000000 +0100
+++ new/dracut-059+suse.366.gf45bc67a/modules.d/01fips/fips.sh  2023-03-01 
17:24:35.000000000 +0100
@@ -3,7 +3,10 @@
 # find fipscheck, prefer kernel-based version
 fipscheck()
 {
-    FIPSCHECK=/usr/lib64/libkcapi/fipscheck
+    FIPSCHECK=/usr/libexec/libkcapi/fipscheck
+    if [ ! -f $FIPSCHECK ]; then
+        FIPSCHECK=/usr/lib64/libkcapi/fipscheck
+    fi
     if [ ! -f $FIPSCHECK ]; then
         FIPSCHECK=/usr/lib/libkcapi/fipscheck
     fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dracut-059+suse.360.g2e0ed5f7/modules.d/01fips/module-setup.sh 
new/dracut-059+suse.366.gf45bc67a/modules.d/01fips/module-setup.sh
--- old/dracut-059+suse.360.g2e0ed5f7/modules.d/01fips/module-setup.sh  
2023-01-25 16:55:33.000000000 +0100
+++ new/dracut-059+suse.366.gf45bc67a/modules.d/01fips/module-setup.sh  
2023-03-01 17:24:35.000000000 +0100
@@ -75,6 +75,7 @@
     inst_multiple rmmod insmod mount uname umount sed
     inst_multiple -o sha512hmac \
                      fipscheck \
+                     /usr/libexec/libkcapi/fipscheck \
                      /usr/lib64/libkcapi/fipscheck \
                      /usr/lib/libkcapi/fipscheck
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dracut-059+suse.360.g2e0ed5f7/modules.d/90lvm/module-setup.sh 
new/dracut-059+suse.366.gf45bc67a/modules.d/90lvm/module-setup.sh
--- old/dracut-059+suse.360.g2e0ed5f7/modules.d/90lvm/module-setup.sh   
2023-01-25 16:55:33.000000000 +0100
+++ new/dracut-059+suse.366.gf45bc67a/modules.d/90lvm/module-setup.sh   
2023-03-01 17:24:35.000000000 +0100
@@ -43,7 +43,7 @@
 }
 
 installkernel() {
-    hostonly='' instmods dm-snapshot
+    hostonly='' dracut_instmods -o -P ".*/(bcache/|md-cluster).*" "=drivers/md"
 }
 
 # called by dracut
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.360.g2e0ed5f7/suse/dracut.spec 
new/dracut-059+suse.366.gf45bc67a/suse/dracut.spec
--- old/dracut-059+suse.360.g2e0ed5f7/suse/dracut.spec  2023-01-25 
16:55:33.000000000 +0100
+++ new/dracut-059+suse.366.gf45bc67a/suse/dracut.spec  2023-03-01 
17:24:35.000000000 +0100
@@ -29,7 +29,7 @@
 Summary:        Event driven initramfs infrastructure
 License:        GPLv2+ and LGPLv2+ and GPLv2
 Group:          System/Base
-URL:            https://dracut.wiki.kernel.org/
+URL:            https://github.com/dracutdevs/dracut/wiki
 Source0:        dracut-%{version}.tar.xz
 Source1:        dracut-rpmlintrc
 Source2:        README.susemaint

++++++ dracut.obsinfo ++++++
--- /var/tmp/diff_new_pack.g4As5S/_old  2023-03-04 22:42:37.343580983 +0100
+++ /var/tmp/diff_new_pack.g4As5S/_new  2023-03-04 22:42:37.347581003 +0100
@@ -1,5 +1,5 @@
 name: dracut
-version: 059+suse.360.g2e0ed5f7
-mtime: 1674662133
-commit: 2e0ed5f765ebaae0e9d5a5a00027477728ee2130
+version: 059+suse.366.gf45bc67a
+mtime: 1677687875
+commit: f45bc67abd0d834a93264e6741ead3f69aa87108
 

Reply via email to