From owner-svn-ports-all@FreeBSD.ORG Thu Feb 6 16:37:43 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7654106; Thu, 6 Feb 2014 16:37:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A014919A2; Thu, 6 Feb 2014 16:37:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s16GbhPr020115; Thu, 6 Feb 2014 16:37:43 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s16GbgC9020111; Thu, 6 Feb 2014 16:37:42 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201402061637.s16GbgC9020111@svn.freebsd.org> From: Pawel Pekala Date: Thu, 6 Feb 2014 16:37:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343124 - in head/sysutils: . zsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Feb 2014 16:37:43 -0000 Author: pawel Date: Thu Feb 6 16:37:42 2014 New Revision: 343124 URL: http://svnweb.freebsd.org/changeset/ports/343124 QAT: https://qat.redports.org/buildarchive/r343124/ Log: zsd (ZFS snapshot destroyer) is a zfs(8) wrapper to destroy snapshots on a given dataset using a more convenient interface. The number of snapshots to destroy can be specified directly, or indirectly by specifying the number of snapshots that should be kept. It goes nicely with zogftw's zogftw_snapshot_successfully_sent_hook() to grow a certain number of snapshots on new datasets while keeping the number of snapshots on old datasets constant. WWW: http://www.fabiankeil.de/gehacktes/zsd/ PR: ports/183531 Submitted by: Fabian Keil Added: head/sysutils/zsd/ head/sysutils/zsd/Makefile (contents, props changed) head/sysutils/zsd/distinfo (contents, props changed) head/sysutils/zsd/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Feb 6 16:34:40 2014 (r343123) +++ head/sysutils/Makefile Thu Feb 6 16:37:42 2014 (r343124) @@ -1072,6 +1072,7 @@ SUBDIR += zisofs-tools SUBDIR += zogftw SUBDIR += zrep + SUBDIR += zsd SUBDIR += zxfer .include Added: head/sysutils/zsd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zsd/Makefile Thu Feb 6 16:37:42 2014 (r343124) @@ -0,0 +1,26 @@ +# Created by: Fabian Keil +# $FreeBSD$ + +PORTNAME= zsd +PORTVERSION= 0.0.2013.10.08 +CATEGORIES= sysutils +MASTER_SITES= http://www.fabiankeil.de/sourcecode/zfs-snapshot-destroyer/ +DISTNAME= ${PORTNAME}-2013-10-08-f7cd2b3 + +MAINTAINER= fk@fabiankeil.de +COMMENT= Destroys ZFS snapshots + +PLIST_FILES= sbin/zsd \ + man/man8/zsd.8.gz + +PORTSCOUT= ignore:1 + +USES= perl5 shebangfix +SHEBANG_FILES= zsd +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/zsd ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/zsd.8 ${STAGEDIR}${MANPREFIX}/man/man8 + +.include Added: head/sysutils/zsd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zsd/distinfo Thu Feb 6 16:37:42 2014 (r343124) @@ -0,0 +1,2 @@ +SHA256 (zsd-2013-10-08-f7cd2b3.tar.gz) = e4deddc71afc7f9708a12bdcde54f3317774624541f28159f708d5c657fcfe03 +SIZE (zsd-2013-10-08-f7cd2b3.tar.gz) = 6462 Added: head/sysutils/zsd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zsd/pkg-descr Thu Feb 6 16:37:42 2014 (r343124) @@ -0,0 +1,11 @@ +zsd (ZFS snapshot destroyer) is a zfs(8) wrapper to destroy snapshots +on a given dataset using a more convenient interface. + +The number of snapshots to destroy can be specified directly, or +indirectly by specifying the number of snapshots that should be kept. + +It goes nicely with zogftw's zogftw_snapshot_successfully_sent_hook() +to grow a certain number of snapshots on new datasets while keeping the +number of snapshots on old datasets constant. + +WWW: http://www.fabiankeil.de/gehacktes/zsd/