blob: 09f68075b60c967269650d969a22320786912b28 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Maintainer: Manuel Wiesinger <m {you know what belongs here} mmap {and here} at>
# Contributor: Colin Unger <mastakata 3 at yahoo dot com>
_pyname=cle
_basename=python-$_pyname
pkgname=$_basename-git
pkgdesc="A binary loader in Python"
url="https://github.com/angr/cle"
pkgver=9.2.129.dev0.r1646.d73ce74
pkgrel=2
arch=('any')
depends=(
'python-pefile'
'python-pyelftools'
'python-sortedcontainers'
'python>=3.10'
)
makedepends=(
'git'
'python-build'
'python-installer'
'python-myst-parser'
'python-setuptools'
'python-sphinx-autodoc-typehints'
'python-wheel'
)
checkdepends=(
'python-bitstring'
'python-cffi'
'python-pytest'
'python-minidump'
'python-pyxbe'
'python-arpy'
'python-pyaxmlparser'
'python-cart'
)
optdepends=(
'python-arpy: ar file format'
'python-cart: CaRT file format'
'python-claripy-git: Symbolic constraints'
'python-minidump: Microsoft Minidump'
'python-pyaxmlparser: Android APK'
'python-pypcode: Disassembly and IR translation using Ghidra SLEIGH'
'python-pyxbe: XBE (Xbox)'
'soot: Java Bytecode'
'uefi-firmware-parser: BIOS/Intel ME/UEFI firmware'
# https://aur.archlinux.org/packages/binaryninja-personal#comment-994632
# 'binaryninja: Binary Ninja'
# There are no packages for
# 'python-pyxdia: Microsoft Program database (PDB)'
)
provides=($_basename)
conflicts=($_basename)
license=('BSD-2-Clause')
source=(
"$pkgname::git+https://github.com/angr/cle.git#branch=master"
"angr-binaries.git::git+https://github.com/angr/binaries.git#branch=master"
# We cannot (reliably) specify the pkgver in checkdepends, see comment in package()
"archinfo.git::git+https://github.com/angr/archinfo.git#branch=master"
"pyvex.git::git+https://github.com/angr/pyvex.git#branch=master"
)
b2sums=('SKIP' 'SKIP' 'SKIP' 'SKIP')
prepare() {
git -C $srcdir/$pkgname clean -dfx
ln -fs angr-binaries.git binaries
}
pkgver() {
cd $srcdir/$pkgname
_version=$(grep -e '^__version__' $_pyname/__init__.py | cut -f 2 -d '"')
rev_num="$(git rev-list --count HEAD)"
last_commit="$(git rev-parse --short HEAD)"
echo "${_version}.r${rev_num}.${last_commit}"
}
build() {
cd $srcdir/$pkgname
python -m build --wheel --no-isolation
make man -C docs
}
check() {
# build pyvex module
cd $srcdir/pyvex.git
git submodule update --init
python -m build --wheel --no-isolation
cd $srcdir/$pkgname
PYTHONPATH="../archinfo.git:../pyvex.git:./build/lib" pytest tests
}
package() {
provides+=($_basename=${pkgver%\.r[0-9]*})
# All angr projects share the same version. Upstream exclusively supports
# using projects with the same version number together. Before package()
# pkgver might be outdated. Thus, run time dependencies on the pkgver are
# defined here.
depends+=(
"python-claripy=${pkgver%\.r[0-9]*}"
"python-pyvex=${pkgver%\.r[0-9]*}"
)
cd $srcdir/$pkgname
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -Dm644 docs/_build/man/cle.1 -t "${pkgdir}/usr/share/man/man1"
}
|