gentoo/sys-cluster/hubble/hubble-1.17.5.ebuild
William Hubbs 046f61612d
sys-cluster/hubble: add 1.17.5
Closes: https://bugs.gentoo.org/894310
Closes: https://bugs.gentoo.org/930554
Closes: https://bugs.gentoo.org/939122
Signed-off-by: William Hubbs <williamh@gentoo.org>
2025-08-05 14:33:54 -05:00

35 lines
632 B
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
# make sure this gets updated on every bump
GIT_HASH=13fb5dcb
DESCRIPTION="Network, Service & Security Observability for Kubernetes using eBPF"
HOMEPAGE="https://cilium.io"
SRC_URI="https://github.com/cilium/hubble/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
QA_PRESTRIPPED=usr/bin/hubble
src_prepare() {
default
sed -i -e 's/-race//' Makefile
}
src_compile() {
emake GIT_HASH=${GIT_HASH}
}
src_test() {
emake test
}
src_install() {
dobin hubble
}