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 6CA9215806E for ; Fri, 26 May 2023 17:44:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1D4EE08C9; Fri, 26 May 2023 17:44:24 +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 B2A31E08C3 for ; Fri, 26 May 2023 17:44:24 +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 C4E28340E7F for ; Fri, 26 May 2023 17:44:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21A39A86 for ; Fri, 26 May 2023 17:44:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1685122346.48ae3a98caf3da9c873aa471dedd1d3b43333a29.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paramiko/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/paramiko/paramiko-3.2.0.ebuild X-VCS-Directories: dev-python/paramiko/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 48ae3a98caf3da9c873aa471dedd1d3b43333a29 X-VCS-Branch: master Date: Fri, 26 May 2023 17:44:20 +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: 3f1ab02d-eac9-4a30-aa73-c09fa7aa3ba0 X-Archives-Hash: 5b1a6784ea2cac46ed493480dd13716c commit: 48ae3a98caf3da9c873aa471dedd1d3b43333a29 Author: Michał Górny gentoo org> AuthorDate: Fri May 26 17:32:26 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 26 17:32:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48ae3a98 dev-python/paramiko: Skip broken tests and restore keywords Skip the gssapi tests, as upstream indicated they don't really maintain the code and they don't test it. Signed-off-by: Michał Górny gentoo.org> dev-python/paramiko/paramiko-3.2.0.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-python/paramiko/paramiko-3.2.0.ebuild b/dev-python/paramiko/paramiko-3.2.0.ebuild index 74945454d841..9060889d8250 100644 --- a/dev-python/paramiko/paramiko-3.2.0.ebuild +++ b/dev-python/paramiko/paramiko-3.2.0.ebuild @@ -22,9 +22,7 @@ SRC_URI=" LICENSE="LGPL-2.1" SLOT="0" -# the release is broken -# https://github.com/paramiko/paramiko/issues/2245 -KEYWORDS="" +KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" IUSE="examples server" RDEPEND=" @@ -36,6 +34,12 @@ RDEPEND=" distutils_enable_tests pytest +EPYTEST_DESELECT=( + # upstream doesn't really maintain the gssapi support + tests/test_kex_gss.py + tests/test_ssh_gss.py +) + src_prepare() { local PATCHES=( "${FILESDIR}/${PN}-3.2.0-nih-test-deps.patch"