mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
dev-util/kubetail-bin: add 0.10.1
Signed-off-by: kubetail-bot <bot@kubetail.com>
This commit is contained in:
@@ -6,3 +6,5 @@ DIST kubetail-bin-0.9.0-linux-amd64.tar.gz 24629018 BLAKE2B a56de08dbeab738f4163
|
||||
DIST kubetail-bin-0.9.0-linux-arm64.tar.gz 22381990 BLAKE2B 504744eb3564159d5a309e5e776a6407a8ed4d2d914e1123e0e0b58040eb9ae2ba827441fbd873fa2e8fe84372c81990c04e9c435de8cc680d1f82c058b14aa8 SHA512 d609f51c0b0506b691e9a40ade9bb47b1c1d67c36eb3c1312a05ecb6475c0cd77d246f25a32f38bb074266898a63a35b16fb1f27a4fde73c2adc8b14ea623c3d
|
||||
DIST kubetail-bin-0.10.0-linux-amd64.tar.gz 24619470 BLAKE2B caa70a0581057764d429335382c954c6210b294af8b6ed2ade20e8ec493882f42200536b80857167aaf3a8b21d480f02f9509a1771f138940ec56209ba0f4321 SHA512 c13d5a6ba95ba2eab533c61e5b450e4f36c9a0f43b09c13235a933fb790d2a3a379135231bbc2724dba8d1a67eff30547b9485ae8788cb3f10f84b3fe1c4380d
|
||||
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
|
||||
|
||||
43
dev-util/kubetail-bin/kubetail-bin-0.10.1.ebuild
Normal file
43
dev-util/kubetail-bin/kubetail-bin-0.10.1.ebuild
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user