From owner-svn-ports-head@freebsd.org Sat Jan 19 03:01:21 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03DEF1492071; Sat, 19 Jan 2019 03:01:21 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0B338A2ED; Sat, 19 Jan 2019 03:01:20 +0000 (UTC) (envelope-from ler@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93ADFC552; Sat, 19 Jan 2019 03:01:20 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0J31KtS014688; Sat, 19 Jan 2019 03:01:20 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0J31J18014682; Sat, 19 Jan 2019 03:01:19 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201901190301.x0J31J18014682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Sat, 19 Jan 2019 03:01:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490698 - in head/security: . git-secret X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: in head/security: . git-secret X-SVN-Commit-Revision: 490698 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A0B338A2ED X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 19 Jan 2019 03:01:21 -0000 Author: ler Date: Sat Jan 19 03:01:19 2019 New Revision: 490698 URL: https://svnweb.freebsd.org/changeset/ports/490698 Log: security/git-secret: New Port. git-secret is a tool which stores private data inside a git repo. General information: git-secret encrypts tracked files with public keys for users whom you trust using gpg, allowing permitted users to access encrypted data using their secret keys. PR: 235056 Submitted by: joshr-freebsd@joshr.com Added: head/security/git-secret/ head/security/git-secret/Makefile (contents, props changed) head/security/git-secret/distinfo (contents, props changed) head/security/git-secret/pkg-descr (contents, props changed) head/security/git-secret/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jan 19 02:15:19 2019 (r490697) +++ head/security/Makefile Sat Jan 19 03:01:19 2019 (r490698) @@ -174,6 +174,7 @@ SUBDIR += gcr SUBDIR += git-crypt SUBDIR += git-remote-gcrypt + SUBDIR += git-secret SUBDIR += gnome-keyring SUBDIR += gnome-keyring-sharp SUBDIR += gnome-password-generator Added: head/security/git-secret/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-secret/Makefile Sat Jan 19 03:01:19 2019 (r490698) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= git-secret +DISTVERSION= 0.2.5 +CATEGORIES= security + +MAINTAINER= mail@sobolevn.me +COMMENT= Bash tool to store your private data inside a git repository + +LICENSE= MIT +#MASTER_SITES= https://github.com/sobolevn/git-secret/archive/ + +RUN_DEPENDS= bash:shells/bash gawk:lang/gawk git:devel/git gpg2:security/gnupg + +USE_GITHUB= yes +GH_ACCOUNT= sobolevn +GH_PROJECT= git-secret +GH_TAGNAME= 94d5ae4 + +NO_ARCH= yes + +SCRIPTS= git-secret +ALL_TARGET= git-secret + +post-extract: + @cd ${WRKSRC} && ${CAT} src/version.sh src/_utils/*.sh src/commands/*.sh src/main.sh > git-secret + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/git-secret ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/man/man1/*.1 ${STAGEDIR}${PREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/man/man7/*.7 ${STAGEDIR}${PREFIX}/man/man7/ + +.include Added: head/security/git-secret/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-secret/distinfo Sat Jan 19 03:01:19 2019 (r490698) @@ -0,0 +1,3 @@ +TIMESTAMP = 1547673384 +SHA256 (sobolevn-git-secret-0.2.5-94d5ae4_GH0.tar.gz) = 7be13bb5710c8f6e77a53153957e6352b67886432b35dbf10c8d0b92fbe29bea +SIZE (sobolevn-git-secret-0.2.5-94d5ae4_GH0.tar.gz) = 73704 Added: head/security/git-secret/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-secret/pkg-descr Sat Jan 19 03:01:19 2019 (r490698) @@ -0,0 +1,11 @@ +git-secret is a bash tool which stores private data inside a git repo. +git-secret encrypts tracked files with public keys for users whom you +trust using gpg, allowing permitted users to access encrypted data +using their secret keys. With git-secret, changes to access rights are +made easy and private-public key issues are handled for you. Passwords +do not need to be changed with git-secret when someone's permission +is revoked - just remove their key from the keychain using git secret +killperson their@email.com, and re-encrypt the files, and they won't +be able to decrypt secrets anymore. + +WWW: https://git-secret.io/ Added: head/security/git-secret/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/git-secret/pkg-plist Sat Jan 19 03:01:19 2019 (r490698) @@ -0,0 +1,15 @@ +@(root,root,555) bin/git-secret +@(root,root,444) man/man1/git-secret-add.1.gz +@(root,root,444) man/man1/git-secret-cat.1.gz +@(root,root,444) man/man1/git-secret-changes.1.gz +@(root,root,444) man/man1/git-secret-clean.1.gz +@(root,root,444) man/man1/git-secret-hide.1.gz +@(root,root,444) man/man1/git-secret-init.1.gz +@(root,root,444) man/man1/git-secret-killperson.1.gz +@(root,root,444) man/man1/git-secret-list.1.gz +@(root,root,444) man/man1/git-secret-remove.1.gz +@(root,root,444) man/man1/git-secret-reveal.1.gz +@(root,root,444) man/man1/git-secret-tell.1.gz +@(root,root,444) man/man1/git-secret-usage.1.gz +@(root,root,444) man/man1/git-secret-whoknows.1.gz +@(root,root,444) man/man7/git-secret.7.gz