commit: 67b54e2c33fcd971035d2179176d2db3eb45ff07 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Thu Mar 6 17:56:18 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Thu Mar 6 17:56:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b54e2c
sys-cluster/kubeadm: fix LICENSE for dependent Closes: https://bugs.gentoo.org/695304 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> sys-cluster/kubeadm/kubeadm-1.32.2.ebuild | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/sys-cluster/kubeadm/kubeadm-1.32.2.ebuild b/sys-cluster/kubeadm/kubeadm-1.32.2.ebuild index d654dd467d29..57cee2fa8c26 100644 --- a/sys-cluster/kubeadm/kubeadm-1.32.2.ebuild +++ b/sys-cluster/kubeadm/kubeadm-1.32.2.ebuild @@ -2,21 +2,21 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit bash-completion-r1 go-module + +inherit go-module toolchain-funcs shell-completion DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster" HOMEPAGE="https://kubernetes.io" SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" - S="${WORKDIR}/kubernetes-${PV}" LICENSE="Apache-2.0" +# Dependent licenses +LICENSE+=" Apache-2.0 BSD BSD-2 ISC MIT" SLOT="0" KEYWORDS="~amd64 ~arm64" - IUSE="hardened selinux" - -RESTRICT+=" test" +RESTRICT="test" RDEPEND="app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes )" @@ -25,13 +25,21 @@ BDEPEND=">=dev-lang/go-1.23.3" src_compile() { CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" FORCE_HOST_GO=yes \ emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} + + if ! tc-is-cross-compiler; then + elog "generating shell completion files" + _output/bin/${PN} completion bash > ${PN}.bash || die + _output/bin/${PN} completion zsh > ${PN}.zsh || die + fi } src_install() { dobin _output/bin/${PN} - _output/bin/${PN} completion bash > ${PN}.bash || die - _output/bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - insinto /usr/share/zsh/site-functions - newins ${PN}.zsh _${PN} + + if ! tc-is-cross-compiler; then + newbashcomp ${PN}.bash ${PN} + newzshcomp ${PN}.zsh _${PN} + else + ewarn "Shell completion files not installed! Install them manually with '${PN} completion --help'" + fi }
