From b3b55edd079bd584a8051be35c6c313d562966f6 Mon Sep 17 00:00:00 2001 From: Patrick McLean Date: Thu, 6 Jan 2022 10:50:21 -0800 Subject: dev-util/bcc: Revbump, rename "trace" tool (bug #828438) Closes: https://bugs.gentoo.org/828438 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Patrick McLean --- dev-util/bcc/bcc-0.23.0-r4.ebuild | 132 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 dev-util/bcc/bcc-0.23.0-r4.ebuild (limited to 'dev-util/bcc') diff --git a/dev-util/bcc/bcc-0.23.0-r4.ebuild b/dev-util/bcc/bcc-0.23.0-r4.ebuild new file mode 100644 index 000000000000..4f45cf6e2a90 --- /dev/null +++ b/dev-util/bcc/bcc-0.23.0-r4.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( luajit ) +PYTHON_COMPAT=( python3_{7..10} ) +LLVM_MAX_SLOT=13 + +inherit cmake eapi8-dosym linux-info llvm lua-single python-r1 toolchain-funcs + +DESCRIPTION="Tools for BPF-based Linux IO analysis, networking, monitoring, and more" +HOMEPAGE="https://iovisor.github.io/bcc/" +SRC_URI="https://github.com/iovisor/bcc/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="+lua test" +REQUIRED_USE="${PYTHON_REQUIRED_USE} + lua? ( ${LUA_REQUIRED_USE} )" +# tests need root access +RESTRICT="test" + +RDEPEND=" + >=dev-libs/elfutils-0.166:= + >=dev-libs/libbpf-0.5.0:=[static-libs(-)] + sys-kernel/linux-headers +