blob: 55276f0692c4999d2e328d06cb06d124d0cf3c93 (
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
|
# Maintainer: Joaquim Monteiro <joaquim dot monteiro at protonmail dot com>
pkgname=python-blake3
pkgver=0.4.1
pkgrel=2
pkgdesc="Python bindings for the BLAKE3 cryptographic hash function"
arch=(x86_64 i686 aarch64 armv7h)
url="https://github.com/oconnor663/blake3-py"
license=('Apache-2.0' 'CC0-1.0')
depends=('python')
makedepends=('python-pip' 'rust')
source=("blake3-py-${pkgver}.tar.gz"::"https://github.com/oconnor663/blake3-py/archive/${pkgver}.tar.gz")
sha512sums=('e166d2d6ac52dac4158e7b494e83398afd692cb8b93951809338f8da26d337506e3ce2bf37528da6960cfab9b6e3f229a2b5e845dd9a83b35028249113869112')
# NEON support on ARMv7 isn't universal and there's no runtime detection,
# so it should only be turned on when the hardware supports it.
ENABLE_NEON_ON_ARMv7=0
prepare() {
if [[ -n "$VIRTUAL_ENV" ]]; then
echo 'ERROR: $VIRTUAL_ENV is set, which means the build is running in a virtual Python environment.'
echo 'ERROR: Rerun the build in a fresh terminal, using the default/system Python environment.'
exit 1
fi
if [[ $CARCH = 'aarch64' || ( "$CARCH" = 'armv7h' && "$ENABLE_NEON_ON_ARMv7" -ne 0 ) ]]; then
cd "blake3-py-${pkgver}"
echo -e '[tool.maturin]\ncargo-extra-args = "--features neon"' >> pyproject.toml
fi
}
package() {
cd "blake3-py-${pkgver}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
PIP_CONFIG_FILE=/dev/null pip install --root="$pkgdir/" --isolated --ignore-installed --no-deps --no-binary=blake3 --use-pep517 .
}
|