From 05641bce83df644dfa32ed26c54b27c8117812ad Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 29 Mar 2022 22:16:04 +0200 Subject: [PATCH] dev-python/asyncssh: drop 2.9.0 Signed-off-by: Alessandro Barbieri --- dev-python/asyncssh/Manifest | 1 - dev-python/asyncssh/asyncssh-2.9.0.ebuild | 47 ----------------------- 2 files changed, 48 deletions(-) delete mode 100644 dev-python/asyncssh/asyncssh-2.9.0.ebuild diff --git a/dev-python/asyncssh/Manifest b/dev-python/asyncssh/Manifest index 814da83069..9354ec44a1 100644 --- a/dev-python/asyncssh/Manifest +++ b/dev-python/asyncssh/Manifest @@ -1,2 +1 @@ DIST asyncssh-2.10.0.tar.gz 481494 BLAKE2B fc06ad0579f9dc00af7fd0355f8a3a87144cc6fd5f928cfd7798e9a0942b6b549bd94877ab6371470f014cda040f4092df8980e792c37e37402d77d2f5d7bfe3 SHA512 698d97ca607582d75e74fe39798d9a8490b80c1aa5cfafa0152537c9f2354528a7386b26620d0c18b6d986c710e6c16888404ba7263b821f471211b5eae3d21f -DIST asyncssh-2.9.0.tar.gz 477142 BLAKE2B 01157e603911b4ce308f773c51b9b9a4329b081c185615a1eb0ceb801eb095756c741a40c54d69004cbf9afe67244480c6bd92c1ae804803ab39487d49214e96 SHA512 5369575da6b12c6adbdc6f0c8492098b089f773761c9a78f854bf5e99b09a3b3256a014dba60d6ff7ae23cca3a25176e34e803fa4dde74cc0fe704389a7d0c08 diff --git a/dev-python/asyncssh/asyncssh-2.9.0.ebuild b/dev-python/asyncssh/asyncssh-2.9.0.ebuild deleted file mode 100644 index 654e0d7434..0000000000 --- a/dev-python/asyncssh/asyncssh-2.9.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DOCS_BUILDER="sphinx" -DOCS_DIR="docs" -PYTHON_COMPAT=( python3_{8..9} ) - -inherit distutils-r1 docs optfeature - -DESCRIPTION="Asynchronous SSHv2 client and server library" -HOMEPAGE=" - https://asyncssh.timeheart.net - https://pypi.org/project/asyncssh/ - https://github.com/ronf/asyncssh -" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="ECL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=">=dev-python/cryptography-2.8[${PYTHON_USEDEP}]" -DEPEND="${REDEPEND}" -BDEPEND=" - test? ( - >=dev-python/bcrypt-3.1.3[${PYTHON_USEDEP}] - >=dev-python/gssapi-1.2.0[${PYTHON_USEDEP}] - >=dev-python/libnacl-1.4.2[${PYTHON_USEDEP}] - >=dev-python/pyopenssl-17.0.0[${PYTHON_USEDEP}] - >=dev-python/python-pkcs11-0.7.0[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest -distutils_enable_sphinx docs - -pkg_postinst() { - optfeature "support for OpenSSH private key encryption" dev-python/bcrypt - optfeature "support for key exchange and authentication with U2F/FIDO2 security keys" dev-python/fido2 - optfeature "support for accessing PIV keys on PKCS#11 security tokens" dev-python/python-pkcs11 - optfeature "support for GSSAPI key exchange and authentication on UNIX" dev-python/gssapi - optfeature "if you have a version of OpenSSL older than 1.1.1b installed and you want support for Curve25519 key exchange, Ed25519 keys and certificates, or the Chacha20-Poly1305 cipher" dev-python/libnacl - optfeature "support for UMAC cryptographic hashes" dev-python/libnettle - optfeature "support for X.509 certificate authentication" dev-python/pyopenssl -}