commit: 6a319cbfc4609b159afc7a08ef87bf00656ccacc Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Sat Apr 29 05:43:07 2023 +0000 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> CommitDate: Sat Apr 29 05:43:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6a319cbf
app-admin/terragrunt-bin: add QA_FLAGS_IGNORED Closes: https://bugs.gentoo.org/884545 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in> app-admin/terragrunt-bin/terragrunt-bin-0.45.4.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app-admin/terragrunt-bin/terragrunt-bin-0.45.4.ebuild b/app-admin/terragrunt-bin/terragrunt-bin-0.45.4.ebuild index 7f65393f1..1745a1d3f 100644 --- a/app-admin/terragrunt-bin/terragrunt-bin-0.45.4.ebuild +++ b/app-admin/terragrunt-bin/terragrunt-bin-0.45.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,21 +6,18 @@ EAPI=8 DESCRIPTION="A thin wrapper for Terraform" HOMEPAGE="https://www.gruntwork.io" SRC_URI="https://github.com/gruntwork-io/${PN%-bin}/releases/download/v${PV}/terragrunt_linux_amd64 -> ${P}.bin" +S="${WORKDIR}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64" -IUSE="" +KEYWORDS="-* ~amd64" -BDEPEND="" +QA_FLAGS_IGNORED=".*" src_unpack() { - mkdir -p -- "${S}" - cp -- "${DISTDIR}/${A}" "${S}/${PN%-bin}" + cp "${DISTDIR}/${P}.bin" terragrunt || die } -src_compile() { :; } - src_install() { - dobin "${S}/${PN%-bin}" + dobin terragrunt }
