Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus/
Date: Wed, 09 Aug 2017 14:31:56
Message-Id: 1502289093.4d69dc3cf5d538dbdfbe80affbfa484c6c5bd4c4.mrueg@gentoo
1 commit: 4d69dc3cf5d538dbdfbe80affbfa484c6c5bd4c4
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 9 14:30:55 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 9 14:31:33 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d69dc3c
7
8 net-analyzer/prometheus: Version bump to 2.0.0_beta0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 net-analyzer/prometheus/Manifest | 1 +
13 .../prometheus/prometheus-2.0.0_beta0.ebuild | 59 ++++++++++++++++++++++
14 2 files changed, 60 insertions(+)
15
16 diff --git a/net-analyzer/prometheus/Manifest b/net-analyzer/prometheus/Manifest
17 index 428e4323256..3ce346c0e6b 100644
18 --- a/net-analyzer/prometheus/Manifest
19 +++ b/net-analyzer/prometheus/Manifest
20 @@ -1 +1,2 @@
21 DIST prometheus-1.7.1.tar.gz 5122747 SHA256 209832310f5bef99faef3beaaa95263612a4d0126ca512c4a4c23a8543d3ccf5 SHA512 98a42e95978477530082d7549c29f17b133043d7c233ba3c90b183f06a3f24ee578f8fed75cba476d3c93a22abcccfdbccc94488beb8450a02f260d24165ba26 WHIRLPOOL 8ab473430752336e09b4a0c38fd1117abe21196478d7f2f7e813c27f07c950cc3525d9e9ba32309711c73a1032f3cff27ddc1582d0c4b6c66fe82d5b58675550
22 +DIST prometheus-2.0.0_beta0.tar.gz 5475399 SHA256 7463ff35335ff7fee05018234aa1d100ef78e10f8c549e23675a7552b0429f77 SHA512 f9da91cbe4e7d5510088e09c8457b08bcfe6a4e0ef781e33a848bbd78045f46042e9a55c4329b71dec4cb11143566de2d077fa34361da3eb66af19f8261baab8 WHIRLPOOL 854010b6d9c86688311c992f644cb51c3b0d50523702fc4d82814f92400a141e9557fe367e47aafd2ae2628a73b6533627fab49b1a7f69bbe36081e2c8193f0e
23
24 diff --git a/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild b/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild
25 new file mode 100644
26 index 00000000000..c8412fb071e
27 --- /dev/null
28 +++ b/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild
29 @@ -0,0 +1,59 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit user golang-build golang-vcs-snapshot
35 +
36 +EGO_PN="github.com/prometheus/prometheus"
37 +MY_PV=${PV/_beta/-beta.}
38 +EGIT_COMMIT="v${MY_PV}"
39 +PROMETHEUS_COMMIT="2b5d915"
40 +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
41 +KEYWORDS="~amd64"
42 +
43 +DESCRIPTION="Prometheus monitoring system and time series database"
44 +HOMEPAGE="https://github.com/prometheus/prometheus"
45 +SRC_URI="${ARCHIVE_URI}"
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +IUSE=""
49 +
50 +DEPEND="dev-util/promu"
51 +
52 +PROMETHEUS_HOME="/var/lib/prometheus"
53 +
54 +RESTRICT="test"
55 +
56 +pkg_setup() {
57 + enewgroup prometheus
58 + enewuser prometheus -1 -1 "${PROMETHEUS_HOME}" prometheus
59 +}
60 +
61 +src_prepare() {
62 + default
63 + sed -i -e "s/{{.Revision}}/${PROMETHEUS_COMMIT}/" src/${EGO_PN}/.promu.yml || die
64 +}
65 +
66 +src_compile() {
67 + pushd src/${EGO_PN} || die
68 + GOPATH="${S}" promu build -v || die
69 + popd || die
70 +}
71 +
72 +src_install() {
73 + pushd src/${EGO_PN} || die
74 + dobin promtool prometheus
75 + dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
76 + insinto /etc/prometheus
77 + doins documentation/examples/prometheus.yml
78 + insinto /usr/share/prometheus
79 + doins -r console_libraries consoles
80 + dosym ../../usr/share/prometheus/console_libraries /etc/prometheus/console_libraries
81 + dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
82 + popd || die
83 +
84 + newinitd "${FILESDIR}"/prometheus.initd prometheus
85 + newconfd "${FILESDIR}"/prometheus.confd prometheus
86 + keepdir /var/log/prometheus /var/lib/prometheus
87 + fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
88 +}