2025-09-22 15:51:16 +02:00

46 lines
1.1 KiB
Bash

# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
pkgname=python-fastbencode
pkgver=0.3.6
pkgrel=1
pkgdesc='Implementation of bencode with optional fast C extensions'
arch=('i686' 'x86_64')
url='https://github.com/breezy-team/fastbencode'
msys2_references=(
"purl: pkg:pypi/fastbencode"
)
license=(spdx:GPL-2.0-or-later)
depends=(python)
makedepends=(
python-build
python-installer
python-setuptools
python-setuptools-rust
python-devel
gcc
)
checkdepends=(python-pytest)
source=("https://pypi.io/packages/source/f/fastbencode/fastbencode-$pkgver.tar.gz")
sha256sums=('114f853ebbb0a5168ac7ca4337bd9a542105e3d403b970111bfef16e0037c1c5')
build() {
cd "fastbencode-$pkgver"
# pyo3 doesn't support cygwin yet, so pass the python lib directly
local link_arg=$(python -c "import sysconfig; print(sysconfig.get_config_var('LIBPYTHON'))")
export RUSTFLAGS="-C link-arg=$link_arg"
python -m build --wheel --no-isolation
}
check() {
cd "fastbencode-$pkgver"
python -m unittest discover -v
}
package() {
cd "fastbencode-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}