From 732692064bbaee1e315b38c9f0dec1b4ccf32318 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 23 Jul 2022 11:34:01 -0500 Subject: app-metrics/postgres_exporter: add 0.10.1 Bug: https://bugs.gentoo.org/844343 Signed-off-by: William Hubbs --- .../postgres_exporter-0.10.1.ebuild | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 app-metrics/postgres_exporter/postgres_exporter-0.10.1.ebuild (limited to 'app-metrics/postgres_exporter/postgres_exporter-0.10.1.ebuild') diff --git a/app-metrics/postgres_exporter/postgres_exporter-0.10.1.ebuild b/app-metrics/postgres_exporter/postgres_exporter-0.10.1.ebuild new file mode 100644 index 000000000000..3f393e013f2f --- /dev/null +++ b/app-metrics/postgres_exporter/postgres_exporter-0.10.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module +GIT_COMMIT=6cff384d7433bcb1104efe3b496cd27c0658eb09 + +DESCRIPTION="PostgreSQL stats exporter for Prometheus" +HOMEPAGE="https://github.com/prometheus-community/postgres_exporter" +SRC_URI="https://github.com/prometheus-community/postgres_exporter/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="Apache-2.0 BSD MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="acct-group/postgres_exporter + acct-user/postgres_exporter" +RDEPEND="${DEPEND}" +BDEPEND="dev-util/promu" + +RESTRICT=" test " + +src_prepare() { + default + sed -i \ + -e "s/{{.Branch}}/HEAD/" \ + -e "s/{{.Revision}}/${GIT_COMMIT}/" \ + .promu.yml || die "sed failed" +} + +src_compile() { + promu build -v --prefix bin || die +} + +src_install() { + dobin bin/* + dodoc README.md queries.yaml + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +} -- cgit v1.2.3