aports/community/diffoscope/APKBUILD
2023-05-06 04:43:40 +02:00

57 lines
1.2 KiB
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=diffoscope
pkgver=242
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
python3
"
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="
949ea13c77aee62728129f3a7a326eed302383779d9607d53cbb641c8a7d111b3975d4d8e8eefb4261ec2db7ea13502bf00b1a30f77f96d18c9ee7d17d6050e6 diffoscope-242.tar.gz
"