mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-15 10:32:23 +01:00
61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=diffoscope
|
|
pkgver=285
|
|
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
|
|
xz
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://salsa.debian.org/reproducible-builds/diffoscope/-/archive/$pkgver/diffoscope-$pkgver.tar.gz"
|
|
|
|
# secfixes:
|
|
# 256-r0:
|
|
# - CVE-2024-25711
|
|
|
|
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="
|
|
1b5d41677eacf8b2760493ca9e6e1970e569cd25790f9d9fd5f80fef89017043c13449c098b12bdae7961e7fd75183f1d13f8d9a2220188a1999aa06ed96f18e diffoscope-285.tar.gz
|
|
"
|