From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/k9scli/
Date: Mon, 26 Feb 2024 19:45:01 +0000 (UTC) [thread overview]
Message-ID: <1708976695.ce5f598f4e95f26f09d4e0c1bd748eb3572a8420.williamh@gentoo> (raw)
commit: ce5f598f4e95f26f09d4e0c1bd748eb3572a8420
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 26 19:43:44 2024 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Feb 26 19:44:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce5f598f
sys-cluster/k9scli: add 0.31.9
Closes: https://bugs.gentoo.org/925423
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
sys-cluster/k9scli/Manifest | 2 ++
sys-cluster/k9scli/k9scli-0.31.9.ebuild | 34 +++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/sys-cluster/k9scli/Manifest b/sys-cluster/k9scli/Manifest
index 4669bd9e8a97..70bece7de7f1 100644
--- a/sys-cluster/k9scli/Manifest
+++ b/sys-cluster/k9scli/Manifest
@@ -4,3 +4,5 @@ DIST k9scli-0.27.4-deps.tar.xz 209301324 BLAKE2B 863ca246c2bd621c5990f202a4a4ca1
DIST k9scli-0.27.4.tar.gz 6400972 BLAKE2B bf8c45f21198ab838648f2cea9ddd18393c74b61b96b46cab899bc09dfff9b8b84a799b577670cbd60fb19a2e99f749639e6f5410e83492267e7dfc84df7798b SHA512 a56a0cf185a2c902c5b1bdc9d7bcea108189fb1cc2aa1d4aaa907982acd7532607a5f9a703d0fd8880f50d0a6e1b1971f0319418ed47f9fe6306528e8141f35c
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
diff --git a/sys-cluster/k9scli/k9scli-0.31.9.ebuild b/sys-cluster/k9scli/k9scli-0.31.9.ebuild
new file mode 100644
index 000000000000..6d7e38d5e05f
--- /dev/null
+++ b/sys-cluster/k9scli/k9scli-0.31.9.ebuild
@@ -0,0 +1,34 @@
+# 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
+}
next reply other threads:[~2024-02-26 19:45 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-26 19:45 William Hubbs [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-07-15 20:48 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/k9scli/ William Hubbs
2024-07-15 20:48 William Hubbs
2024-06-17 21:59 William Hubbs
2024-02-26 19:46 William Hubbs
2024-01-09 5:29 William Hubbs
2023-12-09 18:11 Sam James
2023-09-01 19:31 William Hubbs
2023-09-01 19:31 William Hubbs
2023-09-01 15:48 Arthur Zamarin
2023-03-21 17:13 William Hubbs
2023-03-21 17:04 William Hubbs
2022-09-06 5:53 Sam James
2022-06-01 23:14 William Hubbs
2022-02-27 6:22 William Hubbs
2022-02-27 6:22 William Hubbs
2021-05-29 19:00 William Hubbs
2020-10-04 3:07 William Hubbs
2020-07-14 15:56 William Hubbs
2020-06-25 19:55 William Hubbs
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=1708976695.ce5f598f4e95f26f09d4e0c1bd748eb3572a8420.williamh@gentoo \
--to=williamh@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