Celeste e2b887af32 community/diffoscope: upgrade to 251
also, re-enable tests
2023-10-16 06:40:43 +00:00

56 lines
1.2 KiB
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=diffoscope
pkgver=251
pkgrel=0
pkgdesc="In-depth comparison of files, archives, and directories"
url="https://diffoscope.org/"
arch="noarch"
license="GPL-3.0-or-later"
depends="
py3-libarchive-c
py3-magic
"
makedepends="
py3-docutils
py3-gpep517
py3-setuptools
py3-wheel
python3-dev
"
checkdepends="
bzip2
cdrkit
gzip
libarchive-tools
openssh-client-default
py3-html2text
py3-pytest
py3-pytest-xdist
unzip
"
subpackages="$pkgname-pyc"
source="https://salsa.debian.org/reproducible-builds/diffoscope/-/archive/$pkgver/diffoscope-$pkgver.tar.gz"
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
# html test fails
PYTHONDONTWRITEBYTECODE=1 \
.testenv/bin/python3 -m pytest -n auto -k 'not test_diff'
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
94a6ea88268a25ea142cf6c96d2dae5fb6775dbe81dc8eec26a51e28550e8c164909cf5e6c88e504fd89feace23c1c0dc0715aa7b7df750dc0caa4123332e0a2 diffoscope-251.tar.gz
"