diff options
author | Zac Medico <zmedico@gentoo.org> | 2022-10-17 18:56:55 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2022-10-17 18:57:03 -0700 |
commit | 1eab4a3b1f496d4c16f214eb436e706f3774e9c7 (patch) | |
tree | 315e4b133ed71993534e2dbf3167951b62e2beda /app-admin/consul-template/consul-template-0.29.5.ebuild | |
parent | sys-cluster/minikube: add 1.27.1 (diff) | |
download | gentoo-1eab4a3b1f496d4c16f214eb436e706f3774e9c7.tar.gz gentoo-1eab4a3b1f496d4c16f214eb436e706f3774e9c7.tar.bz2 gentoo-1eab4a3b1f496d4c16f214eb436e706f3774e9c7.zip |
app-admin/consul-template: add 0.29.5
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'app-admin/consul-template/consul-template-0.29.5.ebuild')
-rw-r--r-- | app-admin/consul-template/consul-template-0.29.5.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/app-admin/consul-template/consul-template-0.29.5.ebuild b/app-admin/consul-template/consul-template-0.29.5.ebuild new file mode 100644 index 000000000000..6727d40a8f93 --- /dev/null +++ b/app-admin/consul-template/consul-template-0.29.5.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit go-module systemd + +DESCRIPTION="Generic template rendering and notifications with Consul" +HOMEPAGE="https://github.com/hashicorp/consul-template" +SRC_URI="https://github.com/hashicorp/consul-template/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~zmedico/dist/consul-template-0.29.4-deps.tar.xz" + +LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 ISC MIT WTFPL-2" +SLOT="0" +KEYWORDS="~amd64" + +COMMON_DEPEND=" + acct-group/consul-template + acct-user/consul-template" + +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" + +# TODO: debug test failures +RESTRICT+=" test" + +src_prepare() { + default + # remove -s and -w from the linker flags + sed \ + -e '/-s \\/d' \ + -e '/-w \\/d' \ + -i Makefile || die +} + +src_compile() { + emake GOBIN="${S}"/bin dev +} + +src_test() { + emake GOBIN="${S}"/bin test +} + +src_install() { + dobin bin/${PN} + dodoc CHANGELOG.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 + + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +} |