From owner-svn-ports-head@freebsd.org Mon Jan 9 19:36:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 148F7CA60CE; Mon, 9 Jan 2017 19:36:38 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC3B81D4D; Mon, 9 Jan 2017 19:36:37 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v09Jab72049990; Mon, 9 Jan 2017 19:36:37 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v09JaaIF049987; Mon, 9 Jan 2017 19:36:36 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201701091936.v09JaaIF049987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Mon, 9 Jan 2017 19:36:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431024 - head/sysutils/zap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jan 2017 19:36:38 -0000 Author: jrm Date: Mon Jan 9 19:36:36 2017 New Revision: 431024 URL: https://svnweb.freebsd.org/changeset/ports/431024 Log: sysutils/zap: Update to version 0.6.4. Fix issues with replication. - Do not require all '-r dataset' arguments to be listed first. - Fix error checking. If only one argument to 'zap rep' was supplied, replication would silently fail. This required breaking the interface. Instead of zap rep|replicate [-dLSv] [[-r dataset]... [dataset]... remote_dest] the format is now zap rep|replicate [-dLSv] [remote_dest [-r] dataset [[-r] dataset]...]. Fix issue with destroy. - In 0.6.3 $zptn was updated in destroy() to be an extended regular expression. But, when a host was not supplied as an argument, grep -E was still being supplied with the initial $zptn value containing a basic regular expression. With 'zap snap', do not require all '-r dataset' arguments to be listed first. Reviewed by: AMDmi3 Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9086 Modified: head/sysutils/zap/Makefile head/sysutils/zap/distinfo head/sysutils/zap/pkg-message Modified: head/sysutils/zap/Makefile ============================================================================== --- head/sysutils/zap/Makefile Mon Jan 9 19:35:40 2017 (r431023) +++ head/sysutils/zap/Makefile Mon Jan 9 19:36:36 2017 (r431024) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= zap -PORTVERSION= 0.6.3 +PORTVERSION= 0.6.4 CATEGORIES= sysutils MAINTAINER= jrm@FreeBSD.org Modified: head/sysutils/zap/distinfo ============================================================================== --- head/sysutils/zap/distinfo Mon Jan 9 19:35:40 2017 (r431023) +++ head/sysutils/zap/distinfo Mon Jan 9 19:36:36 2017 (r431024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483758682 -SHA256 (Jehops-zap-0.6.3_GH0.tar.gz) = 5bcb028edf1988a30d59b8128eb84b2effbf08db7f2b2ef3fd21cdad38c1de64 -SIZE (Jehops-zap-0.6.3_GH0.tar.gz) = 6464 +TIMESTAMP = 1483853087 +SHA256 (Jehops-zap-0.6.4_GH0.tar.gz) = 7d8299720f8e6240a4dfbe7489b19207109a9ff94c18b1aef6dc9edbab75bfeb +SIZE (Jehops-zap-0.6.4_GH0.tar.gz) = 6633 Modified: head/sysutils/zap/pkg-message ============================================================================== --- head/sysutils/zap/pkg-message Mon Jan 9 19:35:40 2017 (r431023) +++ head/sysutils/zap/pkg-message Mon Jan 9 19:36:36 2017 (r431024) @@ -1,7 +1,22 @@ ============================================================= -WARNING! +Version 0.6.4 +------------- -The command line arguments and the format of zap snapshot -names changed in version 0.6.0! The name change means you -will have to manually clean up old zap snapshots. +The replication arguments have changed. When one or more +datasets and a destination are supplied, the destination now +comes before the list of datasets. + + zap rep|replicate [-dLSv] [dest [-r] dataset [[-r] + dataset]...]. + + +Version 0.6.0 +------------- + +The command line arguments have changed. Run zap without +arguments for the updated format. + +The format of zap snapshot names has changed. This means +zap snapshots generated by older zap versions must be +manually destroyed. =============================================================