From owner-svn-ports-head@freebsd.org Tue Apr 5 18:00:10 2016 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 C20D1B049F0; Tue, 5 Apr 2016 18:00:10 +0000 (UTC) (envelope-from pi@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 84FD21F24; Tue, 5 Apr 2016 18:00:10 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u35I09Ap091269; Tue, 5 Apr 2016 18:00:09 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u35I09Lh091265; Tue, 5 Apr 2016 18:00:09 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604051800.u35I09Lh091265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 5 Apr 2016 18:00:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412578 - in 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.21 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: Tue, 05 Apr 2016 18:00:10 -0000 Author: pi Date: Tue Apr 5 18:00:09 2016 New Revision: 412578 URL: https://svnweb.freebsd.org/changeset/ports/412578 Log: New port: sysutils/zap Use zap to maintain ZFS snapshots with cron. - Uses neither configuration files nor custom ZFS properties - all information is supplied when zap is invoked and stored in snapshot names. - Uses namespaces to avoid collisions with other snapshots. - Creates and destroys snapshots only when it makes sense to. - Written in POSIX sh. WWW: https://github.com/Jehops/zap PR: 208495 Submitted by: Joseph Mingrone Added: head/sysutils/zap/ head/sysutils/zap/Makefile (contents, props changed) head/sysutils/zap/distinfo (contents, props changed) head/sysutils/zap/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Apr 5 17:47:29 2016 (r412577) +++ head/sysutils/Makefile Tue Apr 5 18:00:09 2016 (r412578) @@ -1200,6 +1200,7 @@ SUBDIR += xsysstats SUBDIR += xvidcap SUBDIR += yum + SUBDIR += zap SUBDIR += zbackup SUBDIR += zeitgeist SUBDIR += zeroer Added: head/sysutils/zap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zap/Makefile Tue Apr 5 18:00:09 2016 (r412578) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= zap +PORTVERSION= 0.1 +CATEGORIES= sysutils + +MAINTAINER= jrm@ftfl.ca +COMMENT= Maintain ZFS snapshots with cron + +LICENSE= BSD2CLAUSE + +NO_ARCH= yes +NO_BUILD= yes + +USE_GITHUB= yes +GH_ACCOUNT= Jehops +GH_TAGNAME= 0.1 + +PLIST_FILES= bin/zap %%PORTDOCS%%%%DOCSDIR%%/README.org + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/zap ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/zap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zap/distinfo Tue Apr 5 18:00:09 2016 (r412578) @@ -0,0 +1,2 @@ +SHA256 (Jehops-zap-0.1_GH0.tar.gz) = 31aa6f579c41e399646b54116bd33aeb1a1020c41436df3c66c4226d94206014 +SIZE (Jehops-zap-0.1_GH0.tar.gz) = 2487 Added: head/sysutils/zap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zap/pkg-descr Tue Apr 5 18:00:09 2016 (r412578) @@ -0,0 +1,10 @@ +Use zap to maintain ZFS snapshots with cron. + +- Uses neither configuration files nor custom ZFS properties +- all information is supplied when zap is invoked and stored in snapshot + names. +- Uses namespaces to avoid collisions with other snapshots. +- Creates and destroys snapshots only when it makes sense to. +- Written in POSIX sh. + +WWW: https://github.com/Jehops/zap