From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1074896-garchives=archives.gentoo.org@lists.gentoo.org> 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 A314F138334 for <garchives@archives.gentoo.org>; 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 5BEF5E0880; 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 321BFE0880 for <gentoo-commits@lists.gentoo.org>; 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 D4D1A335D1A for <gentoo-commits@lists.gentoo.org>; Thu, 28 Feb 2019 22:49:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F9A7557 for <gentoo-commits@lists.gentoo.org>; Thu, 28 Feb 2019 22:49:45 +0000 (UTC) From: "Patrice Clement" <monsieurp@gentoo.org> 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" <monsieurp@gentoo.org> Message-ID: <1551394175.741c18278755f8ef6420ecbbc58e5eeb7fd96c79.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-r1.ebuild X-VCS-Directories: app-admin/terraform/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 741c18278755f8ef6420ecbbc58e5eeb7fd96c79 X-VCS-Branch: master Date: Thu, 28 Feb 2019 22:49:45 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c90882ac-c175-4b72-9e12-91e26310cbd2 X-Archives-Hash: fb34c12e680b58ee5d3dbd24795e8b5f commit: 741c18278755f8ef6420ecbbc58e5eeb7fd96c79 Author: Dan Molik <dan <AT> danmolik <DOT> com> AuthorDate: Tue Feb 5 12:51:44 2019 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Thu Feb 28 22:49:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=741c1827 app-admin/terraform: add DOCS and post-install instructions. Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Dan Molik <dan <AT> danmolik.com> Closes: https://github.com/gentoo/gentoo/pull/10987 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org> app-admin/terraform/terraform-0.11.11-r1.ebuild | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/app-admin/terraform/terraform-0.11.11-r1.ebuild b/app-admin/terraform/terraform-0.11.11-r1.ebuild new file mode 100644 index 00000000000..7fbea19820f --- /dev/null +++ b/app-admin/terraform/terraform-0.11.11-r1.ebuild @@ -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" +}