From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/minikube/
Date: Tue, 18 Oct 2022 01:52:42 +0000 (UTC) [thread overview]
Message-ID: <1666057927.c06f5fef336af4a8d7595fab727086356d8fc6b8.zmedico@gentoo> (raw)
commit: c06f5fef336af4a8d7595fab727086356d8fc6b8
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 18 01:44:39 2022 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Oct 18 01:52:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c06f5fef
sys-cluster/minikube: drop 1.25.1, 1.25.2, 1.26.0
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
sys-cluster/minikube/Manifest | 3 --
sys-cluster/minikube/minikube-1.25.1.ebuild | 75 -----------------------------
sys-cluster/minikube/minikube-1.25.2.ebuild | 75 -----------------------------
sys-cluster/minikube/minikube-1.26.0.ebuild | 75 -----------------------------
4 files changed, 228 deletions(-)
diff --git a/sys-cluster/minikube/Manifest b/sys-cluster/minikube/Manifest
index a0a5cbafb854..ce3ab3473730 100644
--- a/sys-cluster/minikube/Manifest
+++ b/sys-cluster/minikube/Manifest
@@ -1,4 +1 @@
-DIST minikube-1.25.1-vendor.tar.gz 104698545 BLAKE2B 2402594f1a876e16f36f4341136b71a84a8848c90d61789c85b1b962848e029363ec1efa051b0a08a28d38e82ee5fd52ceb0f2836078102a22de0d9cff4cc041 SHA512 661cd0261535728a119d5a0fa5f15c535092ae870f094e85dd03cbb5449ccef89c64dacec02373a7097f0a81bf2c23a91254f2257c09db54cb48249a785d06a5
-DIST minikube-1.25.2-vendor.tar.gz 103616191 BLAKE2B 6707011b208bf96670649192aef0100bee5780bc3321b41eddc12a62b2d4acbc566a8cdf557dae4a84b501c67b31ac35c77effb808bbc3ca56d65e7727977141 SHA512 2e964be6f0708a41ae1aaf1d47eabad8acf13ffafc5ae56cfd66f81ef94673d9661654c807bf2c8790ce5336f95f9fce377b82905e229e4d3534ed5d2622b5da
-DIST minikube-1.26.0-vendor.tar.gz 104726099 BLAKE2B b8dce4c567e370219c568e9b8298dc7d9b9e3b53330d644e943876683c19a80dbb77a938e3428f8662ac55f2359c473920d081c6ac8573ea79e30989ea8dcfb2 SHA512 76b6bc5a004a29864de6a0574a6abed18de6b92fd8a963576a284c8245fde31edf57fc82636299f4acaed0e69ca2134ded2e5606ed64b1de8d1a247e8c83ffa3
DIST minikube-1.26.1-vendor.tar.gz 104831112 BLAKE2B 532856492a6b7759d3aaccf9baf9dd603b81953d8691d4df5aef8a667cde13d4035728e31ba52d440fb18661be94cf406ff101eed1a9fe1e2b86fc845a9268c5 SHA512 d9efe06a4912df67543246aae92ccfae62d7e0e25480761bbf0705d2867481d8cd89ea2441bd318e5ce0d682deaf5b81ae3a40000c270a0d6884ba07f69909f3
diff --git a/sys-cluster/minikube/minikube-1.25.1.ebuild b/sys-cluster/minikube/minikube-1.25.1.ebuild
deleted file mode 100644
index e51cece9f682..000000000000
--- a/sys-cluster/minikube/minikube-1.25.1.ebuild
+++ /dev/null
@@ -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=3e64b11ed75e56e4898ea85f96b2e4af0301f43d
-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"
-}
diff --git a/sys-cluster/minikube/minikube-1.25.2.ebuild b/sys-cluster/minikube/minikube-1.25.2.ebuild
deleted file mode 100644
index 317bc98d1b8e..000000000000
--- a/sys-cluster/minikube/minikube-1.25.2.ebuild
+++ /dev/null
@@ -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=362d5fdc0a3dbee389b3d3f1034e8023e72bd3a7
-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"
-}
diff --git a/sys-cluster/minikube/minikube-1.26.0.ebuild b/sys-cluster/minikube/minikube-1.26.0.ebuild
deleted file mode 100644
index e71ab0934cc9..000000000000
--- a/sys-cluster/minikube/minikube-1.26.0.ebuild
+++ /dev/null
@@ -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=f4b412861bb746be73053c9f6d2895f12cf78565
-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"
-}
next reply other threads:[~2022-10-18 1:52 UTC|newest]
Thread overview: 88+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-18 1:52 Zac Medico [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-26 20:54 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/minikube/ Zac Medico
2024-11-26 20:53 Zac Medico
2024-02-20 1:47 Zac Medico
2024-01-03 1:08 Sam James
2023-05-08 3:47 Zac Medico
2023-05-02 4:35 Zac Medico
2022-10-18 1:52 Zac Medico
2022-08-02 23:08 Zac Medico
2022-06-25 15:58 Zac Medico
2022-02-26 18:47 Zac Medico
2022-02-16 19:52 Zac Medico
2022-01-24 3:13 Zac Medico
2022-01-20 1:39 Zac Medico
2022-01-15 21:22 Georgy Yakovlev
2022-01-15 18:48 Zac Medico
2021-11-06 6:18 Zac Medico
2021-10-28 22:10 Zac Medico
2021-10-28 22:04 Zac Medico
2021-04-19 17:50 Zac Medico
2021-02-22 17:06 William Hubbs
2020-10-29 14:31 William Hubbs
2020-10-26 4:56 Georgy Yakovlev
2020-10-23 3:31 Georgy Yakovlev
2020-10-22 0:09 Georgy Yakovlev
2020-10-03 21:38 William Hubbs
2020-06-12 18:27 William Hubbs
2020-05-20 15:34 William Hubbs
2020-05-20 15:34 William Hubbs
2020-05-13 22:12 William Hubbs
2020-05-04 19:04 William Hubbs
2020-02-10 13:26 Michał Górny
2019-12-20 20:10 Zac Medico
2019-12-14 2:37 Zac Medico
2019-12-14 2:26 Zac Medico
2019-12-14 2:22 Zac Medico
2019-12-14 2:19 Zac Medico
2019-12-14 2:19 Zac Medico
2019-11-23 10:35 Manuel Rüger
2019-07-01 9:53 Manuel Rüger
2019-05-02 15:55 Manuel Rüger
2019-03-28 16:20 Manuel Rüger
2019-03-28 13:20 Manuel Rüger
2019-02-18 16:00 Manuel Rüger
2019-01-28 10:54 Manuel Rüger
2019-01-18 13:18 Manuel Rüger
2018-12-30 16:18 Manuel Rüger
2018-12-16 12:15 Manuel Rüger
2018-12-11 10:11 Manuel Rüger
2018-10-28 16:13 Manuel Rüger
2018-10-04 12:04 Mike Gilbert
2018-09-28 13:28 Manuel Rüger
2018-07-24 13:32 Manuel Rüger
2018-07-18 18:39 Manuel Rüger
2018-07-02 14:46 Manuel Rüger
2018-07-02 14:46 Manuel Rüger
2018-06-14 14:38 Manuel Rüger
2018-05-23 8:29 Manuel Rüger
2018-05-17 15:21 Manuel Rüger
2018-04-21 23:31 Manuel Rüger
2018-04-11 14:05 Manuel Rüger
2018-04-04 11:44 Manuel Rüger
2018-03-26 14:21 Manuel Rüger
2018-02-27 21:41 Manuel Rüger
2018-01-27 18:28 Manuel Rüger
2018-01-16 15:56 Manuel Rüger
2017-12-01 13:56 Manuel Rüger
2017-12-01 13:56 Manuel Rüger
2017-10-27 11:42 Manuel Rüger
2017-10-09 15:10 Manuel Rüger
2017-10-09 14:23 Manuel Rüger
2017-09-19 18:07 Manuel Rüger
2017-09-18 11:06 Manuel Rüger
2017-09-14 13:14 Manuel Rüger
2017-09-08 21:42 Manuel Rüger
2017-08-01 12:38 Manuel Rüger
2017-08-01 12:38 Manuel Rüger
2017-06-26 20:38 Manuel Rüger
2017-06-04 22:11 Manuel Rüger
2017-06-04 22:11 Manuel Rüger
2017-05-15 12:34 Manuel Rüger
2017-05-10 22:50 Manuel Rüger
2017-05-10 21:24 Manuel Rüger
2017-05-10 21:24 Manuel Rüger
2017-05-10 21:24 Manuel Rüger
2017-04-12 9:53 Manuel Rüger
2017-03-08 15:51 Manuel Rüger
2017-02-20 16:11 Manuel Rüger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1666057927.c06f5fef336af4a8d7595fab727086356d8fc6b8.zmedico@gentoo \
--to=zmedico@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox