From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-metrics/alertmanager/
Date: Wed, 4 Sep 2019 13:50:08 +0000 (UTC) [thread overview]
Message-ID: <1567604960.34dc716040b8d619d33fe7ab608d7aa82b667e21.mrueg@gentoo> (raw)
commit: 34dc716040b8d619d33fe7ab608d7aa82b667e21
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 4 13:49:20 2019 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Sep 4 13:49:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34dc7160
app-metrics/alertmanager: Remove old
Package-Manager: Portage-2.3.75, Repoman-2.3.16
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
app-metrics/alertmanager/Manifest | 2 -
.../alertmanager/alertmanager-0.16.2.ebuild | 53 ----------------------
.../alertmanager/alertmanager-0.17.0.ebuild | 53 ----------------------
3 files changed, 108 deletions(-)
diff --git a/app-metrics/alertmanager/Manifest b/app-metrics/alertmanager/Manifest
index 5448d47b75b..0f339d55ede 100644
--- a/app-metrics/alertmanager/Manifest
+++ b/app-metrics/alertmanager/Manifest
@@ -1,4 +1,2 @@
-DIST alertmanager-0.16.2.tar.gz 3616125 BLAKE2B f7ab0dc0b4ae08527d02643facb1e0192215b64b80120e2ca0b203af2ae21b2ba9d247a037b36e96be841f39f170964e6f27e07b65003b610c04a25d1e30f3c3 SHA512 94012739c5c9691ff34bb521e220e00de13ef866451ffaaa8d45f85c228c6b515a84550a819b351db36e3da7c17a0fa397b5b1c6a4cbc3451442f5064a0184a3
-DIST alertmanager-0.17.0.tar.gz 5118311 BLAKE2B 351a47ebc0545767f9da6fdb1e276da022d6b12e424d7edc5fb471505f777f0bb403e06ff3a9b5e4817d7f612dfabb477d39c09a8e129a93e0dbcd094c082fbe SHA512 7cca7400640030caa44f713bda163dd142ad95e5b6b26d1976564fbc0b0888f26646b75c6bb4b6cc7405fa41bed9c727fca475245a170989c61b3b61cb797299
DIST alertmanager-0.18.0.tar.gz 5181819 BLAKE2B efcc856ccacb97646915e8d622179cf3cc7554351036cf556347ec46cdede5c9223139cb209b52376964c7b19b119f3683f82698d1e7c07b1432bb3e4bb37239 SHA512 59faec308abaac3d2b59198fef25109b208de1a807b38803dc10722ff0caf1bac9d9795005fefb3b4e2acda62be136bfcafe7b9702ae52565021a424f99fa730
DIST alertmanager-0.19.0.tar.gz 5862442 BLAKE2B a79336286ca1099dcc73cce897eccaff8d40f8d3140ebf1943a1189cf1d2ec58738cbe7fc02221826ffc0e1535954a11a461ac6ea222113c79a44d43cc9eda83 SHA512 2c21bfbb1001e07e81b1115439ad15e7c0e7089839e56a19c445177e322b8ef9aa2b85e96478f3c3d709cbbd3a5447662a8c55da370b84aa4b6b24f83848744b
diff --git a/app-metrics/alertmanager/alertmanager-0.16.2.ebuild b/app-metrics/alertmanager/alertmanager-0.16.2.ebuild
deleted file mode 100644
index 0436ba1b213..00000000000
--- a/app-metrics/alertmanager/alertmanager-0.16.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit user golang-build golang-vcs-snapshot
-
-EGO_PN="github.com/prometheus/alertmanager"
-EGIT_COMMIT="v${PV/_rc/-rc.}"
-ALERTMANAGER_COMMIT="308b762"
-ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Alertmanager for alerts sent by client applications such as Prometheus"
-HOMEPAGE="https://github.com/prometheus/alertmanager"
-SRC_URI="${ARCHIVE_URI}"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-lang/go-1.11
- dev-util/promu"
-
-RESTRICT="test"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
- default
- sed -i -e "s/{{.Revision}}/${ALERTMANAGER_COMMIT}/" src/${EGO_PN}/.promu.yml || die
-}
-
-src_compile() {
- pushd src/${EGO_PN} || die
- mkdir -p bin || die
- GO111MODULE=on GOPATH="${S}" GOCACHE="${T}/go-cache" promu build -v --prefix bin || die
- popd || die
-}
-
-src_install() {
- pushd src/${EGO_PN} || die
- dobin bin/*
- dodoc {README,CHANGELOG,CONTRIBUTING}.md
- insinto /etc/alertmanager/
- newins doc/examples/simple.yml config.yml.example
- popd || die
- keepdir /var/lib/alertmanager /var/log/alertmanager
- fowners ${PN}:${PN} /var/lib/alertmanager /var/log/alertmanager
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-}
diff --git a/app-metrics/alertmanager/alertmanager-0.17.0.ebuild b/app-metrics/alertmanager/alertmanager-0.17.0.ebuild
deleted file mode 100644
index 4b36f4b2ddc..00000000000
--- a/app-metrics/alertmanager/alertmanager-0.17.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit user golang-build golang-vcs-snapshot
-
-EGO_PN="github.com/prometheus/alertmanager"
-EGIT_COMMIT="v${PV/_rc/-rc.}"
-ALERTMANAGER_COMMIT="c7551cd"
-ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Alertmanager for alerts sent by client applications such as Prometheus"
-HOMEPAGE="https://github.com/prometheus/alertmanager"
-SRC_URI="${ARCHIVE_URI}"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-lang/go-1.11
- dev-util/promu"
-
-RESTRICT="test"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
- default
- sed -i -e "s/{{.Revision}}/${ALERTMANAGER_COMMIT}/" src/${EGO_PN}/.promu.yml || die
-}
-
-src_compile() {
- pushd src/${EGO_PN} || die
- mkdir -p bin || die
- GO111MODULE=on GOPATH="${S}" GOCACHE="${T}/go-cache" promu build -v --prefix bin || die
- popd || die
-}
-
-src_install() {
- pushd src/${EGO_PN} || die
- dobin bin/*
- dodoc {README,CHANGELOG,CONTRIBUTING}.md
- insinto /etc/alertmanager/
- newins doc/examples/simple.yml config.yml.example
- popd || die
- keepdir /var/lib/alertmanager /var/log/alertmanager
- fowners ${PN}:${PN} /var/lib/alertmanager /var/log/alertmanager
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-}
next reply other threads:[~2019-09-04 13:50 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-04 13:50 Manuel Rüger [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-12-03 23:15 [gentoo-commits] repo/gentoo:master commit in: app-metrics/alertmanager/ Sam James
2023-09-26 21:27 William Hubbs
2022-10-21 17:40 William Hubbs
2022-05-18 22:10 William Hubbs
2022-05-18 22:10 William Hubbs
2021-11-07 21:00 Mikle Kolyada
2021-06-12 19:10 Mikle Kolyada
2021-06-12 19:10 Mikle Kolyada
2021-05-27 17:44 Mikle Kolyada
2021-05-27 17:44 Mikle Kolyada
2021-05-25 10:38 Mikle Kolyada
2021-05-04 11:32 Mikle Kolyada
2021-04-21 8:09 Mikle Kolyada
2021-04-19 13:58 Mikle Kolyada
2021-04-08 13:19 Mikle Kolyada
2021-04-07 13:40 Mikle Kolyada
2021-04-07 11:21 Mikle Kolyada
2020-08-02 16:21 William Hubbs
2020-06-25 4:21 William Hubbs
2019-12-04 5:34 William Hubbs
2019-12-03 9:48 Michał Górny
2019-11-23 10:58 Manuel Rüger
2019-09-04 13:50 Manuel Rüger
2019-07-09 12:53 Manuel Rüger
2019-07-09 12:52 Manuel Rüger
2019-05-02 16:36 Manuel Rüger
2019-05-02 16:36 Manuel Rüger
2019-04-05 13:14 Manuel Rüger
2019-01-31 16:29 Manuel Rüger
2019-01-22 14:13 Manuel Rüger
2018-11-11 15:21 Manuel Rüger
2018-08-20 17:55 Manuel Rüger
2018-07-13 10:15 Manuel Rüger
2018-07-13 10:15 Manuel Rüger
2018-06-27 11:22 Manuel Rüger
2018-06-18 10:32 Manuel Rüger
2018-06-18 10:31 Manuel Rüger
2018-06-11 9:33 Manuel Rüger
2018-04-10 12:28 Manuel Rüger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1567604960.34dc716040b8d619d33fe7ab608d7aa82b667e21.mrueg@gentoo \
--to=mrueg@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox