commit:     40a15eedb39aca617af12586c46feaa3b0766453
Author:     Dan Molik <dan <AT> danmolik <DOT> com>
AuthorDate: Fri Oct 18 18:59:27 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Oct 23 13:16:05 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40a15eed

app-admin/terraform: clean up old versions of Terraform

0.11.13 purposely omitted for backwards compatibility

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Dan Molik <dan <AT> danmolik.com>
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 app-admin/terraform/Manifest                 |  2 --
 app-admin/terraform/terraform-0.11.12.ebuild | 40 ----------------------------
 app-admin/terraform/terraform-0.12.3.ebuild  | 37 -------------------------
 3 files changed, 79 deletions(-)

diff --git a/app-admin/terraform/Manifest b/app-admin/terraform/Manifest
index 9d2fbb52b1a..76402d02300 100644
--- a/app-admin/terraform/Manifest
+++ b/app-admin/terraform/Manifest
@@ -1,4 +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
 DIST terraform-0.12.11.tar.gz 10338506 BLAKE2B 
62c33591d55345e8c3b9c61b6f9279a81f1df86f5942cee787e4b525eefdf7834f0e4a6a42835b4ae038591fd467941454be674a3c1c8b329ef52c7d5e39359b
 SHA512 
2b9fc6157aea8e7159d7089135620433d75843f2b3dd48af18ecb7837a5ca3ea72d9dfb8b36a25a65f9b9cc29b11bc7910f124a359a6589bfb941a714e0b7b23
-DIST terraform-0.12.3.tar.gz 9702723 BLAKE2B 
90a6c77d1e1d6cac761572a470e23d44705fd0326ea9e2b280f51d9c95c85a74951ed93d8d8eed56821209bbd0725ffc034cf19bbb2da2baa390eafac790ac76
 SHA512 
49e1fefbfaf0dc0b0505836133c95dd5b664babfbdec094288ac823678cfb6e1593b19c9a0dca608cb1c7063f1ad531adba470c5ec67e3d245ef1e4341fd5b4a

diff --git a/app-admin/terraform/terraform-0.11.12.ebuild 
b/app-admin/terraform/terraform-0.11.12.ebuild
deleted file mode 100644
index a70144a8d83..00000000000
--- a/app-admin/terraform/terraform-0.11.12.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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}" >/dev/null || die
-       einstalldocs
-       popd >/dev/null || die
-}
-
-pkg_postinst() {
-       elog "If you would like to install shell completions please run:"
-       elog "    terraform -install-autocomplete"
-}

diff --git a/app-admin/terraform/terraform-0.12.3.ebuild 
b/app-admin/terraform/terraform-0.12.3.ebuild
deleted file mode 100644
index da8687cc0e5..00000000000
--- a/app-admin/terraform/terraform-0.12.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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=( src/${EGO_PN}/{README,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
-
-       einstalldocs
-}
-
-pkg_postinst() {
-       elog "If you would like to install shell completions please run:"
-       elog "    terraform -install-autocomplete"
-}

Reply via email to