From owner-svn-ports-all@freebsd.org Sun Feb 5 23:14:55 2017 Return-Path: Delivered-To: svn-ports-all@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 7D466CD2F3C; Sun, 5 Feb 2017 23:14:55 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2BFC1028; Sun, 5 Feb 2017 23:14:54 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id 7c67aa03 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Sun, 5 Feb 2017 16:14:53 -0700 (MST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: svn commit: r433457 - in head/security: . git-crypt From: Adam Weinberger In-Reply-To: <201702052121.v15LLI9a082597@repo.freebsd.org> Date: Sun, 5 Feb 2017 16:14:50 -0700 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <201702052121.v15LLI9a082597@repo.freebsd.org> To: Ashish SHUKLA X-Mailer: Apple Mail (2.3259) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 05 Feb 2017 23:14:55 -0000 > On 5 Feb, 2017, at 14:21, Ashish SHUKLA wrote: >=20 > Author: ashish > Date: Sun Feb 5 21:21:18 2017 > New Revision: 433457 > URL: https://svnweb.freebsd.org/changeset/ports/433457 >=20 > Log: > git-crypt enables transparent encryption and decryption of files in a > git repository. Files which you choose to protect are encrypted when > committed, and decrypted when checked out. git-crypt lets you freely > share a repository containing a mix of public and private > content. git-crypt gracefully degrades, so developers without the > secret key can still clone and commit to a repository with encrypted > files. This lets you store your secret material (such as keys or > passwords) in the same repository as your code, without requiring you > to lock down your entire repository. >=20 > WWW: https://www.agwa.name/projects/git-crypt/ >=20 > Added: > head/security/git-crypt/ > head/security/git-crypt/Makefile (contents, props changed) > head/security/git-crypt/distinfo (contents, props changed) > head/security/git-crypt/pkg-descr (contents, props changed) > Modified: > head/security/Makefile >=20 > Modified: head/security/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/security/Makefile Sun Feb 5 21:20:24 2017 = (r433456) > +++ head/security/Makefile Sun Feb 5 21:21:18 2017 = (r433457) > @@ -164,6 +164,7 @@ > SUBDIR +=3D gag > SUBDIR +=3D gcipher > SUBDIR +=3D gcr > + SUBDIR +=3D git-crypt > SUBDIR +=3D gnome-gpg > SUBDIR +=3D gnome-keyring > SUBDIR +=3D gnome-keyring-sharp >=20 > Added: head/security/git-crypt/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/git-crypt/Makefile Sun Feb 5 21:21:18 2017 = (r433457) > @@ -0,0 +1,43 @@ > +# Created by: Ashish SHUKLA > +# $FreeBSD$ > + > +PORTNAME=3D git-crypt > +PORTVERSION=3D 0.5.0 > +CATEGORIES=3D security > +MASTER_SITES=3D = https://www.agwa.name/projects/git-crypt/downloads/ \ > + LOCAL/ashish/ > + > +MAINTAINER=3D ashish@FreeBSD.org > +COMMENT=3D Transparent file encryption in git > + > +LICENSE=3D GPLv3 > +LICENSE_FILE=3D ${WRKSRC}/COPYING > + > +RUN_DEPENDS=3D git:devel/git \ > + gpg:security/gnupg > + > +OPTIONS_DEFINE=3D DOCS > + > +LDFLAGS+=3D -L${OPENSSLLIB} > +MAKE_ENV+=3D PREFIX=3D${PREFIX} "CXXFLAGS=3D${CXXFLAGS}" \ > + "LDFLAGS=3D${LDFLAGS}" > + > +DOCS_BUILD_DEPENDS=3D xsltproc:textproc/libxslt \ > + docbook-xsl>=3D0:textproc/docbook-xsl > +DOCS_MAKE_ARGS=3D ENABLE_MAN=3Dyes \ > + MANDIR=3D${MANPREFIX}/man \ > + = DOCBOOK_XSL=3D${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl > +DOCS_PLIST_FILES=3D man/man1/${PORTNAME}.1.gz That should probably be MANPAGES, not DOCS. # Adam =E2=80=94 Adam Weinberger adamw@adamw.org http://www.adamw.org