From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3D878138334 for ; Thu, 28 Feb 2019 22:49:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D27DE0882; Thu, 28 Feb 2019 22:49:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C0F7E0880 for ; Thu, 28 Feb 2019 22:49:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E185B335D1C for ; Thu, 28 Feb 2019 22:49:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2560558 for ; Thu, 28 Feb 2019 22:49:45 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1551394177.0854912364c6d91079951c9088c5a4101038aefa.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/terraform/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/terraform/terraform-0.11.11.ebuild X-VCS-Directories: app-admin/terraform/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 0854912364c6d91079951c9088c5a4101038aefa X-VCS-Branch: master Date: Thu, 28 Feb 2019 22:49:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1b6c4200-965d-4fbc-b5e2-c5fcd7962279 X-Archives-Hash: 1426fcd882aff599cd0ef468707baea2 commit: 0854912364c6d91079951c9088c5a4101038aefa Author: Dan Molik danmolik com> AuthorDate: Tue Feb 5 12:53:22 2019 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Feb 28 22:49:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08549123 app-admin/terraform: remove older barer terraform. Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Dan Molik danmolik.com> Signed-off-by: Patrice Clement gentoo.org> app-admin/terraform/terraform-0.11.11.ebuild | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/app-admin/terraform/terraform-0.11.11.ebuild b/app-admin/terraform/terraform-0.11.11.ebuild deleted file mode 100644 index 15c8b080b17..00000000000 --- a/app-admin/terraform/terraform-0.11.11.ebuild +++ /dev/null @@ -1,28 +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" - -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 -}