mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
dev-util/kubetail: add 0.12.0
Signed-off-by: Andres Morey <andres@kubetail.com>
This commit is contained in:
@@ -4,3 +4,4 @@ DIST kubetail-cli_0.9.0.orig.tar.xz 12074260 BLAKE2B 3c19e1b35efdbf9d749965f2518
|
||||
DIST kubetail-0.10.1-vendored.tar.gz 21426066 BLAKE2B 733f60ee29699dd4673cd202904fa5a3821b230e2124d10f523b711d99f24f69f83013ac7d9e841a76a9fde23ffdc94df8db71983f2e5b329aaa5f3ec1863012 SHA512 1bd05bd5905242f16cb8d222bbae522893085bad87e65a203d6ba1fd00d7fd39f639c6ac176d6cfde410512e7c57ed65b942a49afcc10b0f930e324d94e64ee8
|
||||
DIST kubetail-0.11.0-vendored.tar.gz 21157647 BLAKE2B 6ccb83aa7517c1c80f7383999179394fbd140a3085d180bee8a96fc49b55c9495816e242cbcd59aa9fe0846be5e7d282b41f9724b4e48e65a48c97533c6efe01 SHA512 5734330deb00e4cae401732d82c04823c6f0f798dc50afefa08ceb8b4f79e4845404d86b7ffc52141685b555412902cf407795ecf0a711809bd28d2d29e0b966
|
||||
DIST kubetail-0.11.1-vendored.tar.gz 21250661 BLAKE2B 069e736600e9b39513933195ecfba641fa74d12cab6fe5bc1c1682098e0e23f4e7f3f92d27bfdf545246316540ca228821e3be3eb2a12465d95ebf8704d24e88 SHA512 3f47eb29ce578d95f907e2a248243184875b3c0c4fafab1a3e0a0c59067f6850fc3ba1c1c3e1132407688028a3ae87c3210080e806c7255f47d74820484c833c
|
||||
DIST kubetail-0.12.0-vendored.tar.gz 21250925 BLAKE2B 7b7947422b9569cf80668727012048f8e3afafb8a23a8a6db62ec59fb64f62208f024a71fdcd04e716bcaad9d06c01ff0750eef91c701c1ee252c66d6e5b4215 SHA512 b58856b67004faad1b05bb103b185824fa5b95fbeebc6f6dce358dfee72a9ef2e99432c70a602803e6b25464617871b42026dcba5288cbee695aa566baec4c2c
|
||||
|
||||
46
dev-util/kubetail/kubetail-0.12.0.ebuild
Normal file
46
dev-util/kubetail/kubetail-0.12.0.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 2021-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit go-module 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}/modules/cli"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
|
||||
BDEPEND=">=dev-lang/go-1.24.7"
|
||||
|
||||
src_compile() {
|
||||
(
|
||||
GOWORK=off \
|
||||
CGO_ENABLED=0 \
|
||||
ego build \
|
||||
-mod=vendor \
|
||||
-ldflags "-X github.com/kubetail-org/kubetail/modules/cli/cmd.version=${PV}" \
|
||||
-o "${PN}" \
|
||||
.
|
||||
)
|
||||
|
||||
"./${PN}" completion bash > "${PN}.bash" || die
|
||||
"./${PN}" completion zsh > "${PN}.zsh" || die
|
||||
"./${PN}" completion fish > "${PN}.fish" || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${PN}"
|
||||
|
||||
newbashcomp "${PN}.bash" "${PN}"
|
||||
newzshcomp "${PN}.zsh" "_${PN}"
|
||||
dofishcomp "${PN}.fish"
|
||||
}
|
||||
Reference in New Issue
Block a user