mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 04:44:57 +02:00
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-pypdf
|
|
pkgver=5.3.1
|
|
pkgrel=0
|
|
pkgdesc="Pure-Python library built as a PDF toolkit"
|
|
url="https://github.com/py-pdf/pypdf"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
options="!check" # issues with reading pdf files from test dirs
|
|
makedepends="py3-gpep517 py3-installer py3-flit-core"
|
|
checkdepends="py3-pillow py3-pytest"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/py-pdf/pypdf/archive/refs/tags/$pkgver.tar.gz"
|
|
builddir="$srcdir/pypdf-$pkgver"
|
|
|
|
provides="py3-pypdf2=$pkgver-r$pkgrel"
|
|
replaces="py3-pypdf2"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
5f9b0efdb51f9d56d9c10f7660718755c0bb731c77337530ebdf47472e837a97d0516b105c657881e424d1cded2fc6b44a5c5415600f4dc562d56faf66551b2b py3-pypdf-5.3.1.tar.gz
|
|
"
|