svn commit: r451549 - in head/security: . git-remote-gcrypt
Ashish SHUKLA
ashish at FreeBSD.org
Sun Oct 8 15:37:05 UTC 2017
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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= git-remote-gcrypt
+PORTVERSION= 1.0.2
+CATEGORIES= security
+
+MAINTAINER= ashish at 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/
More information about the svn-ports-head
mailing list