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: Sat, 03 Jul 2021 07:31:09
Message-Id: 1625297457.9768dc687391d89184a298ae095368d0c01f21dd.zlogene@gentoo
1 commit: 9768dc687391d89184a298ae095368d0c01f21dd
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 07:30:33 2021 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 07:30:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9768dc68
7
8 app-metrics/prometheus-bin: Version bump (v2.28.1)
9
10 Package-Manager: Portage-3.0.20, 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.28.1.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 4f87133c593..a3c34c4c44b 100644
19 --- a/app-metrics/prometheus-bin/Manifest
20 +++ b/app-metrics/prometheus-bin/Manifest
21 @@ -1,2 +1,3 @@
22 DIST prometheus-2.26.1.linux-amd64.tar.gz 65179092 BLAKE2B 631dfbaf9d8553297bd763b2a1ce7cb97d66ec90bff126466868a59b0a0fe074fc13866e2c99f085c7257c3047ab4105f16508c1397de76a1420b4df0b203455 SHA512 53cbbef86204973a01e0d20b287cdbe2c1743dc2add0449d10da55dd3fbed95eaa5beb0a2cd08b4a33fb1825440c91633ef7680616d89838868216fafcd27c55
23 DIST prometheus-2.27.1.linux-amd64.tar.gz 69491886 BLAKE2B 7739bd6d84570d4d0db987a0b027ba875728245ded5fac17f89adddfd9b14543cd9594664a8d42392a7a018477ece69ac47367f03442c0f5b11a1e76140ad7c6 SHA512 df43385e178f698806181ab67db0b75600d356c7792f2dcfe6e3390a8a7b449f180ea8fccbc58c10ad0118cea1ba8d5664676de9741e5f91a1a4ec897baeb88f
24 +DIST prometheus-2.28.1.linux-amd64.tar.gz 71109475 BLAKE2B fe487ec0157e4c6de5319cdacaf99bba9784156b21b29245b65c1b090951bac182b6b2f5ab98615ac0424eb0984dcbea1fffaa680a9d424addbc73c2f923c483 SHA512 a58280f9013f3013a917019ad850f9150f9636e579a87a0408a7de943b3f807a65135452b5c65b75aeca7f62dccf5958a420755088cd3955cd6a556893ed68e4
25
26 diff --git a/app-metrics/prometheus-bin/prometheus-bin-2.28.1.ebuild b/app-metrics/prometheus-bin/prometheus-bin-2.28.1.ebuild
27 new file mode 100644
28 index 00000000000..da63a8595d3
29 --- /dev/null
30 +++ b/app-metrics/prometheus-bin/prometheus-bin-2.28.1.ebuild
31 @@ -0,0 +1,51 @@
32 +# Copyright 2020-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit systemd
38 +
39 +DESCRIPTION="prometheus monitoring system and time series database"
40 +HOMEPAGE="https://prometheus.io"
41 +MY_PN=${PN%%-bin}
42 +MY_P=${MY_PN}-${PV}
43 +SRC_URI="https://github.com/prometheus/prometheus/releases/download/v${PV}/${MY_P}.linux-amd64.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="-* ~amd64"
48 +
49 +QA_PREBUILT=".*"
50 +RESTRICT="strip"
51 +
52 +DEPEND="acct-group/prometheus
53 + acct-user/prometheus
54 + !app-metrics/prometheus"
55 +RDEPEND="${DEPEND}"
56 +
57 +S="${WORKDIR}/${MY_P}.linux-amd64"
58 +
59 +src_install() {
60 + dobin prometheus promtool
61 + insinto /usr/share/prometheus
62 + doins -r console_libraries consoles
63 + insinto /etc/prometheus
64 + doins prometheus.yml
65 + dosym ../../usr/share/prometheus/console_libraries /etc/prometheus/console_libraries
66 + dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
67 +
68 + systemd_dounit "${FILESDIR}"/prometheus.service
69 + newinitd "${FILESDIR}"/prometheus.initd prometheus
70 + newconfd "${FILESDIR}"/prometheus.confd prometheus
71 + keepdir /var/log/prometheus /var/lib/prometheus
72 + fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
73 +}
74 +
75 +pkg_postinst() {
76 + if has_version '<net-analyzer/prometheus-2.0.0_rc0'; then
77 + ewarn "Old prometheus 1.x TSDB won't be converted to the new prometheus 2.0 format"
78 + ewarn "Be aware that the old data currently cannot be accessed with prometheus 2.0"
79 + ewarn "This release requires a clean storage directory and is not compatible with"
80 + ewarn "files created by previous beta releases"
81 + fi
82 +}