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-12-19 21:40:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old) and /work/SRC/openSUSE:Factory/.libstorage-ng.new.29675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libstorage-ng" Thu Dec 19 21:40:17 2024 rev:281 rq:1232104 version:4.5.221 Changes: -------- --- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes 2024-12-05 17:05:47.798447090 +0100 +++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.29675/libstorage-ng.changes 2024-12-19 21:40:32.404456333 +0100 @@ -1,0 +2,7 @@ +Thu Dec 19 09:53:24 UTC 2024 - aschn...@suse.com + +- merge gh#openSUSE/libstorage-ng#1003 +- update testcase for new snapper workflow +- 4.5.221 + +-------------------------------------------------------------------- Old: ---- libstorage-ng-4.5.220.tar.xz New: ---- libstorage-ng-4.5.221.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libstorage-ng.spec ++++++ --- /var/tmp/diff_new_pack.loLRME/_old 2024-12-19 21:40:33.984521825 +0100 +++ /var/tmp/diff_new_pack.loLRME/_new 2024-12-19 21:40:34.004522654 +0100 @@ -18,7 +18,7 @@ %define libname %{name}1 Name: libstorage-ng -Version: 4.5.220 +Version: 4.5.221 Release: 0 Summary: Library for storage management License: GPL-2.0-only ++++++ libstorage-ng-4.5.220.tar.xz -> libstorage-ng-4.5.221.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.220/VERSION new/libstorage-ng-4.5.221/VERSION --- old/libstorage-ng-4.5.220/VERSION 2024-12-04 13:12:41.000000000 +0100 +++ new/libstorage-ng-4.5.221/VERSION 2024-12-19 10:53:24.000000000 +0100 @@ -1 +1 @@ -4.5.220 +4.5.221 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.5.220/integration-tests/install/install-btrfs-new.py new/libstorage-ng-4.5.221/integration-tests/install/install-btrfs-new.py --- old/libstorage-ng-4.5.220/integration-tests/install/install-btrfs-new.py 2024-12-04 13:12:41.000000000 +0100 +++ new/libstorage-ng-4.5.221/integration-tests/install/install-btrfs-new.py 2024-12-19 10:53:24.000000000 +0100 @@ -6,6 +6,7 @@ import sys sys.path += ["/usr/lib64/python3.11/site-packages"] +import subprocess from storage import * @@ -93,8 +94,8 @@ at_subvolume = top_level.create_btrfs_subvolume("@") -# The following code does not rely on the snapper installation-helper. The procedure is untested. -# Also some code to make snapper work afterwards is missing. +# The following code relies only partial the snapper installation-helper +# (only on the 'config' step but not on the 'filesystem' step). class Subvolume(): def __init__(self, path, nocow = False, mount = True, default = False, subvolumes = []): @@ -133,5 +134,4 @@ print(exception.what()) -# After package installation the call 'installation-helper --step -# <does-not-exist-yet>' is needed. +subprocess.run([ "/usr/lib/snapper/installation-helper", "--root", "/mnt", "--step", "config" ])