commit:     520997ea116189ad6e50be2bffe14d07d60f52d5
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 17 13:54:48 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 14:02:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=520997ea

net-analyzer/prometheus-alertmanager: Version bump to 0.11.0

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 net-analyzer/prometheus-alertmanager/Manifest      |  1 +
 .../prometheus-alertmanager-0.11.0.ebuild          | 52 ++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/net-analyzer/prometheus-alertmanager/Manifest 
b/net-analyzer/prometheus-alertmanager/Manifest
index db386e831b0..bbf7fbf479f 100644
--- a/net-analyzer/prometheus-alertmanager/Manifest
+++ b/net-analyzer/prometheus-alertmanager/Manifest
@@ -1 +1,2 @@
+DIST prometheus-alertmanager-0.11.0.tar.gz 3683030 SHA256 
0d1a27f220101cf6691adfd504311a824c95cf2ed02bed900536616aa398aaf3 SHA512 
33e6d5010979a7abab032019c1e50bc3e8f3630dd7e2453b1a1b37ce1035694bc78ae748ad1903afef95b6646aa167a3c0fa7f4e7b74bd3f1336106ca998b342
 WHIRLPOOL 
6b63bce13242054d2bbc5838c38d79bf3d793337435863887fa16bd0954efeca6579730cbbb30e0215bdfcf239612887d03a2d1e9cc3746f836a14319a2df989
 DIST prometheus-alertmanager-0.9.1.tar.gz 3671292 SHA256 
067e00773efd0948918a30449d5e96b5cc9b0b9ecb1271d75bbd46ad3944a699 SHA512 
423079c630466a6c3eeaab56d60bd9b7c77049955e9a67b703ef51665ccf7af0b319e8e3748c8e6d055dcf442173028cbe475181be08221d93a5ad3d20900c65
 WHIRLPOOL 
1fdf9803ffb99bda6ca49f250ff2895e29a6a77b17b1f38f47ca1f858262580f307f56bd95f0a6e97cd7a0a04e3b0df1fe28401cc6f66b71a72311df0971b970

diff --git 
a/net-analyzer/prometheus-alertmanager/prometheus-alertmanager-0.11.0.ebuild 
b/net-analyzer/prometheus-alertmanager/prometheus-alertmanager-0.11.0.ebuild
new file mode 100644
index 00000000000..e634cb98172
--- /dev/null
+++ b/net-analyzer/prometheus-alertmanager/prometheus-alertmanager-0.11.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# 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="30dd042"
+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-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
+       GOPATH="${S}" promu build -v --prefix alertmanager || die
+       popd || die
+}
+
+src_install() {
+       pushd src/${EGO_PN} || die
+       dobin alertmanager/alertmanager
+       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}
+}

Reply via email to