From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 9 14:10:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 10F5CE61 for ; Sat, 9 Feb 2013 14:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 03FABC1F for ; Sat, 9 Feb 2013 14:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r19EA1Wx067094 for ; Sat, 9 Feb 2013 14:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r19EA1MR067093; Sat, 9 Feb 2013 14:10:01 GMT (envelope-from gnats) Date: Sat, 9 Feb 2013 14:10:01 GMT Message-Id: <201302091410.r19EA1MR067093@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175127: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2013 14:10:02 -0000 The following reply was made to PR ports/175127; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175127: commit references a PR Date: Sat, 9 Feb 2013 14:00:38 +0000 (UTC) Author: miwi Date: Sat Feb 9 14:00:30 2013 New Revision: 311976 URL: http://svnweb.freebsd.org/changeset/ports/311976 Log: zogftw makes using multiple geli-encrypted single-vdev ZFS pools for backups more convenient, mainly by automating creation, import and export of such pools and by synchronizing datasets without the user having to manually specify the names of the snapshots that should be sent. geli passphrases can be stored gpg-encrypted which allows importing several pools in a row without having to specify each passphrase manually. zogftw is extendable in shell. It can be sourced from other shell scripts or interactive shells. WWW: http://www.fabiankeil.de/gehacktes/zogftw/ PR: ports/175127 Submitted by: Fabian Keil Added: head/sysutils/zogftw/ head/sysutils/zogftw/Makefile (contents, props changed) head/sysutils/zogftw/distinfo (contents, props changed) head/sysutils/zogftw/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Feb 9 13:55:10 2013 (r311975) +++ head/sysutils/Makefile Sat Feb 9 14:00:30 2013 (r311976) @@ -1073,6 +1073,7 @@ SUBDIR += zfstools SUBDIR += zidrav SUBDIR += zisofs-tools + SUBDIR += zogftw SUBDIR += zxfer .include Added: head/sysutils/zogftw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zogftw/Makefile Sat Feb 9 14:00:30 2013 (r311976) @@ -0,0 +1,35 @@ +# Created by: Fabian Keil +# $FreeBSD$ + +PORTNAME= zogftw +PORTVERSION= 0.0.2013.01.08 +CATEGORIES= sysutils +MASTER_SITES= http://www.fabiankeil.de/sourcecode/zogftw/ +DISTNAME= ${PORTNAME}-2013-01-08-ebee83e + +MAINTAINER= fk@fabiankeil.de +COMMENT= Creates redundant backups on encrypted ZFS pools + +RUN_DEPENDS= mbuffer:${PORTSDIR}/misc/mbuffer \ + sudo:${PORTSDIR}/security/sudo + +OPTIONS_DEFINE= GNUPG +OPTIONS_DEFAULT= GNUPG + +PLIST_FILES= sbin/zogftw + +MAN8= zogftw.8 + +.include + +.if ${PORT_OPTIONS:MGNUPG} +RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg1 \ + gpg-agent:${PORTSDIR}/security/gnupg +.endif + +do-build: +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/zogftw ${PREFIX}/sbin/zogftw + ${INSTALL_MAN} ${WRKSRC}/zogftw.8 ${MAN8PREFIX}/man/man8 + +.include Added: head/sysutils/zogftw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zogftw/distinfo Sat Feb 9 14:00:30 2013 (r311976) @@ -0,0 +1,2 @@ +SHA256 (zogftw-2013-01-08-ebee83e.tar.gz) = 892bfbda2c193c25cb27b6f7941ebf2581ba6f7174a804ce6f2e3a8f778c4aad +SIZE (zogftw-2013-01-08-ebee83e.tar.gz) = 15292 Added: head/sysutils/zogftw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zogftw/pkg-descr Sat Feb 9 14:00:30 2013 (r311976) @@ -0,0 +1,14 @@ +zogftw makes using multiple geli-encrypted single-vdev ZFS pools +for backups more convenient, mainly by automating creation, import +and export of such pools and by synchronizing datasets without the +user having to manually specify the names of the snapshots that +should be sent. + +geli passphrases can be stored gpg-encrypted which allows importing +several pools in a row without having to specify each passphrase +manually. + +zogftw is extendable in shell. It can be sourced from other shell +scripts or interactive shells. + +WWW: http://www.fabiankeil.de/gehacktes/zogftw/ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"