diff options
author | William Hubbs <williamh@gentoo.org> | 2023-03-08 10:22:47 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2023-03-08 10:22:47 -0600 |
commit | e30d3f65c4a1d42912598ed4f2bfb19417f7b56f (patch) | |
tree | a5d2372a396d29271f8d58170a891bf1398df044 /app-metrics | |
parent | app-containers/lxd: include >=btrfs-6.1 fix from upstream (diff) | |
download | gentoo-e30d3f65c4a1d42912598ed4f2bfb19417f7b56f.tar.gz gentoo-e30d3f65c4a1d42912598ed4f2bfb19417f7b56f.tar.bz2 gentoo-e30d3f65c4a1d42912598ed4f2bfb19417f7b56f.zip |
app-metrics/ceph_exporter: 4.1.1-r1 rev bump to fix the ceph rdepend
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-metrics')
-rw-r--r-- | app-metrics/ceph_exporter/ceph_exporter-4.1.1-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-metrics/ceph_exporter/ceph_exporter-4.1.1-r1.ebuild b/app-metrics/ceph_exporter/ceph_exporter-4.1.1-r1.ebuild new file mode 100644 index 000000000000..c81f82f998d2 --- /dev/null +++ b/app-metrics/ceph_exporter/ceph_exporter-4.1.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="Prometheus exporter that scrapes metrics from a ceph cluster" +HOMEPAGE="https://github.com/digitalocean/ceph_exporter" +SRC_URI="https://github.com/digitalocean/ceph_exporter/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + acct-group/ceph + acct-user/ceph + sys-cluster/ceph +" +DEPEND="${RDEPEND}" +BDEPEND=">=dev-lang/go-1.18" + +src_compile() { + go build -o bin/ceph_exporter || die +} + +src_install() { + dobin bin/ceph_exporter + dodoc {README,CONTRIBUTING}.md exporter.yml + newconfd "${FILESDIR}"/${PN}.confd ${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + keepdir /var/lib/ceph_exporter /var/log/ceph_exporter + fowners ceph:ceph /var/lib/ceph_exporter /var/log/ceph_exporter +} |