mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-cluster/minikube: drop 1.26.1, 1.27.1
Bug: https://bugs.gentoo.org/905388 Signed-off-by: Zac Medico <zmedico@gentoo.org>
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST minikube-1.26.1-vendor.tar.gz 104831112 BLAKE2B 532856492a6b7759d3aaccf9baf9dd603b81953d8691d4df5aef8a667cde13d4035728e31ba52d440fb18661be94cf406ff101eed1a9fe1e2b86fc845a9268c5 SHA512 d9efe06a4912df67543246aae92ccfae62d7e0e25480761bbf0705d2867481d8cd89ea2441bd318e5ce0d682deaf5b81ae3a40000c270a0d6884ba07f69909f3
|
||||
DIST minikube-1.27.1-vendor.tar.gz 105040688 BLAKE2B 7694ad7306b7bb9004f9fb766a6c1dea57970318433bc5c0886be9c261299cce5dd590188009ef2e19060badf9755f155f336e8224670040faa873802deffc02 SHA512 296ec071b9a906c17bbfd9c53a42d10106e20f71d5c16197b44fcb9ba8f4c544945e0eb21a06bc7bde9f6eeaad5a5a81be96055505acec9effb954df14ff5837
|
||||
DIST minikube-1.30.1-vendor.tar.gz 105736819 BLAKE2B b7689ab47d1a16b99e20dd4ad9126e0892d5ec78bd6ea955b083199074dbd47cacfd89cf395668a8372281818cbd75c84139472050f3d6c81969cc002e5588a6 SHA512 d7868ac7d21416f4039a4571f933bbfaac0e5054cf8061a71d6c1e72762504eaaa356a5908fd9c445479cc0e98918e8b67a5d61e470b36df7ce6fd28d5210149
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit bash-completion-r1 go-module toolchain-funcs
|
||||
GIT_COMMIT=62e108c3dfdec8029a890ad6d8ef96b6461426dc
|
||||
GIT_COMMIT_SHORT=${GIT_COMMIT:0:9}
|
||||
|
||||
DESCRIPTION="Single Node Kubernetes Cluster"
|
||||
HOMEPAGE="https://github.com/kubernetes/minikube https://kubernetes.io"
|
||||
|
||||
SRC_URI="https://github.com/zmedico/minikube/archive/refs/tags/v${PV}-vendor.tar.gz -> ${P}-vendor.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0 BSD BSD-2 CC-BY-4.0 CC-BY-SA-4.0 CC0-1.0 GPL-2 ISC LGPL-3 MIT MPL-2.0 WTFPL-2 ZLIB || ( LGPL-3+ GPL-2 ) || ( Apache-2.0 LGPL-3+ ) || ( Apache-2.0 CC-BY-4.0 )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="hardened libvirt"
|
||||
|
||||
COMMON_DEPEND="libvirt? ( app-emulation/libvirt:=[qemu] )"
|
||||
DEPEND="${COMMON_DEPEND}"
|
||||
RDEPEND="${COMMON_DEPEND}"
|
||||
BDEPEND="dev-go/go-bindata"
|
||||
|
||||
RESTRICT+=" test"
|
||||
S=${WORKDIR}/${P}-vendor
|
||||
|
||||
src_configure() {
|
||||
case "${ARCH}" in
|
||||
amd64|arm*)
|
||||
minikube_arch="${ARCH}" ;;
|
||||
ppc64)
|
||||
# upstream does not support big-endian ppc64
|
||||
minikube_arch="${ARCH}le" ;;
|
||||
*)
|
||||
die "${ARCH} is not supported" ;;
|
||||
esac
|
||||
minikube_target="out/minikube-linux-${minikube_arch}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# out/docker-machine-driver-kvm2 target is amd64 specific
|
||||
# but libvirt useflag is masked on most arches.
|
||||
COMMIT=${GIT_COMMIT} \
|
||||
COMMIT_NO=${GIT_COMMIT} \
|
||||
COMMIT_SHORT=${GIT_COMMIT_SHORT} \
|
||||
CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
|
||||
LDFLAGS="" \
|
||||
emake \
|
||||
$(usex libvirt "out/docker-machine-driver-kvm2" "") \
|
||||
"${minikube_target}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
newbin "${minikube_target}" minikube
|
||||
use libvirt && dobin out/docker-machine-driver-kvm2
|
||||
dodoc -r site CHANGELOG.md README.md
|
||||
|
||||
if ! tc-is-cross-compiler; then
|
||||
"${minikube_target}" completion bash > "${T}/bashcomp" || die
|
||||
"${minikube_target}" completion fish > "${T}/fishcomp" || die
|
||||
"${minikube_target}" completion zsh > "${T}/zshcomp" || die
|
||||
|
||||
newbashcomp "${T}/bashcomp" minikube
|
||||
insinto /usr/share/fish/vendor_completions.d
|
||||
newins "${T}/fishcomp" minikube.fish
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins "${T}/zshcomp" _minikube
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "You may want to install the following optional dependencies:"
|
||||
elog " app-emulation/virtualbox or app-emulation/virtualbox-bin"
|
||||
elog " sys-cluster/kubectl"
|
||||
}
|
||||
@@ -1,75 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit bash-completion-r1 go-module toolchain-funcs
|
||||
GIT_COMMIT=fe869b5d4da11ba318eb84a3ac00f336411de7ba
|
||||
GIT_COMMIT_SHORT=${GIT_COMMIT:0:9}
|
||||
|
||||
DESCRIPTION="Single Node Kubernetes Cluster"
|
||||
HOMEPAGE="https://github.com/kubernetes/minikube https://kubernetes.io"
|
||||
|
||||
SRC_URI="https://github.com/zmedico/minikube/archive/refs/tags/v${PV}-vendor.tar.gz -> ${P}-vendor.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0 BSD BSD-2 CC-BY-4.0 CC-BY-SA-4.0 CC0-1.0 GPL-2 ISC LGPL-3 MIT MPL-2.0 WTFPL-2 ZLIB || ( LGPL-3+ GPL-2 ) || ( Apache-2.0 LGPL-3+ ) || ( Apache-2.0 CC-BY-4.0 )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="hardened libvirt"
|
||||
|
||||
COMMON_DEPEND="libvirt? ( app-emulation/libvirt:=[qemu] )"
|
||||
DEPEND="${COMMON_DEPEND}"
|
||||
RDEPEND="${COMMON_DEPEND}"
|
||||
BDEPEND="dev-go/go-bindata"
|
||||
|
||||
RESTRICT+=" test"
|
||||
S=${WORKDIR}/${P}-vendor
|
||||
|
||||
src_configure() {
|
||||
case "${ARCH}" in
|
||||
amd64|arm*)
|
||||
minikube_arch="${ARCH}" ;;
|
||||
ppc64)
|
||||
# upstream does not support big-endian ppc64
|
||||
minikube_arch="${ARCH}le" ;;
|
||||
*)
|
||||
die "${ARCH} is not supported" ;;
|
||||
esac
|
||||
minikube_target="out/minikube-linux-${minikube_arch}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# out/docker-machine-driver-kvm2 target is amd64 specific
|
||||
# but libvirt useflag is masked on most arches.
|
||||
COMMIT=${GIT_COMMIT} \
|
||||
COMMIT_NO=${GIT_COMMIT} \
|
||||
COMMIT_SHORT=${GIT_COMMIT_SHORT} \
|
||||
CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
|
||||
LDFLAGS="" \
|
||||
emake \
|
||||
$(usex libvirt "out/docker-machine-driver-kvm2" "") \
|
||||
"${minikube_target}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
newbin "${minikube_target}" minikube
|
||||
use libvirt && dobin out/docker-machine-driver-kvm2
|
||||
dodoc -r site CHANGELOG.md README.md
|
||||
|
||||
if ! tc-is-cross-compiler; then
|
||||
"${minikube_target}" completion bash > "${T}/bashcomp" || die
|
||||
"${minikube_target}" completion fish > "${T}/fishcomp" || die
|
||||
"${minikube_target}" completion zsh > "${T}/zshcomp" || die
|
||||
|
||||
newbashcomp "${T}/bashcomp" minikube
|
||||
insinto /usr/share/fish/vendor_completions.d
|
||||
newins "${T}/fishcomp" minikube.fish
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins "${T}/zshcomp" _minikube
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "You may want to install the following optional dependencies:"
|
||||
elog " app-emulation/virtualbox or app-emulation/virtualbox-bin"
|
||||
elog " sys-cluster/kubectl"
|
||||
}
|
||||
Reference in New Issue
Block a user