Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-metrics/pushgateway/
Date: Sat, 21 Sep 2019 02:09:27
Message-Id: 1569031702.1441d428713cd122a246f6df71af65d74965bef9.zmedico@gentoo
1 commit: 1441d428713cd122a246f6df71af65d74965bef9
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 21 02:08:22 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 21 02:08:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1441d428
7
8 app-metrics/pushgateway: Bump to version 0.9.1
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-metrics/pushgateway/Manifest | 1 +
14 app-metrics/pushgateway/pushgateway-0.9.1.ebuild | 52 ++++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/app-metrics/pushgateway/Manifest b/app-metrics/pushgateway/Manifest
18 index 74d2a262867..4dbd769971e 100644
19 --- a/app-metrics/pushgateway/Manifest
20 +++ b/app-metrics/pushgateway/Manifest
21 @@ -1 +1,2 @@
22 DIST pushgateway-0.9.0.tar.gz 4722706 BLAKE2B 6d024819a4729cb4e728a0d1b654be94881e4a439c734655a33f5dc7c978d09205bf97e51668c2da68319df14bf802a142342483c679f4add3bf2d0992f8bef2 SHA512 0dd98f3e35e2d13e4e5e30ee398121b663ebfde240654c49f44bb0b765065f35ecefd9ddaad706f7b9a5365ea2ef1afdebe57441fa2c18c211a8670d795719b0
23 +DIST pushgateway-0.9.1.tar.gz 4743766 BLAKE2B d0c605d562b64782c6a90e82efcfbb3866e017a61f8165632e3ee87ca1ae677d2d59192262b0086e2dd4c4210236c40666f5aff3203a1fcc208cf300b82599f1 SHA512 a3f10ab2b3fcc5c9c14b761b6bd12b9e885e5b948c540b9bd6cc0c825ef7cb6e787fcc94b204bd15fd8b2690242b43a77e5b0b85e69ddf832d0dc3ee668c7fcf
24
25 diff --git a/app-metrics/pushgateway/pushgateway-0.9.1.ebuild b/app-metrics/pushgateway/pushgateway-0.9.1.ebuild
26 new file mode 100644
27 index 00000000000..0ec409e6c76
28 --- /dev/null
29 +++ b/app-metrics/pushgateway/pushgateway-0.9.1.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit user golang-build golang-vcs-snapshot systemd
36 +
37 +EGO_PN="github.com/prometheus/pushgateway"
38 +EGIT_COMMIT="v${PV/_rc/-rc.}"
39 +GIT_COMMIT="b4410a3"
40 +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
41 +KEYWORDS="~amd64"
42 +
43 +DESCRIPTION="Prometheus push acceptor for ephemeral and batch jobs"
44 +HOMEPAGE="https://github.com/prometheus/pushgateway"
45 +SRC_URI="${ARCHIVE_URI}"
46 +LICENSE="Apache-2.0 BSD BSD-2 MIT"
47 +SLOT="0"
48 +IUSE=""
49 +
50 +DEPEND=">=dev-lang/go-1.12
51 + >=dev-util/promu-0.3.0"
52 +
53 +pkg_setup() {
54 + enewgroup ${PN}
55 + enewuser ${PN} -1 -1 -1 ${PN}
56 +}
57 +
58 +src_prepare() {
59 + default
60 + sed -i -e "s/{{.Revision}}/${GIT_COMMIT}/" src/${EGO_PN}/.promu.yml || die
61 +}
62 +
63 +src_compile() {
64 + pushd src/${EGO_PN} || die
65 + mkdir -p bin || die
66 + GO111MODULE=on GOPATH="${S}" promu build -v --prefix bin || die
67 + popd || die
68 +}
69 +
70 +src_install() {
71 + pushd src/${EGO_PN} || die
72 + dobin bin/pushgateway
73 + dodoc {README,CHANGELOG,CONTRIBUTING}.md
74 + popd || die
75 + keepdir /var/lib/${PN} /var/log/${PN}
76 + fowners ${PN}:${PN} /var/lib/${PN} /var/log/${PN}
77 + newinitd "${FILESDIR}"/${PN}-1.initd ${PN}
78 + newconfd "${FILESDIR}"/${PN}-1.confd ${PN}
79 + insinto /etc/logrotate.d
80 + newins "${FILESDIR}/${PN}.logrotated" "${PN}"
81 + systemd_dounit "${FILESDIR}/${PN}-1.service"
82 +}