dev-util/tflint-bin: bump 0.46.0

Signed-off-by: Gabriel M. Dutra <gentoobeer@gmail.com>
This commit is contained in:
Gabriel M. Dutra
2023-04-21 01:26:10 -03:00
parent 7bda70bd97
commit 8672ebf7d4
3 changed files with 27 additions and 1 deletions

View File

@@ -1 +1,2 @@
DIST tflint-bin-0.43.0.zip 8018986 BLAKE2B abfa427da1ffc9707647b0808e350b8b2d7e0f7c73802c06588df0948208d51a17004ca6b44302963ed6d6b16ef7352b2a0a2f76fa3af73285ecbbf668f789ed SHA512 965967f8b1758f935ef983f988d2d9cd5fced9f5b5ecb698aa814dd129478e07105132e11a0be54a58f4813092e930be7468cdeb9be9bd3cfb05f42eec05f1c1
DIST tflint-bin-0.46.0.zip 9015995 BLAKE2B a6c95742a5f11cde3d0b016c3623adaa432079cab2de658cf428419f7266f8aef1e97f7f5557d7a600c7c76cb93cb5ba46f13601dd6e3a2fc71dea96d4f110f9 SHA512 442746b2abcf585e1121c4c7e61f57294105225c0f833eea8c5d895018cd2e18880ab6a72f5576d85ba83d756153db0956440781f5b9f35be5e99b39ffc09fdc

View File

@@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>0xdutra@gmail.com</email>
<email>gentoober@gmail.com</email>
<name>Gabriel M. Dutra</name>
</maintainer>
<longdescription lang="en">
@@ -12,4 +12,7 @@
- Warn abount deprecated syntax, unused declarations
- Enforce best pratices, naming conventions
</longdescription>
<upstream>
<remote-id type="github">terraform-linters/tflint</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,22 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A Pluggable Terraform Linter"
HOMEPAGE="https://github.com/terraform-linters/tflint"
SRC_URI="https://github.com/terraform-linters/${PN%-bin}/releases/download/v${PV}/tflint_linux_amd64.zip -> ${P}.zip"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
BDEPEND="app-arch/unzip"
S=${WORKDIR}
src_compile() { :; }
src_install() {
newbin ${PN%-bin} tflint
}