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-05-14 22:52:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old)
 and      /work/SRC/openSUSE:Factory/.libstorage-ng.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libstorage-ng"

Sat May 14 22:52:26 2022 rev:165 rq:976646 version:4.5.11

Changes:
--------
--- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes      
2022-05-09 18:43:49.236187568 +0200
+++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.1538/libstorage-ng.changes    
2022-05-14 22:52:37.275025325 +0200
@@ -1,0 +2,9 @@
+Thu May 12 13:20:38 UTC 2022 - aschn...@suse.com
+
+- merge gh#openSUSE/libstorage-ng#875
+- do not add zoned disks to pools
+- extended documentation
+- tiny cleanup
+- 4.5.11
+
+--------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ libstorage-ng.spec ++++++
--- /var/tmp/diff_new_pack.bJulXz/_old  2022-05-14 22:52:37.927026140 +0200
+++ /var/tmp/diff_new_pack.bJulXz/_new  2022-05-14 22:52:37.931026145 +0200
@@ -18,7 +18,7 @@
 
 %define libname %{name}1
 Name:           libstorage-ng
-Version:        4.5.10
+Version:        4.5.11
 Release:        0
 Summary:        Library for storage management
 License:        GPL-2.0-only

++++++ libstorage-ng-4.5.10.tar.xz -> libstorage-ng-4.5.11.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.10/LIBVERSION 
new/libstorage-ng-4.5.11/LIBVERSION
--- old/libstorage-ng-4.5.10/LIBVERSION 2022-05-06 09:10:16.000000000 +0200
+++ new/libstorage-ng-4.5.11/LIBVERSION 2022-05-12 15:20:38.000000000 +0200
@@ -1 +1 @@
-1.75.0
+1.75.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.10/VERSION 
new/libstorage-ng-4.5.11/VERSION
--- old/libstorage-ng-4.5.10/VERSION    2022-05-06 09:10:16.000000000 +0200
+++ new/libstorage-ng-4.5.11/VERSION    2022-05-12 15:20:38.000000000 +0200
@@ -1 +1 @@
-4.5.10
+4.5.11
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.10/doc/history.md 
new/libstorage-ng-4.5.11/doc/history.md
--- old/libstorage-ng-4.5.10/doc/history.md     2022-05-06 09:10:16.000000000 
+0200
+++ new/libstorage-ng-4.5.11/doc/history.md     2022-05-12 15:20:38.000000000 
+0200
@@ -42,6 +42,12 @@
 Included in openSUSE Tumbleweed, replacing legacy libstorage.
 
 
+August 2021
+-----------
+
+Used by [TIU (Transactional Image Update)](https://github.com/thkukuk/tiu).
+
+
 November 2021
 -------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.10/storage/Devices/DiskImpl.cc 
new/libstorage-ng-4.5.11/storage/Devices/DiskImpl.cc
--- old/libstorage-ng-4.5.10/storage/Devices/DiskImpl.cc        2022-05-06 
09:10:16.000000000 +0200
+++ new/libstorage-ng-4.5.11/storage/Devices/DiskImpl.cc        2022-05-12 
15:20:38.000000000 +0200
@@ -161,6 +161,9 @@
     string
     Disk::Impl::pool_name() const
     {
+       if (!is_usable_as_partitionable())
+           return "";
+
        if (is_pmem())
            return "PMEMs";
        else if (is_nvme())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.10/storage/Filesystems/ExtImpl.cc 
new/libstorage-ng-4.5.11/storage/Filesystems/ExtImpl.cc
--- old/libstorage-ng-4.5.10/storage/Filesystems/ExtImpl.cc     2022-05-06 
09:10:16.000000000 +0200
+++ new/libstorage-ng-4.5.11/storage/Filesystems/ExtImpl.cc     2022-05-12 
15:20:38.000000000 +0200
@@ -135,7 +135,7 @@
     {
        const BlkDevice* blk_device = get_blk_device();
 
-       string cmd_line = MKFS_EXT2_BIN " -v -t " + toString(get_type()) + " -v 
-F " +
+       string cmd_line = MKFS_EXT2_BIN " -v -t " + toString(get_type()) + " -F 
" +
            get_mkfs_options() + " " + quote(blk_device->get_name());
 
        wait_for_devices();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libstorage-ng-4.5.10/storage/Filesystems/Nilfs2Impl.cc 
new/libstorage-ng-4.5.11/storage/Filesystems/Nilfs2Impl.cc
--- old/libstorage-ng-4.5.10/storage/Filesystems/Nilfs2Impl.cc  2022-05-06 
09:10:16.000000000 +0200
+++ new/libstorage-ng-4.5.11/storage/Filesystems/Nilfs2Impl.cc  2022-05-12 
15:20:38.000000000 +0200
@@ -56,7 +56,7 @@
     {
        const BlkDevice* blk_device = get_blk_device();
 
-       string cmd_line = MKFS_NILFS2_BIN " -v " + get_mkfs_options() + " " + 
quote(blk_device->get_name());
+       string cmd_line = MKFS_NILFS2_BIN " -v -f " + get_mkfs_options() + " " 
+ quote(blk_device->get_name());
 
        wait_for_devices();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.10/testsuite/probe/disk-zoned1.cc 
new/libstorage-ng-4.5.11/testsuite/probe/disk-zoned1.cc
--- old/libstorage-ng-4.5.10/testsuite/probe/disk-zoned1.cc     2022-05-06 
09:10:16.000000000 +0200
+++ new/libstorage-ng-4.5.11/testsuite/probe/disk-zoned1.cc     2022-05-12 
15:20:38.000000000 +0200
@@ -38,4 +38,6 @@
 
     BOOST_CHECK_EQUAL(required_features(probed), "ext4 swap");
     BOOST_CHECK_EQUAL(suggested_features(probed), "ext4 swap");
+
+    BOOST_CHECK_EQUAL(pools(&storage), "HDDs (512 B) [1]");
 }

Reply via email to