View | Details | Raw Unified | Return to bug 235056 | Differences between
and this patch

Collapse All | Expand All

(-)b/security/git-secret/Makefile (+31 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	git-secret
4
DISTVERSION=	0.2.5
5
CATEGORIES=	security
6
7
MAINTAINER=	mail@sobolevn.me
8
COMMENT=	Bash tool to store your private data inside a git repository
9
10
LICENSE=	MIT
11
#MASTER_SITES=	https://github.com/sobolevn/git-secret/archive/
12
13
RUN_DEPENDS=	gawk:lang/gawk git:devel/git gpg2:security/gnupg
14
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	sobolevn
17
GH_PROJECT=	git-secret
18
GH_TAGNAME=	94d5ae4
19
20
SCRIPTS=	git-secret
21
ALL_TARGET=	git-secret
22
23
post-extract:
24
	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CAT} src/version.sh src/_utils/*.sh src/commands/*.sh src/main.sh > git-secret
25
26
do-install:
27
	${INSTALL_SCRIPT} ${WRKSRC}/git-secret ${STAGEDIR}${PREFIX}/bin/
28
	${INSTALL_MAN} ${WRKSRC}/man/man1/*.1 ${STAGEDIR}${PREFIX}/man/man1/
29
	${INSTALL_MAN} ${WRKSRC}/man/man7/*.7 ${STAGEDIR}${PREFIX}/man/man7/
30
31
.include <bsd.port.mk>
(-)b/security/git-secret/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1547673384
2
SHA256 (sobolevn-git-secret-0.2.5-94d5ae4_GH0.tar.gz) = 7be13bb5710c8f6e77a53153957e6352b67886432b35dbf10c8d0b92fbe29bea
3
SIZE (sobolevn-git-secret-0.2.5-94d5ae4_GH0.tar.gz) = 73704
(-)b/security/git-secret/pkg-descr (+11 lines)
Added Link Here
1
git-secret is a bash tool which stores private data inside a git repo. 
2
git-secret encrypts tracked files with public keys for users whom you 
3
trust using gpg, allowing permitted users to access encrypted data 
4
using their secret keys. With git-secret, changes to access rights are 
5
made easy and private-public key issues are handled for you. Passwords 
6
do not need to be changed with git-secret when someone's permission 
7
is revoked - just remove their key from the keychain using git secret 
8
killperson their@email.com, and re-encrypt the files, and they won't 
9
be able to decrypt secrets anymore.
10
11
WWW: https://git-secret.io/
(-)b/security/git-secret/pkg-plist (+15 lines)
Added Link Here
1
@(root,root,555) bin/git-secret
2
@(root,root,444) man/man7/git-secret.7.gz
3
@(root,root,444) man/man1/git-secret-add.1.gz
4
@(root,root,444) man/man1/git-secret-clean.1.gz
5
@(root,root,444) man/man1/git-secret-changes.1.gz
6
@(root,root,444) man/man1/git-secret-hide.1.gz
7
@(root,root,444) man/man1/git-secret-usage.1.gz
8
@(root,root,444) man/man1/git-secret-cat.1.gz
9
@(root,root,444) man/man1/git-secret-whoknows.1.gz
10
@(root,root,444) man/man1/git-secret-init.1.gz
11
@(root,root,444) man/man1/git-secret-reveal.1.gz
12
@(root,root,444) man/man1/git-secret-killperson.1.gz
13
@(root,root,444) man/man1/git-secret-remove.1.gz
14
@(root,root,444) man/man1/git-secret-list.1.gz
15
@(root,root,444) man/man1/git-secret-tell.1.gz

Return to bug 235056