Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/terraform/
Date: Thu, 28 Feb 2019 22:49:51
Message-Id: 1551394177.0854912364c6d91079951c9088c5a4101038aefa.monsieurp@gentoo
1 commit: 0854912364c6d91079951c9088c5a4101038aefa
2 Author: Dan Molik <dan <AT> danmolik <DOT> com>
3 AuthorDate: Tue Feb 5 12:53:22 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 22:49:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08549123
7
8 app-admin/terraform: remove older barer terraform.
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Dan Molik <dan <AT> danmolik.com>
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-admin/terraform/terraform-0.11.11.ebuild | 28 ----------------------------
15 1 file changed, 28 deletions(-)
16
17 diff --git a/app-admin/terraform/terraform-0.11.11.ebuild b/app-admin/terraform/terraform-0.11.11.ebuild
18 deleted file mode 100644
19 index 15c8b080b17..00000000000
20 --- a/app-admin/terraform/terraform-0.11.11.ebuild
21 +++ /dev/null
22 @@ -1,28 +0,0 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit golang-vcs-snapshot
29 -
30 -DESCRIPTION="A tool for building, changing, and combining infrastructure safely"
31 -HOMEPAGE="https://www.terraform.io/"
32 -
33 -EGO_PN="github.com/hashicorp/${PN}"
34 -SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 -
36 -LICENSE="MPL-2.0"
37 -SLOT="0"
38 -KEYWORDS="~amd64"
39 -IUSE=""
40 -DEPEND=">=dev-lang/go-1.11.0"
41 -
42 -src_compile() {
43 - cd "src/${EGO_PN}" || die
44 - GOPATH="${S}" GOCACHE="${T}/go-cache" go build \
45 - -v -work -o "${S}/${PN}" ./ || die
46 -}
47 -
48 -src_install() {
49 - dobin terraform
50 -}