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 2023-05-18 15:18:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old)
 and      /work/SRC/openSUSE:Factory/.libstorage-ng.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libstorage-ng"

Thu May 18 15:18:23 2023 rev:220 rq:1087560 version:4.5.106

Changes:
--------
--- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes      
2023-05-17 10:52:44.939223923 +0200
+++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.1533/libstorage-ng.changes    
2023-05-18 15:18:32.609615229 +0200
@@ -1,0 +2,7 @@
+Wed May 17 11:47:40 UTC 2023 - aschn...@suse.com
+
+- merge gh#openSUSE/libstorage-ng#932
+- check for more aliases when looking up udev info
+- 4.5.106
+
+--------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ libstorage-ng.spec ++++++
--- /var/tmp/diff_new_pack.8ecawk/_old  2023-05-18 15:18:33.397619238 +0200
+++ /var/tmp/diff_new_pack.8ecawk/_new  2023-05-18 15:18:33.405619278 +0200
@@ -18,7 +18,7 @@
 
 %define libname %{name}1
 Name:           libstorage-ng
-Version:        4.5.105
+Version:        4.5.106
 Release:        0
 Summary:        Library for storage management
 License:        GPL-2.0-only

++++++ libstorage-ng-4.5.105.tar.xz -> libstorage-ng-4.5.106.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.105/VERSION 
new/libstorage-ng-4.5.106/VERSION
--- old/libstorage-ng-4.5.105/VERSION   2023-05-16 11:21:53.000000000 +0200
+++ new/libstorage-ng-4.5.106/VERSION   2023-05-17 13:47:40.000000000 +0200
@@ -1 +1 @@
-4.5.105
+4.5.106
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libstorage-ng-4.5.105/storage/SystemInfo/CmdUdevadm.cc 
new/libstorage-ng-4.5.106/storage/SystemInfo/CmdUdevadm.cc
--- old/libstorage-ng-4.5.105/storage/SystemInfo/CmdUdevadm.cc  2023-05-16 
11:21:53.000000000 +0200
+++ new/libstorage-ng-4.5.106/storage/SystemInfo/CmdUdevadm.cc  2023-05-17 
13:47:40.000000000 +0200
@@ -72,6 +72,8 @@
        const Link links[] = {
            { "S: disk/by-path/", by_path_links },
            { "S: disk/by-id/", by_id_links },
+           { "S: disk/by-label/", by_label_links },
+           { "S: disk/by-uuid/", by_uuid_links },
            { "S: disk/by-partlabel/", by_partlabel_links },
            { "S: disk/by-partuuid/", by_partuuid_links },
            { "S: mapper/", mapper_links },
@@ -131,6 +133,8 @@
        const Link links[] = {
            { DEV_DISK_BY_PATH_DIR "/", by_path_links },
            { DEV_DISK_BY_ID_DIR "/", by_id_links },
+           { DEV_DISK_BY_LABEL_DIR "/", by_label_links },
+           { DEV_DISK_BY_UUID_DIR "/", by_uuid_links },
            { DEV_DISK_BY_PARTLABEL_DIR "/", by_partlabel_links },
            { DEV_DISK_BY_PARTUUID_DIR "/", by_partuuid_links },
            { DEV_MAPPER_DIR "/", mapper_links },
@@ -159,6 +163,12 @@
        if (!cmd_udevadm_info.by_id_links.empty())
            s << " by-id-links:" << cmd_udevadm_info.by_id_links;
 
+       if (!cmd_udevadm_info.by_label_links.empty())
+           s << " by-label-links:" << cmd_udevadm_info.by_label_links;
+
+       if (!cmd_udevadm_info.by_uuid_links.empty())
+           s << " by-uuid-links:" << cmd_udevadm_info.by_uuid_links;
+
        if (!cmd_udevadm_info.by_partlabel_links.empty())
            s << " by-partlabel-links:" << cmd_udevadm_info.by_partlabel_links;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libstorage-ng-4.5.105/storage/SystemInfo/CmdUdevadm.h 
new/libstorage-ng-4.5.106/storage/SystemInfo/CmdUdevadm.h
--- old/libstorage-ng-4.5.105/storage/SystemInfo/CmdUdevadm.h   2023-05-16 
11:21:53.000000000 +0200
+++ new/libstorage-ng-4.5.106/storage/SystemInfo/CmdUdevadm.h   2023-05-17 
13:47:40.000000000 +0200
@@ -80,6 +80,8 @@
 
        vector<string> by_path_links;
        vector<string> by_id_links;
+       vector<string> by_label_links;
+       vector<string> by_uuid_links;
        vector<string> by_partlabel_links;
        vector<string> by_partuuid_links;
        vector<string> mapper_links;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libstorage-ng-4.5.105/testsuite/SystemInfo/udevadm-info.cc 
new/libstorage-ng-4.5.106/testsuite/SystemInfo/udevadm-info.cc
--- old/libstorage-ng-4.5.105/testsuite/SystemInfo/udevadm-info.cc      
2023-05-16 11:21:53.000000000 +0200
+++ new/libstorage-ng-4.5.106/testsuite/SystemInfo/udevadm-info.cc      
2023-05-17 13:47:40.000000000 +0200
@@ -198,7 +198,7 @@
     };
 
     vector<string> output = {
-       "file:/dev/sda1 
path:/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
 name:sda1 majorminor:8:1 device-type:partition 
by-path-links:<pci-0000:00:1f.2-ata-1.0-part1> 
by-id-links:<ata-WDC_WD10EADS-00M2B0_WD-WCAV52321683-part1 
scsi-0ATA_WDC_WD10EADS-00M_WD-WCAV52321683-part1 
scsi-1ATA_WDC_WD10EADS-00M2B0_WD-WCAV52321683-part1 
scsi-350014ee203733bb5-part1 scsi-SATA_WDC_WD10EADS-00M_WD-WCAV52321683-part1 
scsi-SATA_WDC_WD10EADS-00_WD-WCAV52321683-part1 wwn-0x50014ee203733bb5-part1>"
+       "file:/dev/sda1 
path:/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
 name:sda1 majorminor:8:1 device-type:partition 
by-path-links:<pci-0000:00:1f.2-ata-1.0-part1> 
by-id-links:<ata-WDC_WD10EADS-00M2B0_WD-WCAV52321683-part1 
scsi-0ATA_WDC_WD10EADS-00M_WD-WCAV52321683-part1 
scsi-1ATA_WDC_WD10EADS-00M2B0_WD-WCAV52321683-part1 
scsi-350014ee203733bb5-part1 scsi-SATA_WDC_WD10EADS-00M_WD-WCAV52321683-part1 
scsi-SATA_WDC_WD10EADS-00_WD-WCAV52321683-part1 wwn-0x50014ee203733bb5-part1> 
by-label-links:<BOOT> by-uuid-links:<14875716-b8e3-4c83-ac86-48c20682b63a>"
     };
 
     check("/dev/sda1", input, output);

Reply via email to