mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03:00
58 lines
1.5 KiB
Bash
58 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module systemd
|
|
|
|
# update these on every bump
|
|
COMMIT=2b2cccca21104c2a00cb53bd0d785b3d656fe803
|
|
|
|
DESCRIPTION="Prometheus exporter for MongoDB"
|
|
HOMEPAGE="https://github.com/percona/mongodb_exporter"
|
|
SRC_URI="https://github.com/percona/mongodb_exporter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz"
|
|
|
|
LICENSE="Apache-2.0 AGPL-3 BSD MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="kerberos"
|
|
|
|
# tests require docker compose
|
|
RESTRICT="test"
|
|
|
|
DEPEND="
|
|
acct-group/mongodb_exporter
|
|
acct-user/mongodb_exporter
|
|
kerberos? ( app-crypt/mit-krb5 )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
QA_PRESTRIPPED=usr/bin/mongodb_exporter
|
|
|
|
src_compile() {
|
|
local -x CGO_ENABLED=1
|
|
local go_ldflags=(
|
|
-s -w
|
|
-X main.version=${PV}
|
|
-X main.buildDate="$(date +%FT%T%z)"
|
|
-X main.commit=${COMMIT}
|
|
-X main.Branch="tags/v${PV}^0"
|
|
-X main.GoVersion=$(ego version | cut -d " " -f3)
|
|
)
|
|
use kerberos && local go_tags=( -tags gssapi )
|
|
ego build -mod=vendor "${go_tags[@]}" -ldflags "${go_ldflags[*]}" -o bin/${PN} .
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/${PN}
|
|
dodoc CHANGELOG {CONTRIBUTING,README,REFERENCE}.md
|
|
|
|
newinitd "${FILESDIR}"/${PN}-1.initd ${PN}
|
|
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
|
systemd_dounit .scripts/systemd/${PN}.service
|
|
|
|
keepdir /var/log/mongodb_exporter
|
|
fowners ${PN}:${PN} /var/log/mongodb_exporter
|
|
}
|