diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2019-10-07 11:44:49 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2019-10-07 11:44:49 +0200 |
commit | 5c6c0f3833801fa99151934c11c25fb76283d43b (patch) | |
tree | fdcbd12e28f91443d892ef7ed757b040f9801926 /dev-util/promu | |
parent | dev-util/promu: Stabilize on amd64 (diff) | |
download | gentoo-5c6c0f3833801fa99151934c11c25fb76283d43b.tar.gz gentoo-5c6c0f3833801fa99151934c11c25fb76283d43b.tar.bz2 gentoo-5c6c0f3833801fa99151934c11c25fb76283d43b.zip |
dev-util/promu: Remove old
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger <mrueg@gentoo.org>
Diffstat (limited to 'dev-util/promu')
-rw-r--r-- | dev-util/promu/Manifest | 2 | ||||
-rw-r--r-- | dev-util/promu/promu-0.2.0.ebuild | 34 | ||||
-rw-r--r-- | dev-util/promu/promu-0.3.0.ebuild | 34 |
3 files changed, 0 insertions, 70 deletions
diff --git a/dev-util/promu/Manifest b/dev-util/promu/Manifest index e8403c4157af..b17a577e1cd0 100644 --- a/dev-util/promu/Manifest +++ b/dev-util/promu/Manifest @@ -1,3 +1 @@ -DIST promu-0.2.0.tar.gz 1072026 BLAKE2B 2b68d992b37421d6b9a08cc9a9134f9ae52643d4c2844c8e1f6f6724f015582c99a8724ab6b8d1ee69437c660e3b972af85949e3221d8d8c709fd8c1a45e1256 SHA512 4da4716a9d4fb96b6016c9bd452fed0403721ab15f95e6955db2ab6e8e482f3bbb35cb4c1c94f690af9520729a93c100015ee48cb69627e129004ae0b15257ae -DIST promu-0.3.0.tar.gz 366019 BLAKE2B 0e6e93bb573da0ef20947b72989d8a68a7d6d1490efc802acaee58c9f546e9b46162054172d445e4dcb5cbc33c152529f006edf3acc594b92927df0ab489f86a SHA512 543cb514fcab9700bc45cb1b4a9f056720af4acf8ed949e03445c2f4e52d89f6fb8eda3ee538bc92feb2dc06db31026bebad9bf6c86a6e37a0be294d17e4b518 DIST promu-0.5.0.tar.gz 643970 BLAKE2B b61e8421b5e68f3cd0ec125faadf64c7491f54cfe03de9d6497cb627e5d548b58fafe735c76a5a86a55489aea56dffb6e02d52acd1ca977ea32ec974f34475ac SHA512 b895c0b5b5a33bd0c2372e8c1c698b8548b1b7086849161ffa99bf9718f4b7f3a57bcf218681d84e4cc5ef31ef39df7e6c59345a84441369ec3ec402999ac4de diff --git a/dev-util/promu/promu-0.2.0.ebuild b/dev-util/promu/promu-0.2.0.ebuild deleted file mode 100644 index df89ca92f81f..000000000000 --- a/dev-util/promu/promu-0.2.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build golang-vcs-snapshot - -EGO_PN="github.com/prometheus/promu" -EGIT_COMMIT="264dc36af9ea3103255063497636bd5713e3e9c1" -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="amd64" - -DESCRIPTION="Prometheus Utility Tool" -HOMEPAGE="https://github.com/prometheus/promu" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -DEPEND=">=dev-lang/go-1.11" - -src_prepare() { - default - sed -i -e "s/{{.Revision}}/${EGIT_COMMIT}/" src/${EGO_PN}/.promu.yml || die -} - -src_compile() { - pushd src/${EGO_PN} || die - GOPATH="${S}" emake build - popd || die -} - -src_install() { - dobin bin/* - dodoc -r src/${EGO_PN}/{doc,{README,CONTRIBUTING}.md} -} diff --git a/dev-util/promu/promu-0.3.0.ebuild b/dev-util/promu/promu-0.3.0.ebuild deleted file mode 100644 index 9a9de86366a8..000000000000 --- a/dev-util/promu/promu-0.3.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build golang-vcs-snapshot - -EGO_PN="github.com/prometheus/promu" -EGIT_COMMIT="295a70a7f580b886572861b19545b28accfd4491" -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="amd64" - -DESCRIPTION="Prometheus Utility Tool" -HOMEPAGE="https://github.com/prometheus/promu" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -DEPEND=">=dev-lang/go-1.11" - -src_prepare() { - default - sed -i -e "s/{{.Revision}}/${EGIT_COMMIT}/" src/${EGO_PN}/.promu.yml || die -} - -src_compile() { - pushd src/${EGO_PN} || die - GOCACHE="${T}/go-cache" GOPATH="${S}" go install -v github.com/prometheus/promu || die - popd || die -} - -src_install() { - dobin bin/* - dodoc -r src/${EGO_PN}/{doc,{README,CONTRIBUTING}.md} -} |