Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Jan 2017 19:36:36 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r431024 - head/sysutils/zap
Message-ID:  <201701091936.v09JaaIF049987@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.
 =============================================================



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701091936.v09JaaIF049987>