diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2018-10-28 17:11:12 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2018-10-28 17:11:12 +0100 |
commit | ea5d63be68f79e5b8c94719f838281a0f2b04283 (patch) | |
tree | 87b178eae5f29bdf999104616a62b97bf295e398 /sys-cluster/minikube/minikube-0.30.0.ebuild | |
parent | dev-python/prometheus_client: Version bump to 0.4.2 (diff) | |
download | gentoo-ea5d63be68f79e5b8c94719f838281a0f2b04283.tar.gz gentoo-ea5d63be68f79e5b8c94719f838281a0f2b04283.tar.bz2 gentoo-ea5d63be68f79e5b8c94719f838281a0f2b04283.zip |
sys-cluster/minikube: Version bump to 0.30.0
Signed-off-by: Manuel Rüger <mrueg@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'sys-cluster/minikube/minikube-0.30.0.ebuild')
-rw-r--r-- | sys-cluster/minikube/minikube-0.30.0.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sys-cluster/minikube/minikube-0.30.0.ebuild b/sys-cluster/minikube/minikube-0.30.0.ebuild new file mode 100644 index 000000000000..4a324bff4ad4 --- /dev/null +++ b/sys-cluster/minikube/minikube-0.30.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit python-any-r1 golang-build golang-vcs-snapshot + +EGO_PN="k8s.io/minikube" +ARCHIVE_URI="https://github.com/kubernetes/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="Single Node Kubernetes Cluster" +HOMEPAGE="https://github.com/kubernetes/minikube https://kubernetes.io" +SRC_URI="${ARCHIVE_URI}" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="hardened libvirt" + +DEPEND="dev-go/go-bindata + ${PYTHON_DEPS} + libvirt? ( app-emulation/libvirt[qemu] )" +RDEPEND=">=sys-cluster/kubectl-1.10.0" + +RESTRICT="test" + +src_prepare() { + default + sed -i -e 's/ -s -w/ -w/' -e 's#.*GOBIN=$(GOPATH)/bin go get github.com/jteeuwen/go-bindata/...##' -e 's#$(GOPATH)/bin/go-bindata#/usr/bin/go-bindata#g' src/${EGO_PN}/Makefile || die + sed -i -e "s/get_commit(), get_tree_state(), get_version()/get_commit(), 'gitTreeState=clean', get_version()/" src/${EGO_PN}/hack/get_k8s_version.py || die +} + +src_compile() { + export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" + LDFLAGS="" GOFLAGS="-v" GOPATH="${WORKDIR}/${P}" emake -C src/${EGO_PN} $(usex libvirt "out/docker-machine-driver-kvm2" "") out/minikube-linux-amd64 +} + +src_install() { + pushd src/${EGO_PN} || die + newbin out/minikube-linux-amd64 minikube + use libvirt && dobin out/docker-machine-driver-kvm2 + dodoc -r docs CHANGELOG.md README.md + popd || die +} + +pkg_postinst() { + elog "You may want to install the following optional dependency:" + elog " app-emulation/virtualbox or app-emulation/virtualbox-bin" +} |