blob: 1547a7a4946d6c9022e7ceafdcb30b892dabaf55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module systemd
DESCRIPTION="Exporter for podman giving containers, pods, images, volumes & networks metrics"
HOMEPAGE="https://github.com/containers/prometheus-podman-exporter"
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/containers/prometheus-podman-exporter.git"
else
SRC_URI="https://github.com/containers/prometheus-podman-exporter/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
# Main package
LICENSE="Apache-2.0"
# Dependencies
LICENSE+=" BSD-2 BSD ISC MIT MPL-2.0"
SLOT="0"
IUSE="btrfs systemd"
# there are no test files so prevent tests
RESTRICT="test"
src_compile() {
export BUILDTAGS="exclude_graphdriver_devicemapper"
use !btrfs && BUILDTAGS+=",exclude_graphdriver_btrfs,btrfs_noversion"
use systemd && BUILDTAGS+=",systemd"
default
}
src_install() {
emake DESTDIR="${ED}/usr/bin" install
systemd_dounit "contrib/systemd/prometheus-podman-exporter.service"
systemd_douserunit "contrib/systemd/prometheus-podman-exporter.service"
einstalldocs
}
|