sys-cluster/kubectl: drop 1.31.11

Signed-off-by: William Hubbs <williamh@gentoo.org>
This commit is contained in:
William Hubbs
2025-10-06 10:43:04 -05:00
parent cac524b3b0
commit b7de6cdb4d
2 changed files with 0 additions and 37 deletions

View File

@@ -1,4 +1,3 @@
DIST kubernetes-1.31.11.tar.gz 36604733 BLAKE2B 637876d12e7167573db2dbcb1d9e59e95dc4c2ef8268167dbd201198cc1f6f921fb7b2ad01c4c2e77b96f348b19bc7a3d49bfcfce368ae1b258e91cce17c10b7 SHA512 d7c71284598bfe4b76640b2b1b5f38a613271635126e9965b1f15137a4f9b073459db63255d26d1738548c6e1c786e7251dd279aeb9f46e93aa917c32cae9b94
DIST kubernetes-1.31.12.tar.gz 36597827 BLAKE2B 65be795935aa36a230c0f16e8bad026841c81cfbad186fec612539e91ac1868ede1c1e0f9f55ea21921b6adc7af46082c8a31465a27cc63892a0a7d2f07603ac SHA512 309d706d470df337d86884c3ad1da77effc2d7da949c1f921b94809ddf7f7b60919a307f0baa39dc6105ed8a6a3f99138d13128cded65145440aa4181d9f4a59
DIST kubernetes-1.31.13.tar.gz 36604087 BLAKE2B d71a9d646187746d660f4c656a20fd9005ccdcb3d192685036474ece2efb50fd55fe259b9a1414555279899c40a2be4b37b69ca8fe8c29a91e882e2f357467ea SHA512 ab85f8bd06ec93ddba514fdf379a2addf8947c53d39ef6315ef65726f7f3b94b73d947a80be4d50bae7811f247d6c338ad56eb5ade916abce336f8b40185592a
DIST kubernetes-1.32.7.tar.gz 36377992 BLAKE2B d291530b62da3002f1f130a209a5eb20fffd036641f05fb563e2ababc226ca12d5bd166706dcbdbef5f07ac3f00b5a66978e1f46b4c5d284f43ed0581a53a68b SHA512 7c638df22ee9cb2cf5f2688dc2e4060cc5df38c33305f120a3cd808cb82628312dd20a4e41e86cdfa7f749560fa3c0e6ad7570f48db1079aca0476399196ef31

View File

@@ -1,36 +0,0 @@
# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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.23.0"
RESTRICT+=" test"
S="${WORKDIR}/kubernetes-${PV}"
QA_PRESTRIPPED=usr/bin/kubectl
src_compile() {
CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" FORCE_HOST_GO=yes \
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}
}