Hello community, here is the log from the commit of package rsnapshot for openSUSE:Factory checked in at 2020-09-21 17:20:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rsnapshot (Old) and /work/SRC/openSUSE:Factory/.rsnapshot.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rsnapshot" Mon Sep 21 17:20:43 2020 rev:26 rq:835275 version:1.4.3 Changes: -------- --- /work/SRC/openSUSE:Factory/rsnapshot/rsnapshot.changes 2019-08-09 16:54:36.769451029 +0200 +++ /work/SRC/openSUSE:Factory/.rsnapshot.new.4249/rsnapshot.changes 2020-09-21 17:24:09.087962518 +0200 @@ -1,0 +2,14 @@ +Mon Aug 24 18:57:26 UTC 2020 - Dirk Mueller <[email protected]> + +- update to 1.4.3: + - Fixes and minor updates to Pod / man page. + - Adds more tests. + - Restore rsync error code 23 as an important warning. + - Fixes shortargs appending. + - Non-LVM backup source breaks after LVM backup source. + - Update rsnapreport.pl utility script to work with rsync >= 3.1.0 stats and bytes changes. +- remove rsnapreport_rsync_output.patch, rsnapshot-lvm-undef.patch: upstream +- add skip-ssh-test.patch (ignore ssh test failure on envs without network) +- tighten find/sed on usr/local to not touch automake related files + +------------------------------------------------------------------- Old: ---- rsnapreport_rsync_output.patch rsnapshot-1.4.2.tar.gz rsnapshot-lvm-undef.patch New: ---- rsnapshot-1.4.3.tar.gz skip-ssh-test.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rsnapshot.spec ++++++ --- /var/tmp/diff_new_pack.bKz4HF/_old 2020-09-21 17:24:11.579964440 +0200 +++ /var/tmp/diff_new_pack.bKz4HF/_new 2020-09-21 17:24:11.583964444 +0200 @@ -1,7 +1,7 @@ # # spec file for package rsnapshot # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: rsnapshot -Version: 1.4.2 +Version: 1.4.3 Release: 0 Summary: Backup program using hardlinks License: GPL-2.0-or-later @@ -26,10 +26,9 @@ Source0: https://github.com/rsnapshot/rsnapshot/releases/download/%{version}/%{name}-%{version}.tar.gz Source1: rsnapshot.logrotate Patch1: rsnapshot-config.patch -Patch2: rsnapshot-lvm-undef.patch +Patch2: skip-ssh-test.patch Patch3: remove-dead-external-css-link.patch -Patch4: rsnapreport_rsync_output.patch -Patch5: backup_pgsql.patch +Patch4: backup_pgsql.patch BuildRequires: logrotate BuildRequires: openssh BuildRequires: perl @@ -59,7 +58,8 @@ %build # replace hardcoded /usr/local -find . -type f -exec sed -i "s|usr/local|usr|g" {} + +find docs utils *pl *md *in -type f -exec sed -i "s|usr/local|usr|g" {} + + %configure make %{?_smp_mflags} ++++++ rsnapshot-1.4.2.tar.gz -> rsnapshot-1.4.3.tar.gz ++++++ ++++ 10097 lines of diff (skipped) ++++++ skip-ssh-test.patch ++++++ >From b708125c2f7e4cf005117e9db4d1633af14f6c2e Mon Sep 17 00:00:00 2001 From: Robert Scheck <[email protected]> Date: Wed, 11 Dec 2019 00:55:33 +0100 Subject: [PATCH] Skip both SSH tests (rather one) if SSH doesn't work Bug was introduced with PR #231 (in order to address issue #212) --- t/ssh_args/ssh_args.t.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/ssh_args/ssh_args.t.in b/t/ssh_args/ssh_args.t.in index e30b87e..3772d6e 100644 --- a/t/ssh_args/ssh_args.t.in +++ b/t/ssh_args/ssh_args.t.in @@ -11,7 +11,7 @@ ok(! remove_snapshot_root(), SKIP: { my $ssh_test = "@SSH@ -p 22 -o StrictHostKeyChecking=no @TEST_SSH_USER@\@localhost true"; my $cant_ssh = system("$ssh_test"); - skip("Cant SSH with \"$ssh_test\"", 1) if ($cant_ssh); + skip("Cant SSH with \"$ssh_test\"", 2) if ($cant_ssh); ok(!rsnapshot("-c @TEST@/ssh_args/conf/ssh_args.conf hourly"), "ssh_args parsed"); ok(!rsnapshot("-c @TEST@/ssh_args/conf/ssh_args_inline.conf hourly"), "ssh_args_inline parsed"); }
