Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2024-02-15 20:58:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dracut (Old)
 and      /work/SRC/openSUSE:Factory/.dracut.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dracut"

Thu Feb 15 20:58:44 2024 rev:221 rq:1146360 version:059+suse.554.g6144bf71

Changes:
--------
--- /work/SRC/openSUSE:Factory/dracut/dracut.changes    2024-02-11 
15:45:08.993759686 +0100
+++ /work/SRC/openSUSE:Factory/.dracut.new.1815/dracut.changes  2024-02-15 
20:58:50.144649017 +0100
@@ -1,0 +2,12 @@
+Tue Feb 13 10:42:38 UTC 2024 - antonio.fei...@suse.com
+
+- Update to version 059+suse.554.g6144bf71:
+  * fix(dracut.spec): update dracut-fips requirements (bsc#1219869)
+
+-------------------------------------------------------------------
+Mon Feb 12 16:00:01 UTC 2024 - antonio.fei...@suse.com
+
+- Update to version 059+suse.552.g4610ef1b:
+  * fix(dracut-util): do not call `strcmp` if the `value` argument is NULL 
(bsc#1219841)
+
+-------------------------------------------------------------------

Old:
----
  dracut-059+suse.549.gc9f63878.obscpio

New:
----
  dracut-059+suse.554.g6144bf71.obscpio

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

Other differences:
------------------
++++++ dracut.spec ++++++
--- /var/tmp/diff_new_pack.O1ftM7/_old  2024-02-15 20:58:50.860674875 +0100
+++ /var/tmp/diff_new_pack.O1ftM7/_new  2024-02-15 20:58:50.860674875 +0100
@@ -25,7 +25,7 @@
 %endif
 
 Name:           dracut
-Version:        059+suse.549.gc9f63878
+Version:        059+suse.554.g6144bf71
 Release:        0
 Summary:        Event driven initramfs infrastructure
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -81,9 +81,7 @@
 Summary:        Dracut modules to build a dracut initramfs with an integrity 
check
 Group:          System/Base
 Requires:       %{name} = %{version}-%{release}
-Requires:       libcryptsetup12-hmac
 Requires:       libkcapi-tools
-Requires:       libopenssl1_1-hmac
 
 %description fips
 This package requires everything which is needed to build an

++++++ README.susemaint ++++++
--- /var/tmp/diff_new_pack.O1ftM7/_old  2024-02-15 20:58:50.888675886 +0100
+++ /var/tmp/diff_new_pack.O1ftM7/_new  2024-02-15 20:58:50.892676031 +0100
@@ -325,6 +325,7 @@
 2560    feat(resume): do not attempt to install 
systemd-hibernate-resume@.service
 2593    fix(dracut.sh): do not add device if find_block_device returns an error
 2593    feat(dracut.sh): protect push_host_devs function
+2607    fix(dracut-util): do not call strcmp if the value argument is NULL
 2607    fix(dracut): correct regression with multiple `rd.break=` options
 2611    fix(livenet): propagate error code
 2611    fix(livenet): check also `content-length` from live image header

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.O1ftM7/_old  2024-02-15 20:58:50.928677330 +0100
+++ /var/tmp/diff_new_pack.O1ftM7/_new  2024-02-15 20:58:50.932677475 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/opensuse/dracut.git</param>
-              <param 
name="changesrevision">33ceecf9f7f834e77c55b91139d082abdae306c0</param></service></servicedata>
+              <param 
name="changesrevision">28c6935360b70a56c3b339117a43314c062c1a3f</param></service></servicedata>
 (No newline at EOF)
 

++++++ dracut-059+suse.549.gc9f63878.obscpio -> 
dracut-059+suse.554.g6144bf71.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.549.gc9f63878/src/util/util.c 
new/dracut-059+suse.554.g6144bf71/src/util/util.c
--- old/dracut-059+suse.549.gc9f63878/src/util/util.c   2024-02-09 
20:45:25.000000000 +0100
+++ new/dracut-059+suse.554.g6144bf71/src/util/util.c   2024-02-13 
11:41:48.000000000 +0100
@@ -273,7 +273,7 @@
                 cmdline = next_arg(cmdline, &key, &value);
                 if (strcmp(key, search_key) == 0) {
                         if (search_value) {
-                                if (strcmp(value, search_value) == 0) {
+                                if (value && strcmp(value, search_value) == 0) 
{
                                         printf("%s\n", value);
                                         found_value = true;
                                 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.549.gc9f63878/suse/README.susemaint 
new/dracut-059+suse.554.g6144bf71/suse/README.susemaint
--- old/dracut-059+suse.549.gc9f63878/suse/README.susemaint     2024-02-09 
20:45:25.000000000 +0100
+++ new/dracut-059+suse.554.g6144bf71/suse/README.susemaint     2024-02-13 
11:41:48.000000000 +0100
@@ -325,6 +325,7 @@
 2560    feat(resume): do not attempt to install 
systemd-hibernate-resume@.service
 2593    fix(dracut.sh): do not add device if find_block_device returns an error
 2593    feat(dracut.sh): protect push_host_devs function
+2607    fix(dracut-util): do not call strcmp if the value argument is NULL
 2607    fix(dracut): correct regression with multiple `rd.break=` options
 2611    fix(livenet): propagate error code
 2611    fix(livenet): check also `content-length` from live image header
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dracut-059+suse.549.gc9f63878/suse/dracut.spec 
new/dracut-059+suse.554.g6144bf71/suse/dracut.spec
--- old/dracut-059+suse.549.gc9f63878/suse/dracut.spec  2024-02-09 
20:45:25.000000000 +0100
+++ new/dracut-059+suse.554.g6144bf71/suse/dracut.spec  2024-02-13 
11:41:48.000000000 +0100
@@ -80,9 +80,7 @@
 Summary:        Dracut modules to build a dracut initramfs with an integrity 
check
 Group:          System/Base
 Requires:       %{name} = %{version}-%{release}
-Requires:       libcryptsetup12-hmac
 Requires:       libkcapi-tools
-Requires:       libopenssl1_1-hmac
 
 %description fips
 This package requires everything which is needed to build an

++++++ dracut.obsinfo ++++++
--- /var/tmp/diff_new_pack.O1ftM7/_old  2024-02-15 20:58:51.204687298 +0100
+++ /var/tmp/diff_new_pack.O1ftM7/_new  2024-02-15 20:58:51.208687442 +0100
@@ -1,5 +1,5 @@
 name: dracut
-version: 059+suse.549.gc9f63878
-mtime: 1707507925
-commit: c9f6387889ab4c082d1748c7fd38ab21e1734f76
+version: 059+suse.554.g6144bf71
+mtime: 1707820908
+commit: 6144bf71326b3a2c93882cc0c909c4931241e424
 

Reply via email to