dev-util/tflint-bin: new package, add 0.43.0

Signed-off-by: Gabriel M. Dutra <0xdutra@gmail.com>
This commit is contained in:
Gabriel M. Dutra
2022-12-03 00:55:56 -03:00
parent 4cdd2ac207
commit 7fae0f8511
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST tflint-bin-0.43.0.zip 8018986 BLAKE2B abfa427da1ffc9707647b0808e350b8b2d7e0f7c73802c06588df0948208d51a17004ca6b44302963ed6d6b16ef7352b2a0a2f76fa3af73285ecbbf668f789ed SHA512 965967f8b1758f935ef983f988d2d9cd5fced9f5b5ecb698aa814dd129478e07105132e11a0be54a58f4813092e930be7468cdeb9be9bd3cfb05f42eec05f1c1

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>0xdutra@gmail.com</email>
<name>Gabriel M. Dutra</name>
</maintainer>
<longdescription lang="en">
Terraform linter
Features:
- Find possible errors (like invalid instance types) for AWS/Azure/GCP
- Warn abount deprecated syntax, unused declarations
- Enforce best pratices, naming conventions
</longdescription>
</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
}