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 2021-10-08 22:04:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/transactional-update (Old) and /work/SRC/openSUSE:Factory/.transactional-update.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "transactional-update" Fri Oct 8 22:04:46 2021 rev:79 rq:923185 version:3.5.6 Changes: -------- --- /work/SRC/openSUSE:Factory/transactional-update/transactional-update.changes 2021-09-21 21:12:19.630583302 +0200 +++ /work/SRC/openSUSE:Factory/.transactional-update.new.2443/transactional-update.changes 2021-10-08 22:05:04.660563028 +0200 @@ -1,0 +2,7 @@ +Thu Sep 23 23:12:28 UTC 2021 - Ignaz Forster <ifors...@suse.com> + +- Version 3.5.6 + - tukit: Add S/390 bootloader support [bsc#1189807] + - t-u: support purge-kernels with t-u patch [bsc#1190788] + +------------------------------------------------------------------- Old: ---- transactional-update-3.5.5.tar.gz New: ---- transactional-update-3.5.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ transactional-update.spec ++++++ --- /var/tmp/diff_new_pack.UNjx4m/_old 2021-10-08 22:05:05.188563897 +0200 +++ /var/tmp/diff_new_pack.UNjx4m/_new 2021-10-08 22:05:05.188563897 +0200 @@ -26,7 +26,7 @@ %{!?_distconfdir: %global _distconfdir %{_prefix}%{_sysconfdir}} Name: transactional-update -Version: 3.5.5 +Version: 3.5.6 Release: 0 Summary: Transactional Updates with btrfs and snapshots License: GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ transactional-update-3.5.5.tar.gz -> transactional-update-3.5.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/transactional-update-3.5.5/NEWS new/transactional-update-3.5.6/NEWS --- old/transactional-update-3.5.5/NEWS 2021-09-17 15:57:31.000000000 +0200 +++ new/transactional-update-3.5.6/NEWS 2021-09-24 01:10:02.000000000 +0200 @@ -2,6 +2,10 @@ Copyright (C) 2016-2021 Thorsten Kukuk, Ignaz Forster et al. +Version 3.5.6 +* tukit: Add S/390 bootloader support [bsc#852640] +* t-u: support purge-kernels with t-u patch [bsc#1190788] + Version 3.5.5 * t-u: Use tukit for SUSEConnect call [bsc#1190574] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/transactional-update-3.5.5/configure.ac new/transactional-update-3.5.6/configure.ac --- old/transactional-update-3.5.5/configure.ac 2021-09-17 15:57:31.000000000 +0200 +++ new/transactional-update-3.5.6/configure.ac 2021-09-24 01:10:02.000000000 +0200 @@ -1,9 +1,9 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(transactional-update, 3.5.5) +AC_INIT(transactional-update, 3.5.6) # Increase on any interface change and reset revision LIBTOOL_CURRENT=3 # Increase or reset on any VERSION update -LIBTOOL_REVISION=3 +LIBTOOL_REVISION=4 # Increase if interface change is backwards compatible, reset otherwise LIBTOOL_AGE=3 AC_CANONICAL_SYSTEM diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/transactional-update-3.5.5/lib/Transaction.cpp new/transactional-update-3.5.6/lib/Transaction.cpp --- old/transactional-update-3.5.5/lib/Transaction.cpp 2021-09-17 15:57:31.000000000 +0200 +++ new/transactional-update-3.5.6/lib/Transaction.cpp 2021-09-24 01:10:02.000000000 +0200 @@ -128,6 +128,8 @@ } if (BindMount{"/boot/efi"}.isMount()) dirsToMount.push_back(std::make_unique<BindMount>("/boot/efi")); + if (BindMount{"/boot/zipl"}.isMount()) + dirsToMount.push_back(std::make_unique<BindMount>("/boot/zipl")); dirsToMount.push_back(std::make_unique<PropagatedBindMount>("/proc")); dirsToMount.push_back(std::make_unique<PropagatedBindMount>("/sys")); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/transactional-update-3.5.5/sbin/transactional-update.in new/transactional-update-3.5.6/sbin/transactional-update.in --- old/transactional-update-3.5.5/sbin/transactional-update.in 2021-09-17 15:57:31.000000000 +0200 +++ new/transactional-update-3.5.6/sbin/transactional-update.in 2021-09-24 01:10:02.000000000 +0200 @@ -1339,7 +1339,7 @@ export DISABLE_RESTART_ON_UPDATE=yes ${zypper_cmd} ${ZYPPER_ARG} ${ZYPPER_NONINTERACTIVE} "${ZYPPER_ARG_PKGS[@]}" |& tee -a ${LOGFILE} RETVAL=${PIPESTATUS[0]} - if [ $RETVAL -eq 0 -a -n "${INCLUDES_KERNEL_PACKAGES}" ]; then + if [ \( $RETVAL -eq 0 -o $RETVAL -eq 102 -o $RETVAL -eq 103 \) -a -n "${INCLUDES_KERNEL_PACKAGES}" ]; then ${zypper_cmd} -n purge-kernels |& tee -a ${LOGFILE} fi fi