From df53b0c7cb0d77a3534a9a019f4eaf59483461e3 Mon Sep 17 00:00:00 2001 From: Patrick McLean Date: Mon, 18 Apr 2022 10:08:18 -0700 Subject: dev-util/bcc: 0.24.0-r1 drop py3.7, add LLVM 14 support Signed-off-by: Patrick McLean --- dev-util/bcc/bcc-0.24.0-r1.ebuild | 137 ++++++++++++++++++++++++++++++++++++++ dev-util/bcc/bcc-0.24.0.ebuild | 137 -------------------------------------- 2 files changed, 137 insertions(+), 137 deletions(-) create mode 100644 dev-util/bcc/bcc-0.24.0-r1.ebuild delete mode 100644 dev-util/bcc/bcc-0.24.0.ebuild (limited to 'dev-util/bcc') diff --git a/dev-util/bcc/bcc-0.24.0-r1.ebuild b/dev-util/bcc/bcc-0.24.0-r1.ebuild new file mode 100644 index 000000000000..86a3d50ede4f --- /dev/null +++ b/dev-util/bcc/bcc-0.24.0-r1.ebuild @@ -0,0 +1,137 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( luajit ) +PYTHON_COMPAT=( python3_{8..10} ) +LLVM_MAX_SLOT=14 + +inherit cmake 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.7.0:=[static-libs(-)] + sys-kernel/linux-headers +