blob: 5e5888621866417468c39ed5964af53ce18c0aa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
PORTNAME= vault
PORTVERSION= 1.14.1
DISTVERSIONPREFIX= v
PORTREVISION= 6
CATEGORIES= security
MASTER_SITES= https://raw.githubusercontent.com/hashicorp/vault/${DISTVERSIONFULL}/ \
LOCAL/bofh/security/${PORTNAME}/:web_ui
DISTFILES= go.mod \
api/go.mod \
api/auth/approle/go.mod \
api/auth/kubernetes/go.mod \
api/auth/userpass/go.mod \
sdk/go.mod \
${PORTNAME}-web_ui-${DISTVERSION}${EXTRACT_SUFX}:web_ui
MAINTAINER= bofh@FreeBSD.org
COMMENT= Tool for securely accessing secrets
WWW= https://vaultproject.io/
LICENSE= MPL20
LICENSE_FILE= ${WRKSRC}/LICENSE
.if defined(MAINTAINER_MODE)
EXTRACT_DEPENDS=npm-node18>0:www/npm-node18 \
yarn-node18>0:www/yarn-node18
.endif
USES= cpe go:modules
CPE_VENDOR= hashicorp
USE_GITHUB= yes
GH_ACCOUNT= hashicorp
USE_RC_SUBR= vault
GO_MODULE= github.com/hashicorp/vault
GO_BUILDFLAGS= -ldflags="-s \
-X github.com/hashicorp/vault/version.GitCommit=${GITID} \
-X github.com/hashicorp/vault/version.BuildDate=${SOURCE_DATE_EPOCH:U${SOURCE_DATE_EPOCH_CMD:sh}} \
" -tags "vault ui"
SUB_FILES= pkg-message
USERS= vault
GROUPS= vault
PLIST_FILES= bin/${PORTNAME}
GITID= bf23fe8636b04d554c0fa35a756c75c2f59026c0
.include <bsd.port.pre.mk>
# Bring DISTINFO_FILE into scope so we can get the timestamp.
SOURCE_DATE_EPOCH_CMD= date -ur \
$$(${GREP} -m1 TIMESTAMP ${DISTINFO_FILE} | ${SED} -e 's/[^0-9]//g') \
'+%Y-%m-%dT%H:%M:%SZ'
post-patch:
${CP} -Rf ${WRKDIR}/web_ui ${WRKSRC}/http/
.if defined(MAINTAINER_MODE)
_make-web_ui: extract
cd ${WRKSRC}/ui && ${SETENV} ${MAKE_ENV} yarn
cd ${WRKSRC}/ui && ${SETENV} ${MAKE_ENV} npm rebuild node-sass
cd ${WRKSRC}/ui && ${SETENV} ${MAKE_ENV} yarn run build
cd ${WRKDIR} && ${TAR} -czf \
${PORTNAME}-web_ui-${DISTVERSION}${EXTRACT_SUFX} -C ${WRKSRC}/http web_ui
scp ${WRKDIR}/${PORTNAME}-web_ui-${DISTVERSION}${EXTRACT_SUFX} \
bofh@freefall.freebsd.org:public_distfiles/security/${PORTNAME}/
.endif
.include <bsd.port.post.mk>
|