Date: Sun, 8 Oct 2017 15:37:03 +0000 (UTC) From: Ashish SHUKLA <ashish@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451549 - in head/security: . git-remote-gcrypt Message-ID: <201710081537.v98Fb3Cj045340@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ashish Date: Sun Oct 8 15:37:03 2017 New Revision: 451549 URL: https://svnweb.freebsd.org/changeset/ports/451549 Log: git-remote-gcrypt is a git remote helper to push and pull from repositories encrypted with GnuPG. It works with the standard git transports, including repository hosting services like GitHub. WWW: https://spwhitton.name/tech/code/git-remote-gcrypt/ Added: head/security/git-remote-gcrypt/ head/security/git-remote-gcrypt/Makefile (contents, props changed) head/security/git-remote-gcrypt/distinfo (contents, props changed) head/security/git-remote-gcrypt/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Oct 8 14:09:37 2017 (r451548) +++ head/security/Makefile Sun Oct 8 15:37:03 2017 (r451549) @@ -170,6 +170,7 @@ SUBDIR += gcipher SUBDIR += gcr SUBDIR += git-crypt + SUBDIR += git-remote-gcrypt SUBDIR += gnome-gpg SUBDIR += gnome-keyring SUBDIR += gnome-keyring-sharp Added: head/security/git-remote-gcrypt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-remote-gcrypt/Makefile Sun Oct 8 15:37:03 2017 (r451549) @@ -0,0 +1,34 @@ +# Created by: Ashish SHUKLA <ashish@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= git-remote-gcrypt +PORTVERSION= 1.0.2 +CATEGORIES= security + +MAINTAINER= ashish@FreeBSD.org +COMMENT= PGP-encrypt git remotes + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= rst2man:textproc/py-docutils +RUN_DEPENDS= rsync:net/rsync \ + curl:ftp/curl \ + gpg:security/gnupg + +USE_GITHUB= yes +GH_ACCOUNT= spwhitton +MAKE_ENV= DESTDIR=${STAGEDIR} + +NO_BUILD= + +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz + +post-extract: + @${REINPLACE_CMD} -e s,prefix/share/man,prefix/man, ${WRKSRC}/install.sh + +do-install: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${WRKSRC}/install.sh + +.include <bsd.port.mk> Added: head/security/git-remote-gcrypt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-remote-gcrypt/distinfo Sun Oct 8 15:37:03 2017 (r451549) @@ -0,0 +1,3 @@ +TIMESTAMP = 1507468770 +SHA256 (spwhitton-git-remote-gcrypt-1.0.2_GH0.tar.gz) = 002994d60d4b3c9a93452d2655bdf3e761c581159431f743d0827127d88f7be2 +SIZE (spwhitton-git-remote-gcrypt-1.0.2_GH0.tar.gz) = 26226 Added: head/security/git-remote-gcrypt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-remote-gcrypt/pkg-descr Sun Oct 8 15:37:03 2017 (r451549) @@ -0,0 +1,5 @@ +git-remote-gcrypt is a git remote helper to push and pull from +repositories encrypted with GnuPG. It works with the standard git +transports, including repository hosting services like GitHub. + +WWW: https://spwhitton.name/tech/code/git-remote-gcrypt/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710081537.v98Fb3Cj045340>