commit:     d5f2ada15b5e5a1c04c421df4b016ec42e71b6d9
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 18 15:56:13 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Feb 18 15:56:13 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f2ada1

sys-cluster/minikube: Version bump to 0.34.1

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 sys-cluster/minikube/Manifest               |  1 +
 sys-cluster/minikube/minikube-0.34.1.ebuild | 50 +++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/sys-cluster/minikube/Manifest b/sys-cluster/minikube/Manifest
index 6c462cfc262..7509cbf4adc 100644
--- a/sys-cluster/minikube/Manifest
+++ b/sys-cluster/minikube/Manifest
@@ -3,3 +3,4 @@ DIST minikube-0.31.0.tar.gz 9213283 BLAKE2B 
97440d26d724e54d265ee9c3602c2dc0cfd4
 DIST minikube-0.32.0.tar.gz 9216759 BLAKE2B 
0b823ea3e9d912d3caeb7fe4cb28390c718fcc77c509bf4fac9b8e318fc70ca8152795de28c56f1a117f42181b4e668f267a710c058003727f4e07a1be2ea0b4
 SHA512 
e760f92155accd27b5851e45931207222170027ac26e16285df0cb876fd6f49f51c5c258a159cb2595656f5a0f20115cb94f34e8368c344f2ecc39c863d6f67c
 DIST minikube-0.33.0.tar.gz 9433237 BLAKE2B 
bf05d05d6323b3a4d656a7522fec464d01c1d02d69c6079dc520a6e9ca356a25c231cb661aaf037d2a20d2091ca1b030fc7e3609576644efe1413f620eee0ef3
 SHA512 
1204618591048878c9160f2b3d69f6cb6e6139a603071407b5539e9747a79eb73481cb515e7cb413d7925b981f69ced044eb8a0a7dd3aa3fee9042e75372b13e
 DIST minikube-0.33.1.tar.gz 9434081 BLAKE2B 
a29c3293f67e33fa0f5ece632db1a852a3bbd6f2c522699e59148a41277bf819c20d5d27034c71f89df2a5d7895c2dbf3166c11661e98be38267fbd5b2c25ab5
 SHA512 
c4a266c2d68264155ebc6dcbd3788ed77678c86310be469e595cd6f1d89677082cd8445e9dd456ec7d7433922fd0e7d4315614c2a62640ce9efc7adceb0e7cb8
+DIST minikube-0.34.1.tar.gz 11048222 BLAKE2B 
7451d310079f58c5a81383b3801faa153aeca9be6a93dd553d4220e203ce5ad06c2c5b1d0a7601bd76c9f05881c99ceabd959d1b290daa9c0ffce8b2f59c4e69
 SHA512 
004e403be9300b93a734eabe0fadf01fbfb7f13e04564df08924a6681109b1c155979728561aadce94265920ff3706785390d7ee9000a5072789127185d2a1d4

diff --git a/sys-cluster/minikube/minikube-0.34.1.ebuild 
b/sys-cluster/minikube/minikube-0.34.1.ebuild
new file mode 100644
index 00000000000..dfa9435d583
--- /dev/null
+++ b/sys-cluster/minikube/minikube-0.34.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 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"
+}

Reply via email to