diff options
author | 2022-11-29 16:50:28 -0800 | |
---|---|---|
committer | 2022-11-29 16:50:58 -0800 | |
commit | 89921c6d9254242e3c74762c57dc3531b5fb102c (patch) | |
tree | a15717c7a8e661896236b2bd8e65e88832c2989b /app-metrics/pushgateway/pushgateway-1.5.1.ebuild | |
parent | sys-devel/gdb: add readline 8.2 patch to gdb-11.2 too (diff) | |
download | gentoo-89921c6d9254242e3c74762c57dc3531b5fb102c.tar.gz gentoo-89921c6d9254242e3c74762c57dc3531b5fb102c.tar.bz2 gentoo-89921c6d9254242e3c74762c57dc3531b5fb102c.zip |
app-metrics/pushgateway: add 1.5.1
Bug: https://bugs.gentoo.org/883647
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'app-metrics/pushgateway/pushgateway-1.5.1.ebuild')
-rw-r--r-- | app-metrics/pushgateway/pushgateway-1.5.1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app-metrics/pushgateway/pushgateway-1.5.1.ebuild b/app-metrics/pushgateway/pushgateway-1.5.1.ebuild new file mode 100644 index 000000000000..c1a6e8e79cf4 --- /dev/null +++ b/app-metrics/pushgateway/pushgateway-1.5.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit go-module systemd + +GIT_COMMIT="7afc96c" +DESCRIPTION="Prometheus push acceptor for ephemeral and batch jobs" +HOMEPAGE="https://github.com/prometheus/pushgateway" +SRC_URI=" + https://github.com/prometheus/pushgateway/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz +" + +LICENSE="Apache-2.0 BSD BSD-2 MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv" + +RDEPEND=" + acct-group/pushgateway + acct-user/pushgateway +" +DEPEND="${RDEPEND}" + +BDEPEND=">=dev-util/promu-0.3.0" + +src_prepare() { + default + sed -i -e 's|{{\.Revision}}|'${GIT_COMMIT}'|g' .promu.yml || die +} + +src_compile() { + mkdir -p bin || die + promu build -v --prefix bin || die +} + +src_install() { + newbin "bin/${P}" "${PN}" + dodoc {README,CHANGELOG,CONTRIBUTING}.md + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} + newinitd "${FILESDIR}"/${PN}-1.initd ${PN} + newconfd "${FILESDIR}"/${PN}-1.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" + systemd_dounit "${FILESDIR}/${PN}-1.service" +} |