Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libstorage-ng for openSUSE:Factory 
checked in at 2022-11-10 14:20:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old)
 and      /work/SRC/openSUSE:Factory/.libstorage-ng.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libstorage-ng"

Thu Nov 10 14:20:24 2022 rev:186 rq:1034885 version:4.5.50

Changes:
--------
--- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes      
2022-10-28 19:30:15.286849308 +0200
+++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.1597/libstorage-ng.changes    
2022-11-10 14:20:34.165767265 +0100
@@ -1,0 +2,14 @@
+Wed Nov 9 16:04:55 UTC 2022 - aschn...@suse.com
+
+- merge gh#openSUSE/libstorage-ng#903
+- fixed typo
+- 4.5.50
+
+--------------------------------------------------------------------
+Wed Nov 9 13:43:22 UTC 2022 - aschn...@suse.com
+
+- merge gh#openSUSE/libstorage-ng#902
+- ignore chunk size for RAID1 (bsc#1205172)
+- 4.5.49
+
+--------------------------------------------------------------------

Old:
----
  libstorage-ng-4.5.48.tar.xz

New:
----
  libstorage-ng-4.5.50.tar.xz

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

Other differences:
------------------
++++++ libstorage-ng.spec ++++++
--- /var/tmp/diff_new_pack.fyYhwu/_old  2022-11-10 14:20:34.821770978 +0100
+++ /var/tmp/diff_new_pack.fyYhwu/_new  2022-11-10 14:20:34.833771046 +0100
@@ -18,7 +18,7 @@
 
 %define libname %{name}1
 Name:           libstorage-ng
-Version:        4.5.48
+Version:        4.5.50
 Release:        0
 Summary:        Library for storage management
 License:        GPL-2.0-only

++++++ libstorage-ng-4.5.48.tar.xz -> libstorage-ng-4.5.50.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.48/VERSION 
new/libstorage-ng-4.5.50/VERSION
--- old/libstorage-ng-4.5.48/VERSION    2022-10-28 12:32:37.000000000 +0200
+++ new/libstorage-ng-4.5.50/VERSION    2022-11-09 17:04:55.000000000 +0100
@@ -1 +1 @@
-4.5.48
+4.5.50
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.48/storage/Devices/MdImpl.cc 
new/libstorage-ng-4.5.50/storage/Devices/MdImpl.cc
--- old/libstorage-ng-4.5.48/storage/Devices/MdImpl.cc  2022-10-28 
12:32:37.000000000 +0200
+++ new/libstorage-ng-4.5.50/storage/Devices/MdImpl.cc  2022-11-09 
17:04:55.000000000 +0100
@@ -1136,7 +1136,8 @@
             md_level == MdLevel::RAID10) && journals.empty())
            cmd_line += " --bitmap=internal";
 
-       if (chunk_size > 0)
+       // mdadm 4.2 bails out if a chunk size is provided for RAID1 
(bsc#1205172)
+       if (md_level != MdLevel::RAID1 && chunk_size > 0)
            cmd_line += " --chunk=" + to_string(chunk_size / KiB);
 
        if (md_parity != MdParity::DEFAULT)

Reply via email to