git » pyalpm.git » main » tree

[main] / PKGBUILD

# Maintainer : Rémy Oudompheng <remy@archlinux.org>

pkgname=pyalpm
pkgver=0.10.10
pkgrel=2
pkgdesc="Python 3 bindings for libalpm"
arch=('x86_64' 'armv7h')
url="https://gitlab.archlinux.org/archlinux/pyalpm"
license=('GPL-3.0-or-later')
depends=('python' 'pacman')
makedepends=('git' 'python-setuptools' 'python-pkgconfig' 'python-build' 'python-installer' 'python-wheel')
#checkdepends=('python-pytest' 'python-pytest-pacman')
source=("git+https://gitlab.archlinux.org/archlinux/pyalpm.git#tag=$pkgver")
validpgpkeys=('E499C79F53C96A54E572FEE1C06086337C50773E')
sha512sums=('f44b94c099697f8a9fa043c2030680545493c5a55b4da4e9c5ec5009cc9d7c5b3825f9ebddbe30343421af756b6c93d453a3f9596527718e3bd7d5db0f42f1ca')

prepare() {
  cd "${pkgname}"
}

build() {
  cd "${pkgname}"
  python -m build --wheel --no-isolation
}

#check() {
#  cd "${pkgname}"
#  local python_version=$(python -c 'import sys; print("".join(map(str, sys.version_info[:2])))')
#  PYTHONPATH="$PWD/build/lib.linux-$CARCH-cpython-$python_version" pytest
#}

package() {
  cd "${pkgname}"
  python -m installer --destdir="$pkgdir" dist/*.whl
}