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: Sat, 12 Aug 2017 10:19:16
Message-Id: 1502533106.dcb44bcf0a7a54f0502a2ac5cc2ed41f89446d7e.mrueg@gentoo
1 commit: dcb44bcf0a7a54f0502a2ac5cc2ed41f89446d7e
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 12 10:18:26 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 12 10:18:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb44bcf
7
8 net-analyzer/prometheus: Remove old
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 deletions(-)
15
16 diff --git a/net-analyzer/prometheus/Manifest b/net-analyzer/prometheus/Manifest
17 index 2622b5e8141..bc51214ced2 100644
18 --- a/net-analyzer/prometheus/Manifest
19 +++ b/net-analyzer/prometheus/Manifest
20 @@ -1,3 +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 DIST prometheus-2.0.0_beta1.tar.gz 5521455 SHA256 25eee3f884ddb577f308d174c8eaf31718602afcffc1aef4c574fa9fe54687e6 SHA512 12b2e0ea0279526fd87c915b8ca2bdc2f29bd6041a7c6ad66bc3a7832e914275ba9bfa9d48db54e86dde3c0c1d347a7051fa92fcf33cfebe5b03f200845ef0d1 WHIRLPOOL ba5ff82e8b578c4b94ca539075c834138d2f2af6bea50c45861ea9ff3e592e4cbb32bb3e1ef9c0a3e9ff4e27c4e3025c22b3feb5cc93c33cbd6b8a17803da465
24
25 diff --git a/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild b/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild
26 deleted file mode 100644
27 index c8412fb071e..00000000000
28 --- a/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild
29 +++ /dev/null
30 @@ -1,59 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit user golang-build golang-vcs-snapshot
36 -
37 -EGO_PN="github.com/prometheus/prometheus"
38 -MY_PV=${PV/_beta/-beta.}
39 -EGIT_COMMIT="v${MY_PV}"
40 -PROMETHEUS_COMMIT="2b5d915"
41 -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
42 -KEYWORDS="~amd64"
43 -
44 -DESCRIPTION="Prometheus monitoring system and time series database"
45 -HOMEPAGE="https://github.com/prometheus/prometheus"
46 -SRC_URI="${ARCHIVE_URI}"
47 -LICENSE="Apache-2.0"
48 -SLOT="0"
49 -IUSE=""
50 -
51 -DEPEND="dev-util/promu"
52 -
53 -PROMETHEUS_HOME="/var/lib/prometheus"
54 -
55 -RESTRICT="test"
56 -
57 -pkg_setup() {
58 - enewgroup prometheus
59 - enewuser prometheus -1 -1 "${PROMETHEUS_HOME}" prometheus
60 -}
61 -
62 -src_prepare() {
63 - default
64 - sed -i -e "s/{{.Revision}}/${PROMETHEUS_COMMIT}/" src/${EGO_PN}/.promu.yml || die
65 -}
66 -
67 -src_compile() {
68 - pushd src/${EGO_PN} || die
69 - GOPATH="${S}" promu build -v || die
70 - popd || die
71 -}
72 -
73 -src_install() {
74 - pushd src/${EGO_PN} || die
75 - dobin promtool prometheus
76 - dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
77 - insinto /etc/prometheus
78 - doins documentation/examples/prometheus.yml
79 - insinto /usr/share/prometheus
80 - doins -r console_libraries consoles
81 - dosym ../../usr/share/prometheus/console_libraries /etc/prometheus/console_libraries
82 - dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
83 - popd || die
84 -
85 - newinitd "${FILESDIR}"/prometheus.initd prometheus
86 - newconfd "${FILESDIR}"/prometheus.confd prometheus
87 - keepdir /var/log/prometheus /var/lib/prometheus
88 - fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
89 -}