Date: Friday, April 7, 2023 @ 04:16:11
Author: felixonmars
Revision: 1440486
archrelease: copy trunk to community-staging-x86_64
Added:
python-pyvex/repos/community-staging-x86_64/
python-pyvex/repos/community-staging-x86_64/PKGBUILD
(from rev 1440485, python-pyvex/trunk/PKGBUILD)
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: python-pyvex/repos/community-staging-x86_64/PKGBUILD (from rev 1440485,
python-pyvex/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-07 04:16:11 UTC (rev 1440486)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+_pyname=pyvex
+pkgname=python-${_pyname}
+pkgver=9.2.26
+pkgrel=2
+pkgdesc="Python bindings for Valgrind's VEX IR"
+url='https://github.com/angr/pyvex'
+license=('BSD')
+arch=('x86_64')
+depends=('python' 'python-archinfo' 'python-bitstring' 'python-cffi'
'python-setuptools')
+makedepends=('git' 'python-build' 'python-installer' 'python-wheel')
+checkdepends=('python-pytest')
+source=("git+${url}.git#commit=v${pkgver}"
+ git+https://github.com/angr/vex.git)
+sha512sums=('SKIP'
+ 'SKIP')
+
+prepare() {
+ cd ${_pyname}
+ git submodule init
+ git config submodule."vex".url "${srcdir}/vex"
+ git -c protocol.file.allow=always submodule update --recursive
+
+ sed 's/FLAGS=/FLAGS+=/g' -i pyvex_c/Makefile
+ sed 's/-shared/$(LDFLAGS) -shared/' -i "${srcdir}"/vex/Makefile-gcc
+}
+
+build() {
+ cd ${_pyname}
+ export EXTRA_CFLAGS="${CFLAGS} ${CPPFLAGS}"
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd ${_pyname}
+ # TODO: enable all tests once angr is packaged
+ rm tests/test_spotter.py
+ PYTHONPATH=build/lib pytest
+}
+
+package() {
+ cd ${_pyname}
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+ install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et: