blob: 20babcd4349a2c16c16e541ae5c1c58ca74e973c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 go-module toolchain-funcs
GIT_COMMIT=210b148df93a80eb872ecbeb7e35281b3c582c61
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/kubernetes/minikube/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
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 ~arm64"
IUSE="hardened libvirt"
COMMON_DEPEND="libvirt? ( app-emulation/libvirt:=[qemu] )"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"
BDEPEND="dev-go/go-bindata"
RESTRICT="test"
src_unpack() {
default
}
src_prepare() {
ln -sv ../vendor ./ || die
default
}
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"
}
|