Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/minikube/
Date: Fri, 28 Sep 2018 13:28:26
Message-Id: 1538141283.1f8f153c97fc6450495e08a7a3e30d68b3685255.mrueg@gentoo
1 commit: 1f8f153c97fc6450495e08a7a3e30d68b3685255
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 28 13:28:03 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 28 13:28:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f8f153c
7
8 sys-cluster/minikube: Version bump to 0.29.0
9
10 Package-Manager: Portage-2.3.50, Repoman-2.3.11
11
12 sys-cluster/minikube/Manifest | 1 +
13 sys-cluster/minikube/minikube-0.29.0.ebuild | 50 +++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/sys-cluster/minikube/Manifest b/sys-cluster/minikube/Manifest
17 index 89445bfe2f9..55405750d92 100644
18 --- a/sys-cluster/minikube/Manifest
19 +++ b/sys-cluster/minikube/Manifest
20 @@ -1,3 +1,4 @@
21 DIST minikube-0.28.0.tar.gz 20350636 BLAKE2B 002bf7a45483a724d9ebc4f2fa3bad5b9451d9d550211e3e93f8b75555a39358fe11798d0c4b1632c3235ee21e82adc18c9b2f6f4ba9590eb998901f870b7d52 SHA512 bbcc8540b9d64a0ac9da93f912d44c66991d8377fdb96b02a656a8919347b4dd40669c08850582ea54adce6b1ef132c41376f21f4e3cc07e5776df9a3286f4e7
22 DIST minikube-0.28.1.tar.gz 20075323 BLAKE2B 47444de4c2245d13108b5f98544f5127565ab40178f0bfdda35f710d594b36f8d98dbde8157361172a3486411f7ce32689e87d6b126ba29d21c9061dd0b22fa9 SHA512 80591777cc419ac9dc3b27d444a5d8aa04f2482bd3c47edfbb6b8a74b3552610125dfc5244bbd2659ea46600ed17577e90bcf98e0806d12932dd88c46fd0283a
23 DIST minikube-0.28.2.tar.gz 20077130 BLAKE2B 0d8047debc0ce633fe6696d760e838d5ade80128d319e66b19c6f34e34ff95a401102c5c177a4e9de9f2a46f9dbf97de675137881f84849002814f94f14d40d7 SHA512 ee2a08a7b6fa4d18c4c04fc51ac17eb0b8bc8e092c489db53bf2734c45afac919735d046a07a7b8af6a8ef41c97fcb87124409081751da9134cfe032ca86aacb
24 +DIST minikube-0.29.0.tar.gz 9176207 BLAKE2B 54099d2d42f9cd155748ed0d476659214b3ca0edb5a9ee39c7ff0468175596dcbb3d729b6e19099a339300b0611aa6956c929e591d855c0fd0b00d41dae3af95 SHA512 9a897012333a325c4880e55d69fb71d3537d10a15e3c7214da0232f23fd07128dd788f04c15ce622ef7669034ff06214b72e2fd1713a76f9d8faf43641061955
25
26 diff --git a/sys-cluster/minikube/minikube-0.29.0.ebuild b/sys-cluster/minikube/minikube-0.29.0.ebuild
27 new file mode 100644
28 index 00000000000..f55d3182b85
29 --- /dev/null
30 +++ b/sys-cluster/minikube/minikube-0.29.0.ebuild
31 @@ -0,0 +1,50 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
37 +
38 +inherit python-any-r1 golang-build golang-vcs-snapshot
39 +
40 +EGO_PN="k8s.io/minikube"
41 +ARCHIVE_URI="https://github.com/kubernetes/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +KEYWORDS="~amd64"
43 +
44 +DESCRIPTION="Single Node Kubernetes Cluster"
45 +HOMEPAGE="https://github.com/kubernetes/minikube https://kubernetes.io"
46 +SRC_URI="${ARCHIVE_URI}"
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +IUSE="hardened libvirt"
51 +
52 +DEPEND="dev-go/go-bindata
53 + ${PYTHON_DEPS}
54 + libvirt? ( app-emulation/libvirt[qemu] )"
55 +RDEPEND=">=sys-cluster/kubectl-1.10.0"
56 +
57 +RESTRICT="test"
58 +
59 +src_prepare() {
60 + default
61 + 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
62 + 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
63 +}
64 +
65 +src_compile() {
66 + export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')"
67 + LDFLAGS="" GOFLAGS="-v" GOPATH="${WORKDIR}/${P}" emake -C src/${EGO_PN} $(usex libvirt "out/docker-machine-driver-kvm2" "") out/minikube-linux-amd64
68 +}
69 +
70 +src_install() {
71 + pushd src/${EGO_PN} || die
72 + newbin out/minikube-linux-amd64 minikube
73 + dobin $(usex libvirt "out/docker-machine-driver-kvm2" "")
74 + dodoc -r docs CHANGELOG.md README.md
75 + popd || die
76 +}
77 +
78 +pkg_postinst() {
79 + elog "You may want to install the following optional dependency:"
80 + elog " app-emulation/virtualbox or app-emulation/virtualbox-bin"
81 +}