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: Mon, 05 Jun 2017 13:02:06
Message-Id: 1496667692.5db0ef9c70953f74cd59053fe385a3bd5cb8b83b.mrueg@gentoo
1 commit: 5db0ef9c70953f74cd59053fe385a3bd5cb8b83b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 5 13:01:32 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 5 13:01:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db0ef9c
7
8 net-analyzer/prometheus: Version bump to 1.6.3
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 net-analyzer/prometheus/Manifest | 1 +
13 net-analyzer/prometheus/prometheus-1.6.3.ebuild | 59 +++++++++++++++++++++++++
14 2 files changed, 60 insertions(+)
15
16 diff --git a/net-analyzer/prometheus/Manifest b/net-analyzer/prometheus/Manifest
17 index 8095ccebd63..6e5f34b325f 100644
18 --- a/net-analyzer/prometheus/Manifest
19 +++ b/net-analyzer/prometheus/Manifest
20 @@ -1 +1,2 @@
21 DIST prometheus-1.6.2.tar.gz 5160925 SHA256 026fd958ae3792938613675f455131e954552471d15df971251b46e64ca50b35 SHA512 ae34f64d6ab2c01cb872b882e78e713b65a9ac2d42a8f6d8eaf448874d01db7b60cdc0a652a19812f9fb17d17e1454b09fc762bf624fef67d7bad56634245948 WHIRLPOOL d9e8817034d7347a57196b30a0c8293b0d44158b1a60b0d7ad6361899911a7a39ff2f4dc9fbe55d0203907dacbab4b19ba42fe954b840bd78d683c89db00700f
22 +DIST prometheus-1.6.3.tar.gz 5160067 SHA256 1c2d01f3a44b53be3b672cbdb1843fbe8fc135020bbfb6c71b0a10b141a474e6 SHA512 e7cad489120a69356ffa70597d725de9586cd64f0eb64ef3fb009ec491687d5e2d858223594d3a4e6d564196c9ea5a0eac762c0f27c9f32d50bf97d2ef79c32b WHIRLPOOL 9cb600621aad1c97f1ced7259fe442b38b24a88cf4b8df7d19a22f6d2f6840464f8db01caf1129800bd7c7ccb232d875aa7b92a194f2abea1f126854306f0817
23
24 diff --git a/net-analyzer/prometheus/prometheus-1.6.3.ebuild b/net-analyzer/prometheus/prometheus-1.6.3.ebuild
25 new file mode 100644
26 index 00000000000..09bcc54c842
27 --- /dev/null
28 +++ b/net-analyzer/prometheus/prometheus-1.6.3.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 +EGIT_COMMIT="v${PV}"
38 +PROMETHEUS_COMMIT="c580b60"
39 +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
40 +KEYWORDS="~amd64"
41 +
42 +DESCRIPTION="Prometheus monitoring system and time series database"
43 +HOMEPAGE="https://github.com/prometheus/prometheus"
44 +SRC_URI="${ARCHIVE_URI}"
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +IUSE=""
48 +
49 +DEPEND=">=dev-lang/go-1.8
50 + 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 +}