mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
dev-util/bcc: restore tool symlinking, add missing deps, musl fix
- Restore tool symlinking, making sure to skip python tools - Add some logic to tool symlinking to avoid collisions - Prefix tool name for some more generically named tools with bcc- - Add some missing dependencies (libffi, zstd, ncurses[tinfo], flex, bison) - Add lzma USE flag and remove automagic dep - Restore musl fix that somehow got lost (bug #939453) Closes: https://bugs.gentoo.org/939453 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
This commit is contained in:
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/iovisor/bcc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
|
||||
IUSE="+lua +python static-libs test"
|
||||
IUSE="+lua lzma +python static-libs test"
|
||||
|
||||
REQUIRED_USE="
|
||||
${PYTHON_REQUIRED_USE}
|
||||
@@ -29,13 +29,20 @@ REQUIRED_USE="
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
app-arch/zstd:=
|
||||
>=dev-libs/elfutils-0.166:=
|
||||
>=dev-libs/libbpf-1.2.0:=
|
||||
dev-libs/libffi:=
|
||||
sys-kernel/linux-headers
|
||||
sys-libs/ncurses:=[tinfo]
|
||||
$(llvm_gen_dep '
|
||||
sys-devel/clang:${LLVM_SLOT}=
|
||||
sys-devel/llvm:${LLVM_SLOT}=
|
||||
')
|
||||
lzma? ( || (
|
||||
app-arch/xz-utils
|
||||
app-arch/lzma
|
||||
) )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
lua? ( ${LUA_DEPS} )
|
||||
"
|
||||
@@ -52,6 +59,8 @@ DEPEND="
|
||||
"
|
||||
BDEPEND="
|
||||
app-arch/zip
|
||||
sys-devel/flex
|
||||
sys-devel/bison
|
||||
virtual/pkgconfig
|
||||
python? ( ${DISTUTILS_DEPS} )
|
||||
"
|
||||
@@ -60,6 +69,7 @@ PATCHES=(
|
||||
"${FILESDIR}/bcc-0.9.0-no-luajit-automagic-dep.patch"
|
||||
"${FILESDIR}/bcc-0.25.0-cmakelists.patch"
|
||||
"${FILESDIR}/bcc-0.23.0-man-compress.patch"
|
||||
"${FILESDIR}/bcc-0.31.0-no-automagic-deps.patch"
|
||||
)
|
||||
|
||||
pkg_pretend() {
|
||||
@@ -102,6 +112,8 @@ src_prepare() {
|
||||
mv "${script}" "tools/old/old-${script##*/}" || die
|
||||
done
|
||||
|
||||
sed -i '/#include <error.h>/d' examples/cpp/KModRetExample.cc || die
|
||||
|
||||
use static-libs || PATCHES+=( "${FILESDIR}/bcc-0.31.0-dont-install-static-libs.patch" )
|
||||
|
||||
# use distutils-r1 eclass funcs rather than letting upstream handle python
|
||||
@@ -122,13 +134,15 @@ src_configure() {
|
||||
-DREVISION=${PV%%_*}
|
||||
-DENABLE_LLVM_SHARED=ON
|
||||
-DENABLE_NO_PIE=OFF
|
||||
-DWITH_LZMA=$(usex lzma)
|
||||
-DCMAKE_USE_LIBBPF_PACKAGE=ON
|
||||
-DLIBBPF_INCLUDE_DIRS="$($(tc-getPKG_CONFIG) --cflags-only-I libbpf | sed 's:-I::g')"
|
||||
-DKERNEL_INCLUDE_DIRS="${KERNEL_DIR}"
|
||||
-DNO_BLAZESYM=ON
|
||||
-Wno-dev
|
||||
)
|
||||
if use lua && use lua_single_target_luajit; then
|
||||
mycmakeargs+=( -DWITH_LUAJIT=1 )
|
||||
mycmakeargs+=( -DWITH_LUAJIT=ON )
|
||||
fi
|
||||
|
||||
cmake_src_configure
|
||||
@@ -140,13 +154,32 @@ src_compile() {
|
||||
bcc_distutils_phase
|
||||
}
|
||||
|
||||
bcc_tool_name() {
|
||||
local -A rename_tools=(
|
||||
[trace]=1
|
||||
[profile]=1
|
||||
[inject]=1
|
||||
[capable]=1
|
||||
)
|
||||
|
||||
local name="${1}"
|
||||
|
||||
local name="${name##*/}"
|
||||
name="${name%.py}"
|
||||
|
||||
[[ -n ${rename_tools[${name}]} ]] && name=bcc-${name}
|
||||
|
||||
printf -- '%s\n' "${name}"
|
||||
}
|
||||
|
||||
python_install() {
|
||||
distutils-r1_python_install
|
||||
|
||||
python_scriptinto /usr/sbin
|
||||
|
||||
local tool
|
||||
for tool in $(grep -Elr '#!/usr/bin/(env |)python' "${MY_S}/tools"); do
|
||||
local tool_name="${tool##*/}"
|
||||
python_newscript "${tool}" "${tool_name%.py}"
|
||||
python_newscript "${tool}" "$(bcc_tool_name "${tool}")"
|
||||
done
|
||||
}
|
||||
|
||||
@@ -155,9 +188,17 @@ src_install() {
|
||||
bcc_distutils_phase
|
||||
|
||||
newenvd "${FILESDIR}"/60bcc.env 60bcc.env
|
||||
local -A rename_tools=(
|
||||
[trace]=1
|
||||
)
|
||||
|
||||
local tool target
|
||||
for tool in "${ED}"/usr/share/bcc/tools/*; do
|
||||
[[ -d ${tool} || ! -x ${tool} || ${tool} =~ .*[.](c|txt) ]] && continue
|
||||
grep -qE '^#!/usr/bin/(env |)python' "${tool}" && continue
|
||||
|
||||
target="/usr/sbin/$(bcc_tool_name "${tool}")"
|
||||
[[ -e ${ED}${target} ]] && continue
|
||||
|
||||
dosym -r "${tool#${ED}}" "${target}"
|
||||
done
|
||||
|
||||
docompress /usr/share/${PN}/man
|
||||
|
||||
15
dev-util/bcc/files/bcc-0.31.0-no-automagic-deps.patch
Normal file
15
dev-util/bcc/files/bcc-0.31.0-no-automagic-deps.patch
Normal file
@@ -0,0 +1,15 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 18407e86..1af91242 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -136,7 +136,9 @@ if(NOT PYTHON_ONLY)
|
||||
find_package(FLEX)
|
||||
find_package(LibElf REQUIRED)
|
||||
find_package(LibDebuginfod)
|
||||
- find_package(LibLzma)
|
||||
+ if(WITH_LZMA)
|
||||
+ find_package(LibLzma)
|
||||
+ endif()
|
||||
if(CLANG_DIR)
|
||||
set(CMAKE_FIND_ROOT_PATH "${CLANG_DIR}")
|
||||
include_directories("${CLANG_DIR}/include")
|
||||
Reference in New Issue
Block a user