public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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, 17 Jun 2024 21:59:13 +0000 (UTC)	[thread overview]
Message-ID: <1718661548.9ff0f61da337f93d7dc801a615a8d633f63c9f0c.williamh@gentoo> (raw)

commit:     9ff0f61da337f93d7dc801a615a8d633f63c9f0c
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 21:58:32 2024 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 21:59:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff0f61d

sys-cluster/k9scli: add 0.32.4

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 sys-cluster/k9scli/Manifest             |  2 ++
 sys-cluster/k9scli/k9scli-0.32.4.ebuild | 34 +++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/sys-cluster/k9scli/Manifest b/sys-cluster/k9scli/Manifest
index ff26d197160a..4125d207a6bb 100644
--- a/sys-cluster/k9scli/Manifest
+++ b/sys-cluster/k9scli/Manifest
@@ -2,3 +2,5 @@ DIST k9scli-0.31.0-deps.tar.xz 658131588 BLAKE2B 83fb8953fbd49def99c6ac10d65f769
 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.32.4.ebuild b/sys-cluster/k9scli/k9scli-0.32.4.ebuild
new file mode 100644
index 000000000000..6d4ca5089153
--- /dev/null
+++ b/sys-cluster/k9scli/k9scli-0.32.4.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=d3027c8f
+
+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
+}


             reply	other threads:[~2024-06-17 21:59 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-17 21:59 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-02-26 19:46 William Hubbs
2024-02-26 19:45 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=1718661548.9ff0f61da337f93d7dc801a615a8d633f63c9f0c.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