mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
dev-util/kubetail: add 0.12.2
Signed-off-by: Andres Morey <andres@kubetail.com>
This commit is contained in:
@@ -6,3 +6,4 @@ DIST kubetail-0.11.0-vendored.tar.gz 21157647 BLAKE2B 6ccb83aa7517c1c80f73839991
|
||||
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
|
||||
DIST kubetail-0.12.1-vendored.tar.gz 21306178 BLAKE2B 159d9c63735b4fefa179f622aa7173701ff1109a469e3c37a4ab0239715e8690ce0c471ab48bfa5ba75ae3708771e7978a8c7ce8be7b190bec89ef59e6c7fef4 SHA512 fa5a35db949df005ae1acc2eeb74506d1accd293638f8b0f8350602143eb22b5f346f27c282c9e7f2874520d258295857087b0ed07545a8cd1891aeb6515687e
|
||||
DIST kubetail-0.12.2-vendored.tar.gz 20821389 BLAKE2B 67d229127a9319279671ed586faf9666df6664c012883ee6f77b072ee5670ed66ba578b499e291b56508705b93c351efb82a3b9db78de48df82e58b95eabe25a SHA512 3b883f285e886a6624a591e1f4d69c143edefff9f512abb487477bf59101ef3c828ebb276d69eac6d0f6f895e0271ca8d8e2243ab2b2b3de940ce25006c86783
|
||||
|
||||
45
dev-util/kubetail/kubetail-0.12.2.ebuild
Normal file
45
dev-util/kubetail/kubetail-0.12.2.ebuild
Normal file
@@ -0,0 +1,45 @@
|
||||
# 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.25.0"
|
||||
|
||||
src_compile() {
|
||||
(
|
||||
GOWORK=off \
|
||||
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