blob: ce155483f77361b8167ceead3d3438f7ca9a6001 (
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
|
# Maintainer: Blair Bonnett <blair dot bonnett at gmail dot com>
# Contributor: Quan Guo <guotsuan at gmail dot com>
pkgname=python-llvmlite-git
_gitname=llvmlite
pkgver=0.45.0dev0.r7.g66dfc90f
pkgrel=1
pkgdesc="A lightweight LLVM Python binding for writing JIT compilers (Git version)"
url="https://github.com/numba/llvmlite"
arch=('i686' 'x86_64')
license=('BSD-2-Clause')
depends=('python' 'llvm15-libs')
makedepends=(
'git' 'llvm15' 'python-build' 'python-installer'
'python-setuptools' 'python-wheel'
)
optdepends=(
'python-graphviz: visualising control-flow graphs'
)
provides=("python-llvmlite=$pkgver")
conflicts=('python-llvmlite')
source=(${_gitname}::git+https://github.com/numba/llvmlite.git)
sha256sums=('SKIP')
pkgver() {
cd "$_gitname"
git describe --long | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$_gitname"
LLVM_CONFIG=/usr/bin/llvm-config-15 python -m build --no-isolation --wheel
}
check() {
cd "$srcdir/$_gitname"
python runtests.py
}
package() {
cd "${srcdir}/${_gitname}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# Remove tests from final package.
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
rm -r "$pkgdir/$site_packages/llvmlite/tests"
}
|