Install this version:
emerge -a =dev-util/kube-linter-0.8.3
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-util/kube-linter-0.8.3
Or alternatively:
emerge --autounmask-write -a =dev-util/kube-linter-0.8.3
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.8.3 | 8 | ~amd64 | 0 |
# Copyright 2022-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module shell-completion sysroot
DESCRIPTION="kubernetes yaml and helm chart static analysis tool"
HOMEPAGE="https://kubelinter.io"
SRC_URI="https://github.com/stackrox/kube-linter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND=">=dev-lang/go-1.25.5"
src_prepare() {
default
sed -i -e "s/-race//" Makefile || die
# Doesn't pass in ebuild env
sed -e 's/TestCreateContextsWithIgnorePaths/_&/' -i pkg/lintcontext/create_contexts_test.go || die
}
src_compile() {
ego build -o kube-linter ./cmd/kube-linter
einfo "generating shell completion files"
sysroot_try_run_prefixed ./kube-linter completion bash > ${PN}.bash || die
sysroot_try_run_prefixed ./kube-linter completion zsh > ${PN}.zsh || die
sysroot_try_run_prefixed ./kube-linter completion fish > ${PN}.fish || die
}
src_test() {
emake test
}
src_install() {
dobin kube-linter
dodoc -r config.yaml.example docs/*
[[ -s ${PN}.bash ]] && newbashcomp ${PN}.bash ${PN}
[[ -s ${PN}.zsh ]] && newzshcomp ${PN}.zsh _${PN}
[[ -s ${PN}.fish ]] && dofishcomp ${PN}.fish
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | kube-linter-0.8.3.tar.gz | 413014 bytes | https://github.com/stackrox/kube-linter/archive/v0.8.3.tar.gz |