commit: af5a7a5c8a07c60332bb41d5775c4ddf71c54f9e Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Sun Jun 14 20:06:25 2020 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Sun Jun 14 20:45:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5a7a5c
dev-util/promu: update to use the go-module eclass This is a build time change, so it will not affect a live system. Signed-off-by: William Hubbs <williamh <AT> gentoo.org> dev-util/promu/promu-0.5.0.ebuild | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/dev-util/promu/promu-0.5.0.ebuild b/dev-util/promu/promu-0.5.0.ebuild index 7ede34ae7c3..64f6ce821f0 100644 --- a/dev-util/promu/promu-0.5.0.ebuild +++ b/dev-util/promu/promu-0.5.0.ebuild @@ -1,35 +1,32 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit golang-build golang-vcs-snapshot +EAPI=7 +inherit go-module -EGO_PN="github.com/prometheus/promu" EGIT_COMMIT="642a960b363a409efff7621dbf5b183d58670ec2" -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" +SRC_URI="https://github.com/prometheus/promu/archive/v${PV}.tar.gz -> ${P}.tar.gz" + LICENSE="Apache-2.0 BSD BSD-2 MIT" SLOT="0" +KEYWORDS="amd64" IUSE="" -RESTRICT="test" -DEPEND=">=dev-lang/go-1.12" +RESTRICT+=" test" src_prepare() { default - sed -i -e "s/{{.Revision}}/${EGIT_COMMIT}/" src/${EGO_PN}/.promu.yml || die + sed -i -e "s/{{.Revision}}/${EGIT_COMMIT}/" .promu.yml || die } src_compile() { - pushd src/${EGO_PN} || die - GO111MODULE=off GOCACHE="${T}/go-cache" GOPATH="${S}" go install -v github.com/prometheus/promu || die - popd || die + go build -mod=vendor . || die "compile failed" } src_install() { - dobin bin/* - dodoc -r src/${EGO_PN}/{doc,{README,CONTRIBUTING}.md} + dobin ${PN} + dodoc -r {doc,{README,CONTRIBUTING}.md} }
