Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2025-04-20 09:34:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dracut (Old)
 and      /work/SRC/openSUSE:Factory/.dracut.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dracut"

Sun Apr 20 09:34:47 2025 rev:241 rq:1270158 version:059+suse.725.g1df2cbe1

Changes:
--------
--- /work/SRC/openSUSE:Factory/dracut/dracut.changes    2025-04-15 
16:48:15.809026929 +0200
+++ /work/SRC/openSUSE:Factory/.dracut.new.30101/dracut.changes 2025-04-20 
19:51:24.751485472 +0200
@@ -1,0 +2,12 @@
+Thu Apr 17 05:40:51 UTC 2025 - antonio.fei...@suse.com
+
+- Update to version 059+suse.725.g1df2cbe1:
+  * fix(dracut-init): assign real path to srcmods (bsc#1241114)
+
+-------------------------------------------------------------------
+Wed Apr 16 12:44:44 UTC 2025 - antonio.fei...@suse.com
+
+- Update to version 059+suse.723.g780a5518:
+  * fix(dracut.spec): require jq for nvmf (bsc#1239603)
+
+-------------------------------------------------------------------

Old:
----
  dracut-059+suse.722.g16d7e0c3.obscpio

New:
----
  dracut-059+suse.725.g1df2cbe1.obscpio

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

Other differences:
------------------
++++++ dracut.spec ++++++
--- /var/tmp/diff_new_pack.74DKmH/_old  2025-04-20 19:51:26.759569042 +0200
+++ /var/tmp/diff_new_pack.74DKmH/_new  2025-04-20 19:51:26.767569375 +0200
@@ -25,7 +25,7 @@
 %endif
 
 Name:           dracut
-Version:        059+suse.722.g16d7e0c3
+Version:        059+suse.725.g1df2cbe1
 Release:        0
 Summary:        Event driven initramfs infrastructure
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -69,6 +69,7 @@
 # suse-module-tools >= 15.4.7 is prepared for the removal of mkinitrd-suse.sh
 Conflicts:      suse-module-tools < 15.4.7
 %{?systemd_requires}
+Requires:       (jq if nvme-cli)
 
 %description
 Dracut contains tools to create a bootable initramfs for Linux kernels >= 2.6.

++++++ README.susemaint ++++++
--- /var/tmp/diff_new_pack.74DKmH/_old  2025-04-20 19:51:26.955577200 +0200
+++ /var/tmp/diff_new_pack.74DKmH/_new  2025-04-20 19:51:26.983578365 +0200
@@ -411,9 +411,11 @@
 d10455ad feat(lsinitrd.sh): print stored dracut cmdline
 6b30662e fix(nfs): libnfsidmap plugins not added in some distributions
 59af2fff fix(crypt): install dm_crypt module in non-hostonly mode as well
+dea50f64 fix(crypt): always install s390 crypto modules
 541ae946 fix(dmsquash-live): use load_fstype to load driver for filesystems
 c6906fea fix(dmsquash-live): do not check ISO md5 if image filesystem
 1b5669c1 feat(systemd): add new systemd-validatefs@.service
 e8f72ed9 chore(multipath): remove `rd_NO_MULTIPATH` kernel command line option
 5e87b68c refactor(multipath): remove custom multipathd.service
+bb6d0c11 fix(dracut-init): assign real path to srcmods
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.74DKmH/_old  2025-04-20 19:51:27.147585190 +0200
+++ /var/tmp/diff_new_pack.74DKmH/_new  2025-04-20 19:51:27.163585856 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/opensuse/dracut.git</param>
-              <param 
name="changesrevision">16d7e0c3c206781ac18f28708a5817e6fe8f8097</param></service></servicedata>
+              <param 
name="changesrevision">1df2cbe1b4d822be5294b894f0d1f032b9b6fe99</param></service></servicedata>
 (No newline at EOF)
 

++++++ dracut-059+suse.722.g16d7e0c3.obscpio -> 
dracut-059+suse.725.g1df2cbe1.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.722.g16d7e0c3/dracut-init.sh 
new/dracut-059+suse.725.g1df2cbe1/dracut-init.sh
--- old/dracut-059+suse.722.g16d7e0c3/dracut-init.sh    2025-04-14 
11:25:41.000000000 +0200
+++ new/dracut-059+suse.725.g1df2cbe1/dracut-init.sh    2025-04-17 
07:39:18.000000000 +0200
@@ -60,7 +60,7 @@
 fi
 
 # shellcheck disable=SC2154
-srcmods="$dracutsysrootdir/lib/modules/$kernel/"
+srcmods="$(realpath -e "$dracutsysrootdir/lib/modules/$kernel")"
 
 # shellcheck disable=SC2154
 [[ $drivers_dir ]] && {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.722.g16d7e0c3/suse/README.susemaint 
new/dracut-059+suse.725.g1df2cbe1/suse/README.susemaint
--- old/dracut-059+suse.722.g16d7e0c3/suse/README.susemaint     2025-04-14 
11:25:41.000000000 +0200
+++ new/dracut-059+suse.725.g1df2cbe1/suse/README.susemaint     2025-04-17 
07:39:18.000000000 +0200
@@ -411,8 +411,10 @@
 d10455ad feat(lsinitrd.sh): print stored dracut cmdline
 6b30662e fix(nfs): libnfsidmap plugins not added in some distributions
 59af2fff fix(crypt): install dm_crypt module in non-hostonly mode as well
+dea50f64 fix(crypt): always install s390 crypto modules
 541ae946 fix(dmsquash-live): use load_fstype to load driver for filesystems
 c6906fea fix(dmsquash-live): do not check ISO md5 if image filesystem
 1b5669c1 feat(systemd): add new systemd-validatefs@.service
 e8f72ed9 chore(multipath): remove `rd_NO_MULTIPATH` kernel command line option
 5e87b68c refactor(multipath): remove custom multipathd.service
+bb6d0c11 fix(dracut-init): assign real path to srcmods
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.722.g16d7e0c3/suse/dracut.spec 
new/dracut-059+suse.725.g1df2cbe1/suse/dracut.spec
--- old/dracut-059+suse.722.g16d7e0c3/suse/dracut.spec  2025-04-14 
11:25:41.000000000 +0200
+++ new/dracut-059+suse.725.g1df2cbe1/suse/dracut.spec  2025-04-17 
07:39:18.000000000 +0200
@@ -68,6 +68,7 @@
 # suse-module-tools >= 15.4.7 is prepared for the removal of mkinitrd-suse.sh
 Conflicts:      suse-module-tools < 15.4.7
 %{?systemd_requires}
+Requires:       (jq if nvme-cli)
 
 %description
 Dracut contains tools to create a bootable initramfs for Linux kernels >= 2.6.

++++++ dracut.obsinfo ++++++
--- /var/tmp/diff_new_pack.74DKmH/_old  2025-04-20 19:51:28.587645121 +0200
+++ /var/tmp/diff_new_pack.74DKmH/_new  2025-04-20 19:51:28.587645121 +0200
@@ -1,5 +1,5 @@
 name: dracut
-version: 059+suse.722.g16d7e0c3
-mtime: 1744622741
-commit: 16d7e0c3c206781ac18f28708a5817e6fe8f8097
+version: 059+suse.725.g1df2cbe1
+mtime: 1744868358
+commit: 1df2cbe1b4d822be5294b894f0d1f032b9b6fe99
 

Reply via email to