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-18 15:42:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old) and /work/SRC/openSUSE:Factory/.libstorage-ng.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libstorage-ng" Fri Nov 18 15:42:42 2022 rev:187 rq:1035152 version:4.5.52 Changes: -------- --- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes 2022-11-10 14:20:34.165767265 +0100 +++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.1597/libstorage-ng.changes 2022-11-18 15:42:48.686371852 +0100 @@ -1,0 +2,13 @@ +Thu Nov 10 23:06:18 UTC 2022 - aschn...@suse.com + +- Translated using Weblate (Macedonian) (bsc#1149754) +- 4.5.52 + +-------------------------------------------------------------------- +Thu Nov 10 17:25:19 UTC 2022 - aschn...@suse.com + +- merge gh#openSUSE/libstorage-ng#904 +- added examples +- 4.5.51 + +-------------------------------------------------------------------- Old: ---- libstorage-ng-4.5.50.tar.xz New: ---- libstorage-ng-4.5.52.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libstorage-ng.spec ++++++ --- /var/tmp/diff_new_pack.OMzHa1/_old 2022-11-18 15:42:49.738376474 +0100 +++ /var/tmp/diff_new_pack.OMzHa1/_new 2022-11-18 15:42:49.746376509 +0100 @@ -18,7 +18,7 @@ %define libname %{name}1 Name: libstorage-ng -Version: 4.5.50 +Version: 4.5.52 Release: 0 Summary: Library for storage management License: GPL-2.0-only ++++++ libstorage-ng-4.5.50.tar.xz -> libstorage-ng-4.5.52.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.50/VERSION new/libstorage-ng-4.5.52/VERSION --- old/libstorage-ng-4.5.50/VERSION 2022-11-09 17:04:55.000000000 +0100 +++ new/libstorage-ng-4.5.52/VERSION 2022-11-11 02:13:36.000000000 +0100 @@ -1 +1 @@ -4.5.50 +4.5.52 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.50/examples/.gitignore new/libstorage-ng-4.5.52/examples/.gitignore --- old/libstorage-ng-4.5.50/examples/.gitignore 2022-11-09 17:04:55.000000000 +0100 +++ new/libstorage-ng-4.5.52/examples/.gitignore 2022-11-11 02:13:36.000000000 +0100 @@ -6,4 +6,6 @@ .libs create1 compound_actions +simple-fstab +simple-crypttab !data/* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.50/examples/Makefile.am new/libstorage-ng-4.5.52/examples/Makefile.am --- old/libstorage-ng-4.5.50/examples/Makefile.am 2022-11-09 17:04:55.000000000 +0100 +++ new/libstorage-ng-4.5.52/examples/Makefile.am 2022-11-11 02:13:36.000000000 +0100 @@ -8,7 +8,7 @@ LDADD = ../storage/libstorage-ng.la -noinst_PROGRAMS = compound_actions create1 +noinst_PROGRAMS = compound_actions create1 simple-fstab simple-crypttab AM_DEFAULT_SOURCE_EXT = .cc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.50/examples/simple-crypttab.cc new/libstorage-ng-4.5.52/examples/simple-crypttab.cc --- old/libstorage-ng-4.5.50/examples/simple-crypttab.cc 1970-01-01 01:00:00.000000000 +0100 +++ new/libstorage-ng-4.5.52/examples/simple-crypttab.cc 2022-11-11 02:13:36.000000000 +0100 @@ -0,0 +1,21 @@ + +#include <iostream> +#include <boost/algorithm/string.hpp> + +#include "storage/SimpleEtcCrypttab.h" + +using namespace std; +using namespace storage; + + +int +main() +{ + vector<SimpleEtcCrypttabEntry> crypttab = read_simple_etc_crypttab("/etc/crypttab"); + + for (const SimpleEtcCrypttabEntry& entry : crypttab) + { + cout << entry.name << " " << entry.device << " " << entry.password << " " + << boost::join(entry.crypt_options, ",") << '\n'; + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.50/examples/simple-fstab.cc new/libstorage-ng-4.5.52/examples/simple-fstab.cc --- old/libstorage-ng-4.5.50/examples/simple-fstab.cc 1970-01-01 01:00:00.000000000 +0100 +++ new/libstorage-ng-4.5.52/examples/simple-fstab.cc 2022-11-11 02:13:36.000000000 +0100 @@ -0,0 +1,23 @@ + +#include <iostream> +#include <boost/algorithm/string.hpp> + +#include "storage/SimpleEtcFstab.h" + +using namespace std; +using namespace storage; + + +int +main() +{ + vector<SimpleEtcFstabEntry> fstab = read_simple_etc_fstab("/etc/fstab"); + + for (const SimpleEtcFstabEntry& entry : fstab) + { + cout << entry.device << " " << entry.mount_point << " " + << get_fs_type_name(entry.fs_type) << " " + << boost::join(entry.mount_options, ",") << " " + << entry.fs_freq << " " << entry.fs_passno << '\n'; + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.50/po/mk.po new/libstorage-ng-4.5.52/po/mk.po --- old/libstorage-ng-4.5.50/po/mk.po 2022-11-09 17:04:55.000000000 +0100 +++ new/libstorage-ng-4.5.52/po/mk.po 2022-11-11 02:13:36.000000000 +0100 @@ -7,14 +7,16 @@ "Project-Id-Version: base\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-05 08:30+0200\n" -"PO-Revision-Date: 2006-10-08 02:39+0200\n" -"Last-Translator: Zoran Dimovski <zoki.dimov...@gmail.com>\n" -"Language-Team: Macedonian\n" -"Language: \n" +"PO-Revision-Date: 2022-11-11 01:13+0000\n" +"Last-Translator: Kristijan Fremen Velkovski <m...@krisfremen.com>\n" +"Language-Team: Macedonian <https://l10n.opensuse.org/projects/libstorage/" +"ng-master/mk/>\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n>1);\n" +"X-Generator: Weblate 4.9.1\n" msgid "" "\n" @@ -1699,23 +1701,20 @@ msgstr "" #. TRANSLATORS: symbol for "exa" (best keep untranslated) -#, fuzzy msgid "E" -msgstr "ÐÐ" +msgstr "Ð" #. TRANSLATORS: symbol for "exa bytes" (best keep untranslated) -#, fuzzy msgid "EB" -msgstr "ÐÐ" +msgstr "ÐÐ" #. TRANSLATORS: name of partition type msgid "EFI System Partition" msgstr "" #. TRANSLATORS: symbol for "exbi bytes" (best keep untranslated) -#, fuzzy msgid "EiB" -msgstr "ÐÐ" +msgstr "ÐиÐ" #. TRANSLATORS: displayed before action, #. %1$s is replaced by one or more devices (e.g /dev/sda1 (2.00 GiB)