Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing/bcc: split into subpackages #9937

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion testing/bcc/APKBUILD
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Maintainer: Adam Jensen <acjensen@gmail.com>
pkgname=bcc
pkgver=0.10.0
pkgrel=0
pkgrel=1
pkgdesc="A toolkit for creating efficient kernel tracing and manipulation programs"
url="https://github.com/iovisor/bcc/"
arch="aarch64 x86 x86_64"
license="Apache-2.0"
# bcc's test suite requires privileged access to run BPF programs
options="!check"
depends="python"
subpackages="$pkgname-dev $pkgname-doc:_doc $pkgname-tools:_tools $pkgname-lua:_lua py-$pkgname:_py"
_llvmver=8
makedepends="tar git llvm${_llvmver}-dev llvm${_llvmver}-static clang-dev clang-static cmake flex-dev
bison luajit-dev build-base iperf linux-headers elfutils-dev zlib-dev
Expand All @@ -35,5 +36,38 @@ package() {
make install DESTDIR="$pkgdir"
}

_doc() {
acj marked this conversation as resolved.
Show resolved Hide resolved
pkgdesc="$pkgdesc (documentation)"

mkdir -p "$subpkgdir"/usr/share/bcc/tools
mv "$pkgdir"/usr/share/bcc/man "$subpkgdir"/usr/share/bcc
mv "$pkgdir"/usr/share/bcc/tools/doc "$subpkgdir"/usr/share/bcc/tools
}

_tools() {
maxice8 marked this conversation as resolved.
Show resolved Hide resolved
depends="bcc py-bcc"
pkgdesc="$pkgdesc (tools)"

mkdir -p "$subpkgdir"/usr/share/bcc
mv "$pkgdir"/usr/share/bcc/tools "$subpkgdir"/usr/share/bcc
mv "$pkgdir"/usr/share/bcc/introspection "$subpkgdir"/usr/share/bcc
}

_py() {
maxice8 marked this conversation as resolved.
Show resolved Hide resolved
depends="bcc"
pkgdesc="$pkgdesc (python bindings)"

mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/python2.7 "$subpkgdir"/usr/lib/python2.7
}

_lua() {
maxice8 marked this conversation as resolved.
Show resolved Hide resolved
depends="bcc"
pkgdesc="$pkgdesc (lua bindings)"

mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/bcc-lua "$subpkgdir"/usr/bin
}

sha512sums="92ba0f57d22af610ac81661526fed8bec80d502bcbc8aa5048ba7c50911247c020832db23afdcf9b555b142cd387c228cf7baa0ddc94067165403e362227f235 bcc-0.10.0.tar.gz
e2f0cc063a13e2d5ad57db364e29c064f2c351b82bbd4013d613614adab3b9f4aa555ac71e06189807d32211fdef5c9520b4bc5df2db5de3db02123503d242a8 10-use-system-libbpf.patch"