app-admin/terragrunt-bin: Add 0.93.11, adopt.

drop old versions

Signed-off-by: Gabriel de Moura Dutra <hi@dutra.sh>
This commit is contained in:
Gabriel de Moura Dutra
2025-11-30 13:37:10 -03:00
parent 6bd620a493
commit 5bbcef6235
5 changed files with 5 additions and 55 deletions

View File

@@ -1,3 +1 @@
DIST terragrunt-bin-0.38.6.bin 35379973 BLAKE2B 03d6d21a933aac91775d15e6f4e3f7434353bea9e8b4dd1ce7add38f86aebb78cbfb91cc7d6aacc3d96945f1c07713e27f20e4e15a616bfa6d2d395938a7831d SHA512 d72c821de9bc8c5df3432e7f2e4f105c222fb303f80775e2f5798d54686d00c15ff064092b5bff6a8808c575bf921fa2afd0b22e05def4cc47067a13b6560192
DIST terragrunt-bin-0.45.4.bin 44067450 BLAKE2B 7e9c57e8e74066e177e328fef26358692fb1867d83ec2287b4cc1ff914bc1801d9dc1ce106b187245ef07723bac77873ad4d8a52a10ef6a8cbd4f1f166a9ef69 SHA512 18a1897b245e637ba98321e95a10dd9586666f9771b48ca20f39f42e2bdeecd51519e2fbe78c94858141844332c3ee5bfea80255dfc06bad7f94782bac5b436d
DIST terragrunt-bin-0.50.8.bin 46866216 BLAKE2B b8c28692ed77d9b590a2baecb4146665878739cebd4f75f027bef7e2ccf6885ffacd00f10cd857df84777a2e08fd140aa18d705459229c0bb3900b5b773b9891 SHA512 47567fc5f4f010ef6463cf3370c5bcac7034049af0b511da570b113f112542eb31e05e86a66d38113c41da127ffe990b81d6872a7ae8794f0e77ee5eea94b797
DIST terragrunt-bin-0.93.11.bin 74916024 BLAKE2B 736875e5bc32d115b8b8a8ceea6d4b612f14832de4475c0cbdce6833dfe7ec3e32bad6c2cfc623e1c7852eaeb633ac10be0fd2efabb7ce85c228800c9e0372d9 SHA512 2dd349ac600149979aaa7c8131004a189a51a392e7b1f20f53e04375ef6f6923bf941fd9bb1ee8f1511c54d0ca5db43ac12cf4f001716c76c14ab2a802f444f8

View File

@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<maintainer type="person">
<email>hi@dutra.sh</email>
<name>Gabriel M. Dutra</name>
</maintainer>
<longdescription lang="en">
Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. https://terragrunt.gruntwork.io
</longdescription>

View File

@@ -1,28 +0,0 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-lang/go
"
RDEPEND="${DEPEND}"
src_unpack() {
mkdir -p -- "${S}"
cp -- "${DISTDIR}/${A}" "${S}/${PN%-bin}"
}
src_compile() { :; }
src_install() {
dobin "${S}/${PN%-bin}"
}

View File

@@ -1,23 +0,0 @@
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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"
QA_FLAGS_IGNORED=".*"
src_unpack() {
cp "${DISTDIR}/${P}.bin" terragrunt || die
}
src_install() {
dobin terragrunt
}