From 766dae6306eab8ca7e982499e2cab68eb5ecb105 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 21 Aug 2022 02:40:11 +0100 Subject: gentoo auto-resync : 21:08:2022 - 02:40:11 --- sys-cluster/kubectl/kubectl-1.23.10.ebuild | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 sys-cluster/kubectl/kubectl-1.23.10.ebuild (limited to 'sys-cluster/kubectl/kubectl-1.23.10.ebuild') diff --git a/sys-cluster/kubectl/kubectl-1.23.10.ebuild b/sys-cluster/kubectl/kubectl-1.23.10.ebuild new file mode 100644 index 000000000000..93befd485395 --- /dev/null +++ b/sys-cluster/kubectl/kubectl-1.23.10.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 go-module + +DESCRIPTION="CLI to run commands against Kubernetes clusters" +HOMEPAGE="https://kubernetes.io" +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="hardened" + +BDEPEND=">=dev-lang/go-1.17" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +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} +} -- cgit v1.2.3