summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2024-07-15 14:54:56 -0500
committerWilliam Hubbs <williamh@gentoo.org>2024-07-15 15:48:28 -0500
commit137f29b4eb77c41cd5a635c2ddcd0c215f89e811 (patch)
tree87ac0d77162608355c0d2002961b911ae0dacc41 /sys-cluster
parentnet-wireless/gnome-bluetooth: update HOMEPAGE (diff)
downloadgentoo-137f29b4eb77c41cd5a635c2ddcd0c215f89e811.tar.gz
gentoo-137f29b4eb77c41cd5a635c2ddcd0c215f89e811.tar.bz2
gentoo-137f29b4eb77c41cd5a635c2ddcd0c215f89e811.zip
sys-cluster/k9scli: drop 0.31.0, 0.31.9
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/k9scli/Manifest4
-rw-r--r--sys-cluster/k9scli/k9scli-0.31.0.ebuild34
-rw-r--r--sys-cluster/k9scli/k9scli-0.31.9.ebuild34
3 files changed, 0 insertions, 72 deletions
diff --git a/sys-cluster/k9scli/Manifest b/sys-cluster/k9scli/Manifest
index 4125d207a6bb..661ae59d0635 100644
--- a/sys-cluster/k9scli/Manifest
+++ b/sys-cluster/k9scli/Manifest
@@ -1,6 +1,2 @@
-DIST k9scli-0.31.0-deps.tar.xz 658131588 BLAKE2B 83fb8953fbd49def99c6ac10d65f7699b65d26446f4f7f246e9fd2a98342b40f641bc43832387cfe8ae128e44498011b44b31f9c085527f1d1437dcd3dd5661a SHA512 ca91066be69787766523f6d8fc08516323c9f3e65b1aee90e6841dc3573300854d90a642f0803599ac813891ca98d43f44ae789e384c4f41894ee86ebd158f94
-DIST k9scli-0.31.0.tar.gz 6733632 BLAKE2B 815f884cdd395a0e07f3d64810c51feefed8a945775dbd5526578ea6f38d11e85a5fdf99f00119a618f5a1a06a6cfc38199b44ceff645fe6e4887213720a3149 SHA512 3387b1341ba9ab060f7bd1a2407d776c98f9d3b2810a490b9dba66ed9256f4859c6de1ac6217fe6ac19ef890eeeca6311d59bf3e24b55f777d97cb78db92d88b
-DIST k9scli-0.31.9-deps.tar.xz 658651048 BLAKE2B 825606ebceed668115e70be7d47b45c5436fa198c2df9b815d3e3cf01fead9e64104a9c6926cbcb8da7430e180c6476b29068a1b5d60b3c1f0e174364625afae SHA512 5af1e914e6bcc2607c7212d17832555be95afa3b8284f3a700fee80fc676cd00b1d41d94d0fa64db651d1746befb877fd8febf9f0fc1046f8aa93cf7c63c998d
-DIST k9scli-0.31.9.tar.gz 6742236 BLAKE2B c46263d361c4d53e450d1e85250012d1c070efed80b087754b0dbec55675f84accb3d826be0afbffb4556708c8113b6a0dfb925af908b4e2cd8b42bf8112ead2 SHA512 b57bb18fce8b35eb57bf11f347692213afb1fb3bbf0782491910837a4cae3044da95b927dff569234f74991c3346dd23d7cfdab77845680f87548e50c9b5ed34
DIST k9scli-0.32.4-deps.tar.xz 228022572 BLAKE2B e20434320591e6ce95fe7a4b7d5ff567ee6bd782a0b39fdb51e8480526094417bf848e8851f72973f4bf55a804797aa055b33f4569ceb2cf44c7166085853a4c SHA512 b559f903b1b10507c51f1587279e16a27235847d863402df59918f950db834270bc6f35f388fc8f1e022176e4ebe6549af8d16e1ed8a585bda2371cccc97fa14
DIST k9scli-0.32.4.tar.gz 6748167 BLAKE2B 0f50ba147ef30e4b7176b63285a219420d61b798f9bdca771f8bf0c1c9922ab6b936d5507dfa85fedcdb0f588089e9a763cc7c321a8e4ec8ea339107c59d8847 SHA512 6b3b1b68a7b019aed81d86c263642e95da10ec637081c615abaa6b0d7c8d5434513e3dea4fab48eb37f03ee392e573474f3d7c5094e92942e3b873c742722f4e
diff --git a/sys-cluster/k9scli/k9scli-0.31.0.ebuild b/sys-cluster/k9scli/k9scli-0.31.0.ebuild
deleted file mode 100644
index 10401b8909f1..000000000000
--- a/sys-cluster/k9scli/k9scli-0.31.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module
-
-# update this on every bump
-GIT_COMMIT=f8397a81
-
-DESCRIPTION="terminal based UI to manage kubernetes clusters"
-HOMEPAGE="https://k9scli.io"
-SRC_URI="https://github.com/derailed/k9s/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-
-S="${WORKDIR}/k9s-${PV}"
-
-src_prepare() {
- default
- # I will look into opening an upstream PR to do this.
- sed -i -e 's/-w -s -X/-X/' Makefile || die
-}
-
-src_compile() {
- emake GIT_REV=${GIT_COMMIT} VERSION=v${PV} build
-}
-
-src_install() {
- dobin execs/k9s
- dodoc -r change_logs plugins skins README.md
-}
diff --git a/sys-cluster/k9scli/k9scli-0.31.9.ebuild b/sys-cluster/k9scli/k9scli-0.31.9.ebuild
deleted file mode 100644
index 6d7e38d5e05f..000000000000
--- a/sys-cluster/k9scli/k9scli-0.31.9.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module
-
-# update this on every bump
-GIT_COMMIT=f2f4077b
-
-DESCRIPTION="terminal based UI to manage kubernetes clusters"
-HOMEPAGE="https://k9scli.io"
-SRC_URI="https://github.com/derailed/k9s/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-
-S="${WORKDIR}/k9s-${PV}"
-
-src_prepare() {
- default
- # I will look into opening an upstream PR to do this.
- sed -i -e 's/-w -s -X/-X/' Makefile || die
-}
-
-src_compile() {
- emake GIT_REV=${GIT_COMMIT} VERSION=v${PV} build
-}
-
-src_install() {
- dobin execs/k9s
- dodoc -r change_logs plugins skins README.md
-}