diff options
author | 2025-03-19 13:42:01 +0000 | |
---|---|---|
committer | 2025-03-19 13:42:01 +0000 | |
commit | 06ee749d7b13eea6618c0055abf6243a3c405b00 (patch) | |
tree | 7586448f24943031df7f8cf623b1a832b4f4217e /sys-cluster/kind/kind-0.27.0.ebuild | |
parent | dev-go/gotestsum: add 1.12.1, drop 1.12.0 (diff) | |
download | ebuilds-06ee749d7b13eea6618c0055abf6243a3c405b00.tar.xz |
Diffstat (limited to 'sys-cluster/kind/kind-0.27.0.ebuild')
-rw-r--r-- | sys-cluster/kind/kind-0.27.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sys-cluster/kind/kind-0.27.0.ebuild b/sys-cluster/kind/kind-0.27.0.ebuild new file mode 100644 index 0000000..854220a --- /dev/null +++ b/sys-cluster/kind/kind-0.27.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2020-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module shell-completion + +DESCRIPTION="Kubernetes IN Docker" +HOMEPAGE="https://github.com/kubernetes-sigs/kind/" +BDEPEND=">=dev-lang/go-1.17" +SRC_URI="https://github.com/kubernetes-sigs/kind/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz" + +LICENSE="Apache-2.0" +LICENSE+=" MIT BSD BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RESTRICT="!test? ( test )" +DEPEND="test? ( app-containers/docker )" + +src_compile() { + ego build . + ./kind completion bash > "${PN}.bash" || die + ./kind completion fish > "${PN}.fish" || die + ./kind completion zsh > "${PN}.zsh" || die +} + +src_test() { + ego test ./... +} + +src_install() { + dobin kind + + newbashcomp "${PN}.bash" "${PN}" + dofishcomp "${PN}.fish" + newzshcomp "${PN}.zsh" "_${PN}" +} |