app-admin/terragrunt-bin: Update to 0.50.8

ChangeLog: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.50.8

Signed-off-by: Gabriel Dutra <nulldutra@proton.me>
This commit is contained in:
Gabriel Dutra
2023-08-26 14:37:18 -03:00
parent 0eb28c38bc
commit 87231bc0c4
2 changed files with 24 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
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

View File

@@ -0,0 +1,23 @@
# 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
}