mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-02 09:22:07 +01:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
# Maintainer: Keith Toh <ktprograms@gmail.com>
|
|
pkgname=tldr-python-client
|
|
pkgver=3.2.0
|
|
pkgrel=2
|
|
pkgdesc="Command line client for tldr, a collection of simplified and community-driven man pages"
|
|
url="https://github.com/tldr-pages/tldr-python-client"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-shtab py3-colorama py3-termcolor"
|
|
makedepends="py3-setuptools py3-sphinx py3-sphinx-argparse py3-gpep517"
|
|
checkdepends="py3-pytest"
|
|
subpackages="$pkgname-doc $pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/tldr-pages/tldr-python-client/archive/refs/tags/$pkgver.tar.gz"
|
|
options="!check" # string compare fails now
|
|
|
|
build() {
|
|
make -C docs/ man
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
gpep517 install-wheel --destdir .testenv --prefix '' .dist/*.whl
|
|
# test_error_message needs network access
|
|
.testenv/bin/python3 -m pytest -v -k "not test_error_message"
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
|
|
}
|
|
|
|
sha512sums="
|
|
1535979548b49cd8b0312f2cd11f69ba3f710e16a27c074dc5a8cb5617d7f343df30ba01a83388b460508ab519045140852767bfc8ff1189d612d71a3d35d76b tldr-python-client-3.2.0.tar.gz
|
|
"
|