dev-util/kubetail-bin: add 0.11.0

Signed-off-by: kubetail-bot <bot@kubetail.com>
This commit is contained in:
kubetail-bot
2026-01-13 20:23:58 +00:00
parent e29e1d736e
commit 50e30365d1
2 changed files with 45 additions and 0 deletions

View File

@@ -8,3 +8,5 @@ DIST kubetail-bin-0.10.0-linux-amd64.tar.gz 24619470 BLAKE2B caa70a0581057764d42
DIST kubetail-bin-0.10.0-linux-arm64.tar.gz 22370891 BLAKE2B 6d72d7c469550a321880b3e349eba7f8d75b6bd07d2b9a0e853cedc8fa98e9e44c8b82c2856b094602e1054b5b2d65f036e8af6e786c28ed65edd9f7975ad81d SHA512 947b646327604dee51d749724912eef3f7344a7b3c5ca9c78752ea4eb652afab0f3f6cb21c2abf3a1381a90ee2edad407154d18fea41e7a656666938ef064c3c
DIST kubetail-bin-0.10.1-linux-amd64.tar.gz 25534656 BLAKE2B e2f6d900e3ac35f32d811cc5428a534b614000d0a184626c1b00122814786e3e6986463b017abdcff4922e3b90e586c837be05855d96947a306abfddb54706d5 SHA512 f5eb41244c9b49e594a8f53e516631a80a4c405b9db2608b1287ef4c0ab7c5809d4b9e7a9c13822dff93ede9c967abbc9a28fa6f83a66f46e726a0ad0127b636
DIST kubetail-bin-0.10.1-linux-arm64.tar.gz 23205409 BLAKE2B 7b74f781ecba6870d7ca525890ae85aee12ec9785a5e5b8bde1b2cb095ebc7cd7c3bfb56f8ddb8a4ec19ab9a38ea0f14c88528726a1dbc5abc5492403462ade4 SHA512 22312d4065a68f292930189f0943cf676d3976e143cd26c42c885abaf95fea89649eacba4763854a190b8f1d2427f7ddf19fb507ad4b8aaae038dede478e4842
DIST kubetail-bin-0.11.0-linux-amd64.tar.gz 25503052 BLAKE2B 89aaeb5e9105b08e641b29507ee3fc2bc62ed04f8dfe567179d678bc7fe5768e99a9ec41682a7330d6028eb1d69d3a987b19c0a9b5939302ed05b06eb6d29fdf SHA512 0d566044719ac0ef3f052e6b2955bf97cf3a98cd15f188754281ac795b38befa6af2685cb6a953ed76f04a9b8df613d409bf28063829b83c51476eb7e5823fad
DIST kubetail-bin-0.11.0-linux-arm64.tar.gz 23158081 BLAKE2B 3dd9748ae6b5ec6243e04c1b3baeee2fe7f92f1ec78b2149ff99ced9ed7c974856363f2b1ae319b3a6779a6f7bb0335fb27331edd09fa6214e7737512e2a040a SHA512 bd0e314b048d70432fb77c9a90de82ded8793766c20cb0a3c18dd38a37a16d4ea674f140c9bce5362d304e9a1975b0314b6793ad79332c86d03796d0bd813930

View File

@@ -0,0 +1,43 @@
# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit shell-completion
DESCRIPTION="Real-time logging dashboard for Kubernetes"
HOMEPAGE="https://github.com/kubetail-org/kubetail"
SRC_URI="
amd64? ( https://github.com/kubetail-org/kubetail/releases/download/cli%2Fv${PV}/kubetail-linux-amd64.tar.gz
-> ${P}-linux-amd64.tar.gz )
arm64? ( https://github.com/kubetail-org/kubetail/releases/download/cli%2Fv${PV}/kubetail-linux-arm64.tar.gz
-> ${P}-linux-arm64.tar.gz )
"
S="${WORKDIR}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
QA_PREBUILT="usr/bin/kubetail"
src_compile() {
chmod +x kubetail
./kubetail completion bash > "kubetail.bash" || die
./kubetail completion zsh > "kubetail.zsh" || die
./kubetail completion fish > "kubetail.fish" || die
}
src_install() {
dobin kubetail || die
newbashcomp "kubetail.bash" kubetail
newzshcomp "kubetail.zsh" "_kubetail"
dofishcomp "kubetail.fish"
}