app-admin/terraform: update to 0.11.13
authorDan Molik <dan@danmolik.com>
Mon, 18 Mar 2019 11:37:56 +0000 (07:37 -0400)
committerAmy Liffey <amynka@gentoo.org>
Sun, 14 Apr 2019 20:06:24 +0000 (22:06 +0200)
Closes: https://github.com/gentoo/gentoo/pull/11404
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Dan Molik <dan@danmolik.com>
Tested-by: Dan Molik <dan@danmolik.com>
Signed-off-by: Amy Liffey <amynka@gentoo.org>
app-admin/terraform/Manifest
app-admin/terraform/terraform-0.11.13.ebuild [new file with mode: 0644]

index 579b99443256c828652bb372ffba9a1a59b3c8e5..26c3674d61bfe5bd75706cbf0fb23e5d2aa37d45 100644 (file)
@@ -1 +1,2 @@
 DIST terraform-0.11.12.tar.gz 10907800 BLAKE2B d6d3c0a25b994be9b61e250a35adae55ed6cea0cc2166ea62774940292d9e881f16b66b88b19d5fd2c64d19bdefb82b58c79c54d8c641e1ad2970ef9a463c4c8 SHA512 2163cbc13a2bd37b7dace0a4ee2b3da4ee212038f9d6e11b83e509a794cf8d854040c366a099c9560a149157c6951b1f9d1698b4c47bd11a4fa96c4521e93414
+DIST terraform-0.11.13.tar.gz 10906645 BLAKE2B dafdc1acddd4ea97b41cc5899a541701731fce7b13b914c0859fe148b10b5c8ac877d71b665e8d80a65f376bb09fb8ae6fd0e0263ff711a156ca48119522f89d SHA512 1c16f20d1a65c763f1091ff2d20e0752e62903e07a12d41dd722e5c4c989f477da7d64901336d7536ed1693d5c82f4548ae5a643edae85b4e83325fc8c81b245
diff --git a/app-admin/terraform/terraform-0.11.13.ebuild b/app-admin/terraform/terraform-0.11.13.ebuild
new file mode 100644 (file)
index 0000000..7fbea19
--- /dev/null
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-vcs-snapshot
+
+DESCRIPTION="A tool for building, changing, and combining infrastructure safely"
+HOMEPAGE="https://www.terraform.io/"
+
+EGO_PN="github.com/hashicorp/${PN}"
+SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+DEPEND=">=dev-lang/go-1.11.0"
+
+DOCS="README.md CHANGELOG.md"
+
+src_compile() {
+       cd "src/${EGO_PN}" || die
+       GOPATH="${S}" GOCACHE="${T}/go-cache" go build \
+               -v -work -o "${S}/${PN}" ./ || die
+}
+
+src_install() {
+       dobin terraform
+
+       pushd "src/${EGO_PN}" || die
+       einstalldocs
+       popd || die
+}
+
+pkg_postinst() {
+       elog "If you would like to install shell completions please run:"
+       elog "    terraform -install-autocomplete"
+}