Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package transactional-update for
openSUSE:Factory checked in at 2026-05-18 17:49:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/transactional-update (Old)
and /work/SRC/openSUSE:Factory/.transactional-update.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "transactional-update"
Mon May 18 17:49:32 2026 rev:130 rq:1353797 version:6.1.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/transactional-update/transactional-update.changes
2026-05-17 18:56:35.491731928 +0200
+++
/work/SRC/openSUSE:Factory/.transactional-update.new.1966/transactional-update.changes
2026-05-18 17:50:51.947369400 +0200
@@ -1,0 +2,6 @@
+Mon May 18 11:24:16 UTC 2026 - Ignaz Forster <[email protected]>
+
+- Version 6.1.1:
+ * Fix broken rsync command during /etc sync for apply-oci
+
+-------------------------------------------------------------------
Old:
----
transactional-update-6.1.0.tar.gz
New:
----
transactional-update-6.1.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ transactional-update.spec ++++++
--- /var/tmp/diff_new_pack.SwkkaR/_old 2026-05-18 17:50:52.943410656 +0200
+++ /var/tmp/diff_new_pack.SwkkaR/_new 2026-05-18 17:50:52.947410822 +0200
@@ -26,7 +26,7 @@
%{!?_distconfdir: %global _distconfdir %{_prefix}%{_sysconfdir}}
Name: transactional-update
-Version: 6.1.0
+Version: 6.1.1
Release: 0
Summary: Transactional Updates with btrfs and snapshots
License: GPL-2.0-or-later AND LGPL-2.1-or-later
++++++ transactional-update-6.1.0.tar.gz -> transactional-update-6.1.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/transactional-update-6.1.0/NEWS
new/transactional-update-6.1.1/NEWS
--- old/transactional-update-6.1.0/NEWS 2026-05-15 23:17:45.000000000 +0200
+++ new/transactional-update-6.1.1/NEWS 2026-05-18 13:20:42.000000000 +0200
@@ -1,6 +1,10 @@
transactional-update NEWS -- history of user-visible changes.
Copyright (C) 2016-2025 Thorsten Kukuk, Ignaz Forster et al.
+
+Version 6.1.1 (2026-05-18)
+* apply-oci: fix broken rsync command for /etc sync
+
Version 6.1.0 (2026-05-15)
* t-u: Reintroduce kdump command for fadump functionality
* t-u: Fix skipped error paths due to querying wrong return code
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/transactional-update-6.1.0/configure.ac
new/transactional-update-6.1.1/configure.ac
--- old/transactional-update-6.1.0/configure.ac 2026-05-15 23:17:45.000000000
+0200
+++ new/transactional-update-6.1.1/configure.ac 2026-05-18 13:20:42.000000000
+0200
@@ -1,12 +1,12 @@
dnl Process this file with autoconf to produce a configure script.
# Semantic versioning, increase major version on incompatible interface change
-AC_INIT([transactional-update],[6.1.0])
+AC_INIT([transactional-update],[6.1.1])
# Increase on any interface change and reset revision
LIBTOOL_CURRENT=9
# On interface change increase if backwards compatible, reset otherwise
LIBTOOL_AGE=1
# Increase on *any* C/C++ library code change, reset at interface change
-LIBTOOL_REVISION=0
+LIBTOOL_REVISION=1
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_FILES([tukit.pc])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/transactional-update-6.1.0/lib/Snapshot/Podman.cpp
new/transactional-update-6.1.1/lib/Snapshot/Podman.cpp
--- old/transactional-update-6.1.0/lib/Snapshot/Podman.cpp 2026-05-15
23:17:45.000000000 +0200
+++ new/transactional-update-6.1.1/lib/Snapshot/Podman.cpp 2026-05-18
13:20:42.000000000 +0200
@@ -33,8 +33,8 @@
excludes += " --exclude ";
excludes += path.string();
}
- Util::exec("rsync --delete --archive --hard-links --xattrs --acls
--inplace --one-file-system " + excludes + ocimount + "/ " + getRoot().string()
+ "/");
- Util::exec("rsync --delete --archive --hard-links --xattrs --acls
--inplace --one-file-system --ignore-existing " + ocimount + "/etc/ " +
getRoot().string() + "/etc/");
+ Util::exec("rsync --delete --archive --hard-links --xattrs --acls
--inplace --one-file-system " + excludes + " " + ocimount + "/ " +
getRoot().string() + "/");
+ Util::exec("rsync --archive --hard-links --xattrs --acls --inplace
--one-file-system --ignore-existing " + ocimount + "/etc/ " +
getRoot().string() + "/etc/");
tulog.info("Merging /etc from container image into existing snapshot,
preserving existing configuration...");
Util::exec("podman image unmount " + oci_target);
Util::exec("touch " + getRoot().string() + "/.autorelabel");