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, 02 Nov 2021 03:40:46
Message-Id: 1635824436.5c4c1d4cc663965a9f5b6f1840305a39879e5518.Alessandro-Barbieri@gentoo
1 commit: 5c4c1d4cc663965a9f5b6f1840305a39879e5518
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon Nov 1 20:54:20 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Tue Nov 2 03:40:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5c4c1d4c
7
8 dev-python/asyncssh: drop 2.6.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.6.0.ebuild | 54 -------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-python/asyncssh/Manifest b/dev-python/asyncssh/Manifest
17 index 88408ea69..5d02d1997 100644
18 --- a/dev-python/asyncssh/Manifest
19 +++ b/dev-python/asyncssh/Manifest
20 @@ -1,2 +1 @@
21 -DIST asyncssh-2.6.0.tar.gz 419074 BLAKE2B ecac549c3b95b024cf6135e8809720f547607842506e874fd066c351fd89d48b705c4056efdfebed4e88e74f544e8d362d95690c9574e5cd4e0de5cafd84b44e SHA512 b1421ba03bbc3f919ebdc3f4936e024ecb579e9a6823ff507be5fb3b6e03ff0b7aaebf364282902b53f82eeaa095894d747e200eb9fc28cad19d94ec809448a3
22 DIST asyncssh-2.7.0.tar.gz 420765 BLAKE2B 4beab38843951cb9e86f5dc88b4bde4efd9a29178160381ea359233b675d2fa8bbfe58750b8d3fdded65998ea3c472b7b26c07fa191bd8428a06e3e014794dfe SHA512 0f25b199075fc5ff2f27c040b81d679c17fdebb68e919abc23af5b10dc0626eb10141bd6d6de7d92f797f84394a54c34757a8332c4aa08bab36ec6f04e353204
23
24 diff --git a/dev-python/asyncssh/asyncssh-2.6.0.ebuild b/dev-python/asyncssh/asyncssh-2.6.0.ebuild
25 deleted file mode 100644
26 index af5b73206..000000000
27 --- a/dev-python/asyncssh/asyncssh-2.6.0.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..9} )
36 -DOCS_DIR="docs"
37 -DOCS_BUILDER="sphinx"
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 -BDEPEND="
55 - ${REDEPEND}
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 -
67 -distutils_enable_sphinx docs
68 -
69 -python_test() {
70 - epytest \
71 - --deselect tests/test_agent.py::_TestAgent::test_confirm \
72 - --deselect tests/test_x509.py::_TestX509::test_expired_root
73 -}
74 -
75 -pkg_postinst() {
76 - optfeature "support for OpenSSH private key encryption" dev-python/bcrypt
77 - optfeature "support for key exchange and authentication with U2F/FIDO2 security keys" dev-python/fido2
78 - optfeature "support for accessing PIV keys on PKCS#11 security tokens" dev-python/python-pkcs11
79 - optfeature "support for GSSAPI key exchange and authentication on UNIX" dev-python/gssapi
80 - 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
81 - optfeature "support for UMAC cryptographic hashes" dev-python/libnettle
82 - optfeature "support for X.509 certificate authentication" dev-python/pyopenssl
83 -}