summaryrefslogtreecommitdiff
path: root/sys-cluster/hubble/hubble-0.10.0.ebuild
blob: c9c9ba326b12b4825a781223e1b4d17fd3ebb953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2022 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=daec1c89

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"

src_compile() {
	emake GIT_HASH=${GIT_HASH}
}

src_test() {
	emake test
}

src_install() {
	dobin hubble
}