From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 099D31581D3 for ; Fri, 17 May 2024 14:13:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 520AFE29E8; Fri, 17 May 2024 14:13:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32BC6E29E8 for ; Fri, 17 May 2024 14:13:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B8F3335DC3 for ; Fri, 17 May 2024 14:13:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC9CA132F for ; Fri, 17 May 2024 14:13:23 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1715955144.0ed08b063b0870e252cbcf734f1cff215635bcfe.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/asyncssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/asyncssh/Manifest dev-python/asyncssh/asyncssh-2.14.2.ebuild dev-python/asyncssh/metadata.xml X-VCS-Directories: dev-python/asyncssh/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 0ed08b063b0870e252cbcf734f1cff215635bcfe X-VCS-Branch: master Date: Fri, 17 May 2024 14:13:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 078e36f4-62ce-48fe-93f4-6ef54e31e0b0 X-Archives-Hash: 21f5ec240135cf6e237c434227455ff5 commit: 0ed08b063b0870e252cbcf734f1cff215635bcfe Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri May 17 13:08:48 2024 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri May 17 14:12:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed08b06 dev-python/asyncssh: new package, add 2.14.2 New dependency of spyder, loosly based on the ebuild from the benzene overlay. Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/asyncssh/Manifest | 1 + dev-python/asyncssh/asyncssh-2.14.2.ebuild | 52 ++++++++++++++++++++++++++++++ dev-python/asyncssh/metadata.xml | 13 ++++++++ 3 files changed, 66 insertions(+) diff --git a/dev-python/asyncssh/Manifest b/dev-python/asyncssh/Manifest new file mode 100644 index 000000000000..b8b02af0e904 --- /dev/null +++ b/dev-python/asyncssh/Manifest @@ -0,0 +1 @@ +DIST asyncssh-2.14.2.tar.gz 498190 BLAKE2B 66cc538322688d0782e203eb723c7c7a196fd5da725fe95df8b31e25e35e45b86bb01cb5c46f5516475614b9cf7b8076bc3994ec77daf552e030724b0734c2d1 SHA512 76952b8837832139274fbfc4ec4aa84841c66a4eb4c1bd09fd532727287574509fb2b94b684c14d6f76add80a1fe5c8236a3412ab6a71574c203706895b23f93 diff --git a/dev-python/asyncssh/asyncssh-2.14.2.ebuild b/dev-python/asyncssh/asyncssh-2.14.2.ebuild new file mode 100644 index 000000000000..1ad40f7b2969 --- /dev/null +++ b/dev-python/asyncssh/asyncssh-2.14.2.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 optfeature pypi + +DESCRIPTION="Asynchronous SSHv2 client and server library" +HOMEPAGE=" + https://github.com/ronf/asyncssh + https://pypi.org/project/asyncssh/ +" + +LICENSE="EPL-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + virtual/openssh + >=dev-python/cryptography-39.0[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-3.6[${PYTHON_USEDEP}] +" + +BDEPEND=" + test? ( + dev-python/aiofiles[${PYTHON_USEDEP}] + >=dev-python/bcrypt-3.1.3[${PYTHON_USEDEP}] + >=dev-python/fido2-0.9.2[${PYTHON_USEDEP}] + >=dev-python/gssapi-1.2.0[${PYTHON_USEDEP}] + >=dev-python/libnacl-1.4.2[${PYTHON_USEDEP}] + >=dev-python/pyopenssl-23.0.0[${PYTHON_USEDEP}] + ) +" + +EPYTEST_DESELECT=( + # https://github.com/ronf/asyncssh/pull/578 + tests/test_process.py::_TestAsyncFileRedirection::test_stdout_aiofile +) + +distutils_enable_tests pytest +distutils_enable_sphinx docs + +pkg_postinst() { + optfeature "OpenSSH private key encryption support" ">=dev-python/bcrypt-3.1.3" + optfeature "key exchange and authentication with U2F/FIDO2 security keys support" ">=dev-python/fido2-0.9.2" + optfeature "GSSAPI key exchange and authentication support" ">=dev-python/gssapi-1.2.0" + optfeature "using asyncssh with dev-libs/libsodium" "dev-python/libnacl" + optfeature "X.509 certificate authentication support" ">=dev-python/pyopenssl-23.0.0" +} diff --git a/dev-python/asyncssh/metadata.xml b/dev-python/asyncssh/metadata.xml new file mode 100644 index 000000000000..1727dacd3918 --- /dev/null +++ b/dev-python/asyncssh/metadata.xml @@ -0,0 +1,13 @@ + + + + + asyncssh + ronf/asyncssh + + + + python@gentoo.org + Python + +