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 2024-07-18 19:15:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old) and /work/SRC/openSUSE:Factory/.libstorage-ng.new.17339 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libstorage-ng" Thu Jul 18 19:15:18 2024 rev:278 rq:1187951 version:4.5.218 Changes: -------- --- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes 2024-07-11 20:29:30.412772410 +0200 +++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.17339/libstorage-ng.changes 2024-07-18 19:15:22.792825031 +0200 @@ -1,0 +2,7 @@ +Tue Jul 16 15:00:31 UTC 2024 - aschn...@suse.com + +- merge gh#openSUSE/libstorage-ng#1000 +- coding style +- 4.5.218 + +-------------------------------------------------------------------- Old: ---- libstorage-ng-4.5.217.tar.xz New: ---- libstorage-ng-4.5.218.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libstorage-ng.spec ++++++ --- /var/tmp/diff_new_pack.1qMxTu/_old 2024-07-18 19:15:23.492852760 +0200 +++ /var/tmp/diff_new_pack.1qMxTu/_new 2024-07-18 19:15:23.492852760 +0200 @@ -18,7 +18,7 @@ %define libname %{name}1 Name: libstorage-ng -Version: 4.5.217 +Version: 4.5.218 Release: 0 Summary: Library for storage management License: GPL-2.0-only ++++++ libstorage-ng-4.5.217.tar.xz -> libstorage-ng-4.5.218.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.217/VERSION new/libstorage-ng-4.5.218/VERSION --- old/libstorage-ng-4.5.217/VERSION 2024-07-10 12:08:42.000000000 +0200 +++ new/libstorage-ng-4.5.218/VERSION 2024-07-16 17:00:31.000000000 +0200 @@ -1 +1 @@ -4.5.217 +4.5.218 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.217/storage/SystemInfo/ProcMdstat.cc new/libstorage-ng-4.5.218/storage/SystemInfo/ProcMdstat.cc --- old/libstorage-ng-4.5.217/storage/SystemInfo/ProcMdstat.cc 2024-07-10 12:08:42.000000000 +0200 +++ new/libstorage-ng-4.5.218/storage/SystemInfo/ProcMdstat.cc 2024-07-16 17:00:31.000000000 +0200 @@ -56,7 +56,7 @@ { string name = extractNthWord(0, *it1); if (boost::starts_with(name, "md")) - data[name] = parse(*it1, *(it1 + 1)); + data[name] = parse_entry(*it1, *(it1 + 1)); } } @@ -65,7 +65,7 @@ ProcMdstat::Entry - ProcMdstat::parse(const string& line1, const string& line2) + ProcMdstat::parse_entry(const string& line1, const string& line2) const { ProcMdstat::Entry entry; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.217/storage/SystemInfo/ProcMdstat.h new/libstorage-ng-4.5.218/storage/SystemInfo/ProcMdstat.h --- old/libstorage-ng-4.5.217/storage/SystemInfo/ProcMdstat.h 2024-07-10 12:08:42.000000000 +0200 +++ new/libstorage-ng-4.5.218/storage/SystemInfo/ProcMdstat.h 2024-07-16 17:00:31.000000000 +0200 @@ -101,7 +101,7 @@ void parse(const vector<string>& lines); - Entry parse(const string& line1, const string& line2); + Entry parse_entry(const string& line1, const string& line2) const; map<string, Entry> data;