Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/asyncssh/
Date: Tue, 29 Mar 2022 20:53:37
Message-Id: 1648587208.05641bce83df644dfa32ed26c54b27c8117812ad.Alessandro-Barbieri@gentoo
1 commit: 05641bce83df644dfa32ed26c54b27c8117812ad
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 29 20:16:04 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Tue Mar 29 20:53:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=05641bce
7
8 dev-python/asyncssh: drop 2.9.0
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/asyncssh/Manifest | 1 -
13 dev-python/asyncssh/asyncssh-2.9.0.ebuild | 47 -------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/asyncssh/Manifest b/dev-python/asyncssh/Manifest
17 index 814da8306..9354ec44a 100644
18 --- a/dev-python/asyncssh/Manifest
19 +++ b/dev-python/asyncssh/Manifest
20 @@ -1,2 +1 @@
21 DIST asyncssh-2.10.0.tar.gz 481494 BLAKE2B fc06ad0579f9dc00af7fd0355f8a3a87144cc6fd5f928cfd7798e9a0942b6b549bd94877ab6371470f014cda040f4092df8980e792c37e37402d77d2f5d7bfe3 SHA512 698d97ca607582d75e74fe39798d9a8490b80c1aa5cfafa0152537c9f2354528a7386b26620d0c18b6d986c710e6c16888404ba7263b821f471211b5eae3d21f
22 -DIST asyncssh-2.9.0.tar.gz 477142 BLAKE2B 01157e603911b4ce308f773c51b9b9a4329b081c185615a1eb0ceb801eb095756c741a40c54d69004cbf9afe67244480c6bd92c1ae804803ab39487d49214e96 SHA512 5369575da6b12c6adbdc6f0c8492098b089f773761c9a78f854bf5e99b09a3b3256a014dba60d6ff7ae23cca3a25176e34e803fa4dde74cc0fe704389a7d0c08
23
24 diff --git a/dev-python/asyncssh/asyncssh-2.9.0.ebuild b/dev-python/asyncssh/asyncssh-2.9.0.ebuild
25 deleted file mode 100644
26 index 654e0d743..000000000
27 --- a/dev-python/asyncssh/asyncssh-2.9.0.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DOCS_BUILDER="sphinx"
36 -DOCS_DIR="docs"
37 -PYTHON_COMPAT=( python3_{8..9} )
38 -
39 -inherit distutils-r1 docs optfeature
40 -
41 -DESCRIPTION="Asynchronous SSHv2 client and server library"
42 -HOMEPAGE="
43 - https://asyncssh.timeheart.net
44 - https://pypi.org/project/asyncssh/
45 - https://github.com/ronf/asyncssh
46 -"
47 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
48 -
49 -LICENSE="ECL-2.0"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~x86"
52 -
53 -RDEPEND=">=dev-python/cryptography-2.8[${PYTHON_USEDEP}]"
54 -DEPEND="${REDEPEND}"
55 -BDEPEND="
56 - test? (
57 - >=dev-python/bcrypt-3.1.3[${PYTHON_USEDEP}]
58 - >=dev-python/gssapi-1.2.0[${PYTHON_USEDEP}]
59 - >=dev-python/libnacl-1.4.2[${PYTHON_USEDEP}]
60 - >=dev-python/pyopenssl-17.0.0[${PYTHON_USEDEP}]
61 - >=dev-python/python-pkcs11-0.7.0[${PYTHON_USEDEP}]
62 - )
63 -"
64 -
65 -distutils_enable_tests pytest
66 -distutils_enable_sphinx docs
67 -
68 -pkg_postinst() {
69 - optfeature "support for OpenSSH private key encryption" dev-python/bcrypt
70 - optfeature "support for key exchange and authentication with U2F/FIDO2 security keys" dev-python/fido2
71 - optfeature "support for accessing PIV keys on PKCS#11 security tokens" dev-python/python-pkcs11
72 - optfeature "support for GSSAPI key exchange and authentication on UNIX" dev-python/gssapi
73 - 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
74 - optfeature "support for UMAC cryptographic hashes" dev-python/libnettle
75 - optfeature "support for X.509 certificate authentication" dev-python/pyopenssl
76 -}