mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
dev-util/kubetail: add 0.10.1
Signed-off-by: kubetail-bot <bot@kubetail.com>
This commit is contained in:
@@ -2,3 +2,4 @@ DIST kubetail-0.9.0.tar.gz 618012 BLAKE2B 7948912708565d8170e90b8e79c5982bf88af0
|
||||
DIST kubetail_0.9.0.orig.tar.xz 12070328 BLAKE2B b6b6b3530200ac8990e902c343f982f555bde32404ea649bd7d5d4100e3b710e7192ef23f72be4684b52df051fde61b9c8da020a34bdb72cdec51936ae3b1390 SHA512 6f8fd21a62ed85426c77162f86152884a81dec16317fa40cd0a961ddab3097a63c595f6115c9ffb420bb27c2a61a89c4f2dcdef55c340ee9576493f1ed2e4d0a
|
||||
DIST kubetail-cli_0.9.0.orig.tar.xz 12074260 BLAKE2B 3c19e1b35efdbf9d749965f2518a458270b6b114efb326b9a945309c2a90647be018fad603de88444fc20a51a002ee64138ede9694cc22460d1d5cb826a152a2 SHA512 bf42a961d134a54d12072b6c9d494c6e6a4923d2b1a7a58486fce9d1cd9fa2a8399b5476f9d3ee1f099e92e1983aea01d23b8543473254fbe43d388724aaf9e4
|
||||
DIST kubetail-cli_0.10.0.orig.tar.xz 12077752 BLAKE2B 7f6303fb594ed1e48b1229292dcfd7bf29b53279a06661b31c6362d737aae2df674d2fe202973cd8d09e8084e9b0daae1879fb72f96ace35d382f36ac7da94b0 SHA512 cae94a744748db6b9eb2535e2dda7ebced050b0112b351a4821ae28418265caf2137f45040dc851e7d875bf86b739b6c0b6d1d064b9581d7791872d814462772
|
||||
DIST kubetail-0.10.1-vendored.tar.gz 21426066 BLAKE2B 733f60ee29699dd4673cd202904fa5a3821b230e2124d10f523b711d99f24f69f83013ac7d9e841a76a9fde23ffdc94df8db71983f2e5b329aaa5f3ec1863012 SHA512 1bd05bd5905242f16cb8d222bbae522893085bad87e65a203d6ba1fd00d7fd39f639c6ac176d6cfde410512e7c57ed65b942a49afcc10b0f930e324d94e64ee8
|
||||
|
||||
49
dev-util/kubetail/kubetail-0.10.1.ebuild
Normal file
49
dev-util/kubetail/kubetail-0.10.1.ebuild
Normal file
@@ -0,0 +1,49 @@
|
||||
# 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="https://github.com/kubetail-org/kubetail/releases/download/cli%2Fv${PV}/kubetail-${PV}-vendored.tar.gz"
|
||||
|
||||
S="${WORKDIR}/kubetail-${PV}"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
|
||||
BDEPEND="
|
||||
>=dev-lang/go-1.24.7
|
||||
"
|
||||
|
||||
QA_PREBUILT="usr/bin/kubetail"
|
||||
|
||||
src_compile() {
|
||||
(
|
||||
cd modules/cli || die
|
||||
GOWORK=off CGO_ENABLED=0 go build \
|
||||
-mod=vendor \
|
||||
-ldflags "-s -w -X github.com/kubetail-org/kubetail/modules/cli/cmd.version=${PV}" \
|
||||
-o ../../bin/kubetail \
|
||||
. || die
|
||||
)
|
||||
|
||||
./bin/kubetail completion bash > "kubetail.bash" || die
|
||||
./bin/kubetail completion zsh > "kubetail.zsh" || die
|
||||
./bin/kubetail completion fish > "kubetail.fish" || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/kubetail || die
|
||||
|
||||
newbashcomp "kubetail.bash" kubetail
|
||||
newzshcomp "kubetail.zsh" "_kubetail"
|
||||
dofishcomp "kubetail.fish"
|
||||
}
|
||||
Reference in New Issue
Block a user