summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2025-08-05 14:06:39 -0500
committerWilliam Hubbs <williamh@gentoo.org>2025-08-05 14:33:54 -0500
commit046f61612ddc6f8bcc64a199d194b55e93fc636d (patch)
tree94115b58a6d1757fd41f305614dc575345e43e52
parente3a15368c3b716fd3d5c8f0364813debb50adce1 (diff)
downloadgentoo-046f61612ddc6f8bcc64a199d194b55e93fc636d.tar.gz
gentoo-046f61612ddc6f8bcc64a199d194b55e93fc636d.tar.bz2
gentoo-046f61612ddc6f8bcc64a199d194b55e93fc636d.zip
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>
-rw-r--r--sys-cluster/hubble/Manifest1
-rw-r--r--sys-cluster/hubble/hubble-1.17.5.ebuild34
2 files changed, 35 insertions, 0 deletions
diff --git a/sys-cluster/hubble/Manifest b/sys-cluster/hubble/Manifest
index 5343f802fbd6..55e13dd9a2fd 100644
--- a/sys-cluster/hubble/Manifest
+++ b/sys-cluster/hubble/Manifest
@@ -1 +1,2 @@
DIST hubble-0.10.0.tar.gz 6453598 BLAKE2B e3b91e4aa3fd7de6cc474a7f99e37cbde542ae66d3dc2e509cc9db36e3d0e127803fb84b972c017cafa598663f5d845832c246b4fc99420dade4f61e94ad4e2f SHA512 d8f6347954a7fc4ff2a707c7a21e699c562647c9d4eea238345db9c93fdf232cf52482c8f79046bdee1fff8d34839eaf4b80de6877b18d45cec77a8190ef7f58
+DIST hubble-1.17.5.tar.gz 14567873 BLAKE2B 300849c466b9a4be4337bd14ed716e59fcc00dc546f81f2e1214a77f7ce078d91abb90ba1c53ebec21703f7689807bbcd903a3ddfc85284e22d8fb59382432a5 SHA512 015b4c5da5e02c1fdff1d83fe1bed467695677c7a9185da71257196989236d1746bdeb2b6ae9daa8465766346c71cbc99b20b47643f2272851f7b80128bb2dbc
diff --git a/sys-cluster/hubble/hubble-1.17.5.ebuild b/sys-cluster/hubble/hubble-1.17.5.ebuild
new file mode 100644
index 000000000000..62d1132ff0ce
--- /dev/null
+++ b/sys-cluster/hubble/hubble-1.17.5.ebuild
@@ -0,0 +1,34 @@
+# 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
+}