Received: by mail.netbsd.org (Postfix, from userid 605) id 89C0584DC2; Thu, 25 Aug 2022 10:34:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C379484D47 for ; Thu, 25 Aug 2022 10:34:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id U80voIf0Sfhs for ; Thu, 25 Aug 2022 10:34:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 17CC784CFF for ; Thu, 25 Aug 2022 10:34:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 11380F9E8; Thu, 25 Aug 2022 10:34:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1661423656147030" MIME-Version: 1.0 Date: Thu, 25 Aug 2022 10:34:16 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/sysutils/znapzend To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20220825103416.11380F9E8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1661423656147030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Thu Aug 25 10:34:15 UTC 2022 Modified Files: pkgsrc/sysutils/znapzend: Makefile PLIST distinfo Log Message: Updated sysutils/znapzend to 0.21.1 (Resolves https://github.com/oetiker/znapzend/issues/541) ZnapZend 0.21.0 - updated install instructions see README.md - new options for znapzend - --forbidDestRollback forbids forcing destination dataset rollback and removal of datasets/snapshots not present on source - --since=x allow to consider a non-automatic common snapshot "x" as a starting point - --sinceForced=x same as --since=x but also make sure "x" exists on destination (can cause removal of newer snapshots) - --cleanOffline clean up source snapshots even if a destination was offline - --mailErrorSummaryTo=rcpt if "send task(s) failed", mail a summary to rcpt - new --feature=x flags for znapzend sendIntermediates forbidDestRollback - an a ton of bugfixes for all sorts of edge cases A big Thank You! to Jim Klimov @jimkilmov who contributed a lot of time and code to this release ZnapZend 0.21.1 - fixed delay redefined warning - check if retention plans are sensible (error out on retention shorter than - interval in retention=>interval expressions) - fix mail program call sequence #540 -- @oetiker, @gchmurka123 - make aborted recv resumable using the resume fature -- @aarononeal To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/sysutils/znapzend/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/znapzend/PLIST cvs rdiff -u -r1.18 -r1.19 pkgsrc/sysutils/znapzend/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1661423656147030 Content-Disposition: inline Content-Length: 2673 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/znapzend/Makefile diff -u pkgsrc/sysutils/znapzend/Makefile:1.22 pkgsrc/sysutils/znapzend/Makefile:1.23 --- pkgsrc/sysutils/znapzend/Makefile:1.22 Tue Jun 28 11:36:07 2022 +++ pkgsrc/sysutils/znapzend/Makefile Thu Aug 25 10:34:15 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.22 2022/06/28 11:36:07 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2022/08/25 10:34:15 abs Exp $ -DISTNAME= znapzend-0.20.0 -PKGREVISION= 4 +DISTNAME= znapzend-0.21.1 CATEGORIES= sysutils +GITHUB_RELEASE= v${PKGVERSION_NOREV} MASTER_SITES= ${MASTER_SITE_GITHUB:=oetiker/} MAINTAINER= wiedi@frubar.net @@ -18,7 +18,7 @@ USE_TOOLS+= perl gmake autoreconf autoco TEST_TARGET= check -DEPENDS+= p5-Mojolicious>=6.46:../../www/p5-Mojolicious +DEPENDS+= p5-Mojolicious>=9.03:../../www/p5-Mojolicious DEPENDS+= p5-Mojo-IOLoop-ForkCall>=0.17:../../devel/p5-Mojo-IOLoop-ForkCall DEPENDS+= p5-Scalar-List-Utils>=1.45:../../devel/p5-Scalar-List-Utils Index: pkgsrc/sysutils/znapzend/PLIST diff -u pkgsrc/sysutils/znapzend/PLIST:1.1 pkgsrc/sysutils/znapzend/PLIST:1.2 --- pkgsrc/sysutils/znapzend/PLIST:1.1 Sat Aug 30 11:03:11 2014 +++ pkgsrc/sysutils/znapzend/PLIST Thu Aug 25 10:34:15 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2014/08/30 11:03:11 wiedi Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/08/25 10:34:15 abs Exp $ bin/znapzend bin/znapzendzetup bin/znapzendztatz @@ -6,6 +6,7 @@ lib/ZnapZend.pm lib/ZnapZend/Config.pm lib/ZnapZend/Time.pm lib/ZnapZend/ZFS.pm +lib/inheritLevels.pm man/man1/znapzend.1 man/man1/znapzendzetup.1 man/man1/znapzendztatz.1 Index: pkgsrc/sysutils/znapzend/distinfo diff -u pkgsrc/sysutils/znapzend/distinfo:1.18 pkgsrc/sysutils/znapzend/distinfo:1.19 --- pkgsrc/sysutils/znapzend/distinfo:1.18 Tue Oct 26 11:20:30 2021 +++ pkgsrc/sysutils/znapzend/distinfo Thu Aug 25 10:34:15 2022 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.18 2021/10/26 11:20:30 nia Exp $ +$NetBSD: distinfo,v 1.19 2022/08/25 10:34:15 abs Exp $ -BLAKE2s (znapzend-0.20.0.tar.gz) = ad8f05151c1d9d12d1b45e204c856b0a2f2b43b85bbad19769fdc5f2a9000ca5 -SHA512 (znapzend-0.20.0.tar.gz) = 5168b39d1cb21a9eddd49726f9e823ebbf449c73ee499a82ac8cf3b5a72be654054b01f42aa240d44e1ae644afb641e8d7e36aaeed45a46b7e4cd5c46d57bd0b -Size (znapzend-0.20.0.tar.gz) = 165742 bytes +BLAKE2s (znapzend-0.21.1.tar.gz) = ec4ac40bb47859d56d3d6b5870231a4e3ba4d5e1b2935fdc940187fd664858f0 +SHA512 (znapzend-0.21.1.tar.gz) = 2fd39109d6967d8dc434c346f7ba6d912519d71294dcc017a90727e56250298d753671986ed34e72fb45eb20fb17aa62945af055df17f2cc1ab04cd28369c649 +Size (znapzend-0.21.1.tar.gz) = 361516 bytes SHA1 (patch-Makefile.am) = 9f6f4e936ef84b08131884699d0fb8399b4dc67c --_----------=_1661423656147030--