Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package backintime for openSUSE:Factory checked in at 2022-11-27 12:52:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/backintime (Old) and /work/SRC/openSUSE:Factory/.backintime.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "backintime" Sun Nov 27 12:52:59 2022 rev:27 rq:1038369 version:1.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/backintime/backintime.changes 2022-08-17 18:33:58.060741047 +0200 +++ /work/SRC/openSUSE:Factory/.backintime.new.1597/backintime.changes 2022-11-27 12:53:12.847271339 +0100 @@ -1,0 +2,7 @@ +Sat Nov 19 22:16:35 UTC 2022 - Tejas Guruswamy <tejas.gurusw...@opensuse.org> + +- add backintime-rsync324_args.patch for Tumbleweed + + rsync 3.2.4 changes argument syntax; workaround until next release of backintime +- require notify-send (libnotify-tools) for error messages + +------------------------------------------------------------------- New: ---- backintime-rsync324_args.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ backintime.spec ++++++ --- /var/tmp/diff_new_pack.yUbMsB/_old 2022-11-27 12:53:13.431274727 +0100 +++ /var/tmp/diff_new_pack.yUbMsB/_new 2022-11-27 12:53:13.435274751 +0100 @@ -29,6 +29,8 @@ Source3: %{name}.png # PATCH-FEATURE-OPENSUSE %%{name}-polkit_priv_downgrade.patch boo#1007723 Patch0: %{name}-polkit_priv_downgrade.patch +# PATCH-FIX-UPSTREAM %%{name}-rsync324_args.patch rsync-3.2.4 on TW changes argument syntax; workaround until new release of backintime +Patch1: %{name}-rsync324_args.patch BuildRequires: fdupes BuildRequires: hicolor-icon-theme BuildRequires: python3-devel @@ -44,6 +46,7 @@ Requires: rsync Recommends: encfs Recommends: sshfs +Requires: libnotify-tools Conflicts: backintime-gnome Conflicts: backintime-kde Obsoletes: backintime-doc < %{version} @@ -77,6 +80,10 @@ %prep %setup -q %patch0 +# rsync-3.2.4 on TW changes argument syntax; workaround until new release of backintime +%if 0%{?suse_version} > 1500 +%patch1 +%endif %build ++++++ backintime-rsync324_args.patch ++++++ --- common/backintime.orig +++ common/backintime @@ -24,4 +24,7 @@ else APP_PATH=$(readlink -m "${CUR_PATH}/../share/backintime/common") fi +export RSYNC_OLD_ARGS=1 +export RSYNC_PROTECT_ARGS=0 + python3 -Es $APP_PATH/backintime.py "$@" --- qt/backintime-qt.orig +++ qt/backintime-qt @@ -28,4 +28,7 @@ else APP_PATH=$(readlink -m "${CUR_PATH}/../share/backintime/qt") fi +export RSYNC_OLD_ARGS=1 +export RSYNC_PROTECT_ARGS=0 + python3 -Es ${APP_PATH}/app.py "$@" --- qt/backintime-qt_polkit.orig +++ qt/backintime-qt_polkit @@ -6,4 +6,7 @@ else PREFIX="" fi +export RSYNC_OLD_ARGS=1 +export RSYNC_PROTECT_ARGS=0 + pkexec --disable-internal-agent $PREFIX "/usr/bin/backintime-qt" "$@"