dev-util/kubetail - 0.18.0 (guru)

Search

Install

Install this version:

emerge -a =dev-util/kubetail-0.18.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-util/kubetail-0.18.0

Or alternatively:

emerge --autounmask-write -a =dev-util/kubetail-0.18.0

Package Information

Description:
Real-time logging dashboard for Kubernetes
Homepage:
https://github.com/kubetail-org/kubetail
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
0.18.0 8 ~amd64 ~arm64 0
View Raw Ebuild
# 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"
}

Inherited Eclasses

Dependencies

BDEPEND

>=dev-lang/go-1.25.0

Manifest for 0.18.0

Type File Size Source URLs
DIST kubetail-0.18.0-vendored.tar.gz 21369238 bytes https://github.com/kubetail-org/kubetail/releases/download/cli%2Fv0.18.0/kubetail-0.18.0-vendored.tar.gz