Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-metrics/prometheus-bin/
Date: Fri, 14 May 2021 08:38:55
Message-Id: 1620981526.bdc13706257c4d303baae799ddea17d4aa4e7a19.zlogene@gentoo
1 commit: bdc13706257c4d303baae799ddea17d4aa4e7a19
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 08:22:04 2021 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 08:38:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc13706
7
8 app-metrics/prometheus-bin: Version bump (v2.27.0)
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 app-metrics/prometheus-bin/Manifest | 1 +
14 .../prometheus-bin/prometheus-bin-2.27.0.ebuild | 51 ++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/app-metrics/prometheus-bin/Manifest b/app-metrics/prometheus-bin/Manifest
18 index e589c802763..278cb134543 100644
19 --- a/app-metrics/prometheus-bin/Manifest
20 +++ b/app-metrics/prometheus-bin/Manifest
21 @@ -1 +1,2 @@
22 DIST prometheus-2.26.0.linux-amd64.tar.gz 65155818 BLAKE2B 1b7b9fec806e9f567da5cd3024ccbf787f75e023318609beb770d7771cd2ecfde473b39961783138da4edb5f5dd235a73a22a7e31f0cda23f16a59049239a85a SHA512 820bebe268cd3c5d1c84ecee62db37d4aa394e61870f0e15b4f8820726e1e8d06d05db79d7827d5d3a9c5f205e1970bfc8f06b63184f2792297a665adcf76d5d
23 +DIST prometheus-2.27.0.linux-amd64.tar.gz 69496978 BLAKE2B 73c343c21b885382441d200aa42327d30446f0d577dc6875b8c8bad44cbafcf54868e3ee60aaa01273a1c8a53a94eef02477d3ffc1a33fbc08b0e65b6d45355d SHA512 6771211abc5c4ad78ef7243e8920cf57e17eaaa19496b72f634175e911b61597ed8e0c70ef88a82fb727b75bda6e4393b13d0950bfb6073feb0a0ef5352712b0
24
25 diff --git a/app-metrics/prometheus-bin/prometheus-bin-2.27.0.ebuild b/app-metrics/prometheus-bin/prometheus-bin-2.27.0.ebuild
26 new file mode 100644
27 index 00000000000..da63a8595d3
28 --- /dev/null
29 +++ b/app-metrics/prometheus-bin/prometheus-bin-2.27.0.ebuild
30 @@ -0,0 +1,51 @@
31 +# Copyright 2020-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit systemd
37 +
38 +DESCRIPTION="prometheus monitoring system and time series database"
39 +HOMEPAGE="https://prometheus.io"
40 +MY_PN=${PN%%-bin}
41 +MY_P=${MY_PN}-${PV}
42 +SRC_URI="https://github.com/prometheus/prometheus/releases/download/v${PV}/${MY_P}.linux-amd64.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="-* ~amd64"
47 +
48 +QA_PREBUILT=".*"
49 +RESTRICT="strip"
50 +
51 +DEPEND="acct-group/prometheus
52 + acct-user/prometheus
53 + !app-metrics/prometheus"
54 +RDEPEND="${DEPEND}"
55 +
56 +S="${WORKDIR}/${MY_P}.linux-amd64"
57 +
58 +src_install() {
59 + dobin prometheus promtool
60 + insinto /usr/share/prometheus
61 + doins -r console_libraries consoles
62 + insinto /etc/prometheus
63 + doins prometheus.yml
64 + dosym ../../usr/share/prometheus/console_libraries /etc/prometheus/console_libraries
65 + dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
66 +
67 + systemd_dounit "${FILESDIR}"/prometheus.service
68 + newinitd "${FILESDIR}"/prometheus.initd prometheus
69 + newconfd "${FILESDIR}"/prometheus.confd prometheus
70 + keepdir /var/log/prometheus /var/lib/prometheus
71 + fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
72 +}
73 +
74 +pkg_postinst() {
75 + if has_version '<net-analyzer/prometheus-2.0.0_rc0'; then
76 + ewarn "Old prometheus 1.x TSDB won't be converted to the new prometheus 2.0 format"
77 + ewarn "Be aware that the old data currently cannot be accessed with prometheus 2.0"
78 + ewarn "This release requires a clean storage directory and is not compatible with"
79 + ewarn "files created by previous beta releases"
80 + fi
81 +}