From owner-svn-ports-head@freebsd.org Sun Oct 8 15:37:05 2017 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 6679AE389C4; Sun, 8 Oct 2017 15:37:05 +0000 (UTC) (envelope-from ashish@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 13877634D8; Sun, 8 Oct 2017 15:37:04 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v98Fb3j5045345; Sun, 8 Oct 2017 15:37:03 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v98Fb3Cj045340; Sun, 8 Oct 2017 15:37:03 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <201710081537.v98Fb3Cj045340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Sun, 8 Oct 2017 15:37:03 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: ashish X-SVN-Commit-Paths: in head/security: . git-remote-gcrypt X-SVN-Commit-Revision: 451549 X-SVN-Commit-Repository: ports 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.23 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: Sun, 08 Oct 2017 15:37:05 -0000 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 +# $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 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/