diff options
author | 2023-05-04 11:25:53 -0700 | |
---|---|---|
committer | 2023-05-04 11:26:30 -0700 | |
commit | 1bc6e33356514d468e3db1a54cc1675afff38547 (patch) | |
tree | bce0a24d1fe878f722b9e6f703ae613a98d727cf /app-metrics/bind_exporter/bind_exporter-0.6.1.ebuild | |
parent | app-admin/awscli-bin: add 2.11.17 (diff) | |
download | gentoo-1bc6e33356514d468e3db1a54cc1675afff38547.tar.gz gentoo-1bc6e33356514d468e3db1a54cc1675afff38547.tar.bz2 gentoo-1bc6e33356514d468e3db1a54cc1675afff38547.zip |
app-metrics/bind_exporter: bump
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'app-metrics/bind_exporter/bind_exporter-0.6.1.ebuild')
-rw-r--r-- | app-metrics/bind_exporter/bind_exporter-0.6.1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/app-metrics/bind_exporter/bind_exporter-0.6.1.ebuild b/app-metrics/bind_exporter/bind_exporter-0.6.1.ebuild new file mode 100644 index 000000000000..6f9020afafd7 --- /dev/null +++ b/app-metrics/bind_exporter/bind_exporter-0.6.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module +GIT_COMMIT=c34ff3d6b4817f42e74b2b05b3797cf99683b4a9 + +DESCRIPTION="Prometheus exporter for BIND" +HOMEPAGE="https://github.com/prometheus-community/bind_exporter" +SRC_URI=" + https://github.com/prometheus-community/bind_exporter/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~robbat2/distfiles/bind_exporter-${PV}-vendor.tar.xz + " + +LICENSE="Apache-2.0 BSD MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +COMMON_DEPEND="acct-group/bind_exporter + acct-user/bind_exporter" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" +BDEPEND="dev-util/promu" + +src_prepare() { + default + sed -i -e "/-s$/d" -e "s/{{.Revision}}/${GIT_COMMIT}/" .promu.yml || die +} + +src_compile() { + mkdir -p bin || die + promu build -v --prefix bin || die +} + +src_test() { + emake test-flags= test +} + +src_install() { + dobin bin/${PN} + dodoc {README,CHANGELOG}.md + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +} + +pkg_postinst() { + elog "Make sure BIND was built with libxml2 support. You can check with the" + elog "following command: named -V | grep libxml2." + elog "Configure BIND to open a statistics channel. It's recommended to run" + elog "the bind_exporter next to BIND, so it's only necessary to open a port" + elog "locally." + elog "" + elog "statistics-channels {" + elog "inet 127.0.0.1 port 8053 allow { 127.0.0.1; };" + elog "};" +} |