summaryrefslogtreecommitdiff
path: root/app-admin/vault/vault-1.2.2.ebuild
blob: 851d2b1431fa9f19f4d79b8104878effcd4bc604 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit fcaps golang-base golang-vcs-snapshot systemd user

EGO_PN="github.com/hashicorp/${PN}"
VAULT_WEBUI_ARCHIVE="${P}-webui.tar.xz"
DESCRIPTION="A tool for managing secrets"
HOMEPAGE="https://vaultproject.io/"
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
	webui? (
		mirror://gentoo/${VAULT_WEBUI_ARCHIVE}
		https://dev.gentoo.org/~zmedico/dist/${VAULT_WEBUI_ARCHIVE}
	)"
SLOT="0"
LICENSE="MPL-2.0"
KEYWORDS="~amd64"
IUSE="+webui"

RESTRICT="test"

DEPEND=">=dev-lang/go-1.11:=
	dev-go/gox"

FILECAPS=(
	-m 755 'cap_ipc_lock=+ep' usr/bin/${PN}
)

src_unpack() {
	golang-vcs-snapshot_src_unpack
	if use webui; then
		# The webui assets build has numerous nodejs dependencies,
		# see https://github.com/hashicorp/vault/blob/master/ui/README.md
		pushd "${S}/src/${EGO_PN}" >/dev/null || die
		unpack "${VAULT_WEBUI_ARCHIVE}"
		popd >/dev/null
	fi
}

src_prepare() {
	default
	# Avoid the need to have a git checkout
	sed -e 's:^\(GIT_COMMIT=\).*:\1:' \
		-e 's:^\(GIT_DIRTY=\).*:\1:' \
		-e s:\'\${GIT_COMMIT}\${GIT_DIRTY}\':: \
		-i src/${EGO_PN}/scripts/build.sh || die
	sed -e "/hooks/d" \
		-e 's|^\([[:space:]]*\)goimports .*)|\1true|' \
		-i src/${EGO_PN}/Makefile || die

	# Avoid network-sandbox violations since go-1.13
	rm src/${EGO_PN}/go.mod || die
}

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 -1 ${PN}
}

src_compile() {
	mkdir bin || die
	export -n GOCACHE XDG_CACHE_HOME #678970
	export GOBIN=${S}/bin GOPATH=${S}
	cd src/${EGO_PN} || die
	# The fmt target may need to be executed if it was previously
	# executed by an older version of go (bug 665438).
	emake fmt
	BUILD_TAGS="$(usex webui ui '')" \
	XC_ARCH=$(go env GOARCH) \
	XC_OS=$(go env GOOS) \
	XC_OSARCH=$(go env GOOS)/$(go env GOARCH) \
	emake
}

src_install() {
	dodoc src/${EGO_PN}/{CHANGELOG.md,CONTRIBUTING.md,README.md}
	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
	insinto /etc/logrotate.d
	newins "${FILESDIR}/${PN}.logrotated" "${PN}"
	systemd_dounit "${FILESDIR}/${PN}.service"

	keepdir /etc/${PN}.d
	insinto /etc/${PN}.d
	doins "${FILESDIR}/"*.json.example

	keepdir /var/log/${PN}
	fowners ${PN}:${PN} /var/log/${PN}

	dobin bin/${PN}
}