mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
39 lines
1.3 KiB
Text
39 lines
1.3 KiB
Text
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-asyncssh
|
|
_relname=${pkgname#"py3-"}
|
|
pkgver=2.14.1
|
|
pkgrel=0
|
|
pkgdesc="provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python 3.6+ asyncio framework"
|
|
url="https://asyncssh.readthedocs.io/en/latest/"
|
|
arch="all"
|
|
license="EPL-2.0"
|
|
depends="python3 py3-cryptography py3-typing-extensions"
|
|
makedepends="py3-gpep517 py3-installer py3-setuptools py3-wheel"
|
|
checkdepends="py3-bcrypt py3-openssl py3-pytest"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/a/asyncssh/asyncssh-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_relname-$pkgver"
|
|
|
|
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 \
|
|
--deselect tests/test_x11.py \
|
|
--deselect tests/test_connection.py \
|
|
--deselect tests/test_encryption.py
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" .dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
b3a96990c730a3cfda83b7f459675279a93d77c962b9765aa3b763a25a83a9fd143dfb3b25944fdbd4c5cded4b9258d82f2b06c1dc4f47445d0bdfa655d91f70 asyncssh-2.14.1.tar.gz
|
|
"
|