commit: 3bb1f5f50da94d655c1532cf3c275c1b33bda79f Author: Kenton Groombridge <concord <AT> gentoo <DOT> org> AuthorDate: Tue Feb 24 00:39:02 2026 +0000 Commit: Kenton Groombridge <concord <AT> gentoo <DOT> org> CommitDate: Tue Feb 24 00:44:44 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb1f5f5
sys-cluster/kubelogin: drop 1.34.0 Signed-off-by: Kenton Groombridge <concord <AT> gentoo.org> sys-cluster/kubelogin/kubelogin-1.34.0.ebuild | 35 --------------------------- 1 file changed, 35 deletions(-) diff --git a/sys-cluster/kubelogin/kubelogin-1.34.0.ebuild b/sys-cluster/kubelogin/kubelogin-1.34.0.ebuild deleted file mode 100644 index 46236f1a2bf5..000000000000 --- a/sys-cluster/kubelogin/kubelogin-1.34.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module shell-completion - -DESCRIPTION="kubectl plugin for Kubernetes OpenID Connect authentication" -HOMEPAGE="https://github.com/int128/kubelogin" -SRC_URI="https://github.com/int128/kubelogin/archive/v${PV}.tar.gz -> ${P}.tar.gz" -SRC_URI+=" https://dev.gentoo.org/~concord/distfiles/${P}-deps.tar.xz" - -LICENSE="Apache-2.0 BSD BSD-2 ISC MIT" -SLOT="0" -KEYWORDS="amd64 arm64" - -src_prepare() { - default - - # -buildmode=pie not supported when -race is enabled - if [[ ${GOFLAGS} == *buildmode=pie* ]]; then - sed -e 's/ -race / /' -i Makefile || die - fi -} - -src_compile() { - ego build -ldflags="-s -w" -o ./bin/${PN} . -} - -src_install() { - newbin bin/${PN} "kubectl-oidc_login" - bin/${PN} completion bash > ${PN}.bash || die - bin/${PN} completion zsh > ${PN}.zsh || die - newbashcomp ${PN}.bash ${PN} - newzshcomp ${PN}.zsh _${PN} -}
