1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/py3-pdm-backend/APKBUILD
2023-03-06 15:30:19 +00:00

49 lines
1.3 KiB
Text

# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
pkgname=py3-pdm-backend
pkgver=2.0.5
pkgrel=0
pkgdesc="Build backend used by PDM that supports latest packaging standards"
url="https://pdm-backend.fming.dev/"
arch="noarch"
license="MIT"
depends="
py3-cerberus
py3-editables
py3-license-expression
py3-packaging
py3-pyproject-metadata
py3-tomli
py3-tomli-w
py3-validate-pyproject
python3
"
makedepends="py3-gpep517 py3-installer"
checkdepends="py3-pytest py3-setuptools python3-dev"
source="https://github.com/pdm-project/pdm-backend/archive/refs/tags/$pkgver/py3-pdm-backend-$pkgver.tar.gz
unvendor.patch
"
builddir="$srcdir/pdm-backend-$pkgver"
build() {
PDM_BUILD_SCM_VERSION=$pkgver \
gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
}
check() {
python3 -m venv --system-site-packages testenv
testenv/bin/python3 -m installer dist/*.whl
testenv/bin/python3 -m pytest
}
package() {
python3 -m installer -d "$pkgdir" \
dist/*.whl
rm -rf "$pkgdir"/usr/lib/python*/site-packages/pdm/backend/_vendor
}
sha512sums="
a219c7d05162127fa029f7386105a83437f396089933e948f2f5779aed87a6800521dd4735be9a3abf3374aabfbcae351975143b6472aa4a431f827055f0e244 py3-pdm-backend-2.0.5.tar.gz
b54ca34f722af40fec9357b7b9025f400cffe6ab2afa749fdcc51054b6c5a4e094eca3387ea1d932deaed09244d7808c38edb9f6c5bdc085a3ec54159ff848de unvendor.patch
"