gentoo/app-metrics/snmp_exporter/snmp_exporter-0.27.0.ebuild
Arthur Zamarin 06e767cd33
app-metrics/snmp_exporter: Stabilize 0.27.0 amd64, #950914
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-03-08 20:54:11 +02:00

55 lines
1.4 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
# update this on every bump
SNMP_EXPORTER_COMMIT=4c054bf5
DESCRIPTION="Prometheus exporter for snmp metrics"
HOMEPAGE="https://github.com/prometheus/snmp_exporter"
SRC_URI="https://github.com/prometheus/${PN}/archive/v${PV/_rc/-rc.}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="amd64"
COMMON_DEPEND="acct-group/snmp_exporter
acct-user/snmp_exporter
net-analyzer/net-snmp"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"
BDEPEND="dev-util/promu"
src_prepare() {
default
sed -i -e "s/{{.Revision}}/${SNMP_EXPORTER_COMMIT}/" .promu.yml || die
}
src_compile() {
promu build --prefix bin || die
pushd generator || die
ego build -o ../bin/generator
popd || die
}
src_test() {
emake test-flags= test
}
src_install() {
dobin bin/generator
newbin bin/${PN}-${PV} ${PN}
dodoc {README,CONTRIBUTING}.md generator/{FORMAT,README}.md generator/generator.yml CHANGELOG.md
insinto /etc/snmp_exporter
newins snmp.yml snmp.yml.example
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
insinto /etc/logrotate.d
newins "${FILESDIR}/${PN}.logrotated" "${PN}"
keepdir /var/lib/snmp_exporter /var/log/snmp_exporter
fowners ${PN}:${PN} /var/lib/snmp_exporter /var/log/snmp_exporter
}