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: Tue, 17 Oct 2017 14:16:01
Message-Id: 1508249710.4a4d7fd87e76259b2479426fb48f96c2f7802874.mrueg@gentoo
1 commit: 4a4d7fd87e76259b2479426fb48f96c2f7802874
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 17 13:56:59 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 17 14:15:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a4d7fd8
7
8 net-analyzer/prometheus: Version bump to 2.0.0_rc1
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 net-analyzer/prometheus/Manifest | 1 +
13 .../prometheus/prometheus-2.0.0_rc1.ebuild | 68 ++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/net-analyzer/prometheus/Manifest b/net-analyzer/prometheus/Manifest
17 index eed7b14d64f..17514f88790 100644
18 --- a/net-analyzer/prometheus/Manifest
19 +++ b/net-analyzer/prometheus/Manifest
20 @@ -1,3 +1,4 @@
21 DIST prometheus-1.7.1.tar.gz 5122747 SHA256 209832310f5bef99faef3beaaa95263612a4d0126ca512c4a4c23a8543d3ccf5 SHA512 98a42e95978477530082d7549c29f17b133043d7c233ba3c90b183f06a3f24ee578f8fed75cba476d3c93a22abcccfdbccc94488beb8450a02f260d24165ba26 WHIRLPOOL 8ab473430752336e09b4a0c38fd1117abe21196478d7f2f7e813c27f07c950cc3525d9e9ba32309711c73a1032f3cff27ddc1582d0c4b6c66fe82d5b58675550
22 DIST prometheus-1.8.0.tar.gz 5194115 SHA256 556247d750b3618b74ccf59669f74a8c0c39e72cdf51cbcc0c0bcc392de195df SHA512 1ac00ddae4753f99f167db9b6efc5fa442918284f59468b8e1c7743e3f946eab895678c87e12a73bf158e3c0bf3df7345dd59855baaabb54fc86f1ae1014192d WHIRLPOOL 9ff6f0dc36f022b2be107ce59878f81b210b196858064655a74e098650abc77d5a0c2afb11dd5ebb242d1e2addbc3a182b1a6ce1f751eed723e3fff3434d319c
23 DIST prometheus-2.0.0_rc0.tar.gz 5524499 SHA256 e1615defddf3e0a2d32e22ffba5bc3f0f37ff98fac7d4bba2b2c5bb8219f2a22 SHA512 fd382f559ea9a362e2493ea2d317afe600b0ed2299e3d6ef12678658cd62320ad39deec1b4639819b32c4ba34f124792d00dd101632b1c1e4f1123005e20e38d WHIRLPOOL 1d0ed8f35c9f9d5fca8310af21b93d35bad3397fbf88ea0cc2573412c8d58291e521212283abbe5ed4a461e2e1f62f704f96a6070509864972ff3dd1c0eacd67
24 +DIST prometheus-2.0.0_rc1.tar.gz 5538094 SHA256 5d80280d4f8de0e5c79b02fa2ab9cbe4cf49a287ed268ed85a0f87abd257d226 SHA512 c89509693608a4f00713cb3b9f11b533236898af4a08580ecb4aa5f198d7f568719ddb78225f9d260128288aa7e037d0a0a820f8e42e2db4c7745e2f993fb4fe WHIRLPOOL 1765d9eb600da28e12d2c679a60f050d9557bbf974a53ff86363fb66fb82d64c4b55a85f9aac4c80039c317a88028c794e8387e0db3f0b925b86057d5ae17f7e
25
26 diff --git a/net-analyzer/prometheus/prometheus-2.0.0_rc1.ebuild b/net-analyzer/prometheus/prometheus-2.0.0_rc1.ebuild
27 new file mode 100644
28 index 00000000000..697c4156945
29 --- /dev/null
30 +++ b/net-analyzer/prometheus/prometheus-2.0.0_rc1.ebuild
31 @@ -0,0 +1,68 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +inherit user golang-build golang-vcs-snapshot
37 +
38 +EGO_PN="github.com/prometheus/prometheus"
39 +MY_PV=${PV/_rc/-rc.}
40 +EGIT_COMMIT="v${MY_PV}"
41 +PROMETHEUS_COMMIT="5ab8834"
42 +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
43 +KEYWORDS="~amd64"
44 +
45 +DESCRIPTION="Prometheus monitoring system and time series database"
46 +HOMEPAGE="https://github.com/prometheus/prometheus"
47 +SRC_URI="${ARCHIVE_URI}"
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +IUSE=""
51 +
52 +DEPEND="dev-util/promu"
53 +
54 +PROMETHEUS_HOME="/var/lib/prometheus"
55 +
56 +RESTRICT="test"
57 +
58 +pkg_setup() {
59 + enewgroup prometheus
60 + enewuser prometheus -1 -1 "${PROMETHEUS_HOME}" prometheus
61 +}
62 +
63 +src_prepare() {
64 + default
65 + sed -i -e "s/{{.Revision}}/${PROMETHEUS_COMMIT}/" src/${EGO_PN}/.promu.yml || die
66 +}
67 +
68 +src_compile() {
69 + pushd src/${EGO_PN} || die
70 + GOPATH="${S}" promu build -v || die
71 + popd || die
72 +}
73 +
74 +src_install() {
75 + pushd src/${EGO_PN} || die
76 + dobin promtool prometheus
77 + dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
78 + insinto /etc/prometheus
79 + doins documentation/examples/prometheus.yml
80 + insinto /usr/share/prometheus
81 + doins -r console_libraries consoles
82 + dosym ../../usr/share/prometheus/console_libraries /etc/prometheus/console_libraries
83 + dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
84 + popd || die
85 +
86 + newinitd "${FILESDIR}"/prometheus-3.initd prometheus
87 + newconfd "${FILESDIR}"/prometheus.confd prometheus
88 + keepdir /var/log/prometheus /var/lib/prometheus
89 + fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
90 +}
91 +
92 +pkg_postinst() {
93 + if has_version '<net-analyzer/prometheus-2.0.0_rc0'; then
94 + ewarn "Old prometheus 1.x TSDB won't be converted to the new prometheus 2.0 format"
95 + ewarn "Be aware that the old data currently cannot be accessed with prometheus 2.0"
96 + ewarn "This release requires a clean storage directory and is not compatible with"
97 + ewarn "files created by previous beta releases"
98 + fi
99 +}