Install this version:
emerge -a =dev-util/tflint-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-util/tflint-9999
Or alternatively:
emerge --autounmask-write -a =dev-util/tflint-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 go-module
DESCRIPTION="A Pluggable Terraform Linter"
HOMEPAGE="https://github.com/terraform-linters/tflint"
EGIT_REPO_URI="https://github.com/terraform-linters/${PN}.git"
LICENSE="MPL-2.0"
SLOT="0"
RESTRICT="test"
PROPERTIES="test_network"
BDEPEND=">=dev-lang/go-1.26.3:="
src_unpack() {
git-r3_src_unpack
go-module_live_vendor
}
src_compile() {
ego build -o dist/tflint
}
src_test() {
mapfile -t pkgs < <( ego list ./... | grep -Ev '/(test-fixtures|stub-generator|integrationtest)' )
ego test -timeout 5m -skip 'Test_Discovery|Test_FindPluginPath|TestLoadConfig' "${pkgs[@]}"
}
src_install() {
einstalldocs
dobin dist/tflint
}