mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 05:44:34 +02:00
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=asciidoc
|
|
pkgver=10.2.1
|
|
pkgrel=0
|
|
pkgdesc="Text based documentation"
|
|
url="https://asciidoc.org/"
|
|
arch="noarch"
|
|
license="GPL-2.0-or-later AND MIT"
|
|
depends="python3 libxml2-utils docbook-xsl"
|
|
makedepends="py3-gpep517 py3-setuptools py3-wheel"
|
|
checkdepends="py3-pytest py3-pytest-mock"
|
|
subpackages="$pkgname-pyc $pkgname-doc"
|
|
source="https://github.com/asciidoc-py/asciidoc-py/releases/download/$pkgver/asciidoc-$pkgver.tar.gz"
|
|
options="!check" # py3-pytest-mock
|
|
|
|
replaces="$pkgname-vim"
|
|
|
|
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
|
|
install -Dm644 doc/*.1 -t "$pkgdir"/usr/share/man/man1/
|
|
install -Dm644 asciidoc/api.py -t "$pkgdir"/usr/lib/python3*/site-packages/asciidoc/
|
|
}
|
|
|
|
sha512sums="
|
|
02d064aab8dfb05af4ae49a7c7bd1381156c6c90f95b2494218c80f01c39987cb971d68c533b5519abade77be9832b3fab653d8ae2ca7bb682c5bb720612839f asciidoc-10.2.1.tar.gz
|
|
"
|