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-03-20 20:54:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old) and /work/SRC/openSUSE:Factory/.libstorage-ng.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libstorage-ng" Sun Mar 20 20:54:30 2022 rev:156 rq:962528 version:4.4.94 Changes: -------- --- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes 2022-03-11 11:46:48.002898180 +0100 +++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.25692/libstorage-ng.changes 2022-03-20 20:54:32.406439399 +0100 @@ -1,0 +2,7 @@ +Thu Mar 17 19:08:12 UTC 2022 - [email protected] + +- merge gh#openSUSE/libstorage-ng#863 +- do not run blkdiscard on extended partitions (bsc#1197257) +- 4.4.94 + +-------------------------------------------------------------------- Old: ---- libstorage-ng-4.4.93.tar.xz New: ---- libstorage-ng-4.4.94.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libstorage-ng.spec ++++++ --- /var/tmp/diff_new_pack.j3b5y5/_old 2022-03-20 20:54:32.986440234 +0100 +++ /var/tmp/diff_new_pack.j3b5y5/_new 2022-03-20 20:54:32.990440239 +0100 @@ -18,7 +18,7 @@ %define libname %{name}1 Name: libstorage-ng -Version: 4.4.93 +Version: 4.4.94 Release: 0 Summary: Library for storage management License: GPL-2.0-only ++++++ libstorage-ng-4.4.93.tar.xz -> libstorage-ng-4.4.94.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.4.93/LIBVERSION new/libstorage-ng-4.4.94/LIBVERSION --- old/libstorage-ng-4.4.93/LIBVERSION 2022-03-07 12:04:17.000000000 +0100 +++ new/libstorage-ng-4.4.94/LIBVERSION 2022-03-17 20:08:12.000000000 +0100 @@ -1 +1 @@ -1.72.1 +1.72.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.4.93/VERSION new/libstorage-ng-4.4.94/VERSION --- old/libstorage-ng-4.4.93/VERSION 2022-03-07 12:04:17.000000000 +0100 +++ new/libstorage-ng-4.4.94/VERSION 2022-03-17 20:08:12.000000000 +0100 @@ -1 +1 @@ -4.4.93 +4.4.94 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.4.93/storage/Devices/PartitionImpl.cc new/libstorage-ng-4.4.94/storage/Devices/PartitionImpl.cc --- old/libstorage-ng-4.4.93/storage/Devices/PartitionImpl.cc 2022-03-07 12:04:17.000000000 +0100 +++ new/libstorage-ng-4.4.94/storage/Devices/PartitionImpl.cc 2022-03-17 20:08:12.000000000 +0100 @@ -891,7 +891,10 @@ do_create_post_hack(tmps); - discard_device(); + if (get_type() == PartitionType::PRIMARY || get_type() == PartitionType::LOGICAL) + { + discard_device(); + } } @@ -1331,7 +1334,10 @@ { do_delete_efi_boot_mgr(); - discard_device(); + if (get_type() == PartitionType::PRIMARY || get_type() == PartitionType::LOGICAL) + { + discard_device(); + } const Partitionable* partitionable = get_partitionable();
