diff options
Diffstat (limited to 'app-admin/consul-template/consul-template-0.19.5.ebuild')
-rw-r--r-- | app-admin/consul-template/consul-template-0.19.5.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/app-admin/consul-template/consul-template-0.19.5.ebuild b/app-admin/consul-template/consul-template-0.19.5.ebuild new file mode 100644 index 000000000000..dfa6bf036b0b --- /dev/null +++ b/app-admin/consul-template/consul-template-0.19.5.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit golang-vcs-snapshot systemd user + +KEYWORDS="~amd64" +DESCRIPTION="Generic template rendering and notifications with Consul" +GIT_COMMIT="f8c8205" +EGO_PN="github.com/hashicorp/${PN}" +HOMEPAGE="https://github.com/hashicorp/consul-template" +LICENSE="MPL-2.0" +SLOT="0" +IUSE="test" + +DEPEND="dev-lang/go + test? ( app-admin/consul )" +RDEPEND="" + +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} +} + +src_prepare() { + default + # Avoid the need to have a git checkout + sed -e "s:git rev-parse --short HEAD:echo ${GIT_COMMIT}:" \ + -e '/-s \\/d' \ + -i src/${EGO_PN}/Makefile || die +} + +src_compile() { + export GOPATH=${S} + cd src/${EGO_PN} || die + #XC_ARCH=$(go env GOARCH) \ + #XC_OS=$(go env GOOS) \ + emake dev +} + +src_test() { + cd src/${EGO_PN} || die + emake test +} + +src_install() { + dobin bin/${PN} + dodoc src/${EGO_PN}/{CHANGELOG.md,README.md} + + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} + + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + systemd_dounit "${FILESDIR}/${PN}.service" + + keepdir /etc/${PN}.d +} |