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 F3714158094 for ; Thu, 11 Aug 2022 08:50:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59486E0866; Thu, 11 Aug 2022 08:50:25 +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 CB05AE0845 for ; Thu, 11 Aug 2022 08:50: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A742E3411CA for ; Thu, 11 Aug 2022 08:50:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E700056D for ; Thu, 11 Aug 2022 08:50:21 +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: <1660207814.3579b6b3c6978d0ed290d8f9d4353dcfc43f11d3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-credssp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/requests-credssp/requests-credssp-2.0.0.ebuild X-VCS-Directories: dev-python/requests-credssp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3579b6b3c6978d0ed290d8f9d4353dcfc43f11d3 X-VCS-Branch: master Date: Thu, 11 Aug 2022 08:50:21 +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: 7f65b093-fd4e-47fe-bb7f-c1f6cbe793bc X-Archives-Hash: c4a0be1def6af4e759645b60fac9025a commit: 3579b6b3c6978d0ed290d8f9d4353dcfc43f11d3 Author: Michał Górny gentoo org> AuthorDate: Thu Aug 11 06:21:06 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 11 08:50:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3579b6b3 dev-python/requests-credssp: Enable python3.11 Signed-off-by: Michał Górny gentoo.org> .../requests-credssp/requests-credssp-2.0.0.ebuild | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/dev-python/requests-credssp/requests-credssp-2.0.0.ebuild b/dev-python/requests-credssp/requests-credssp-2.0.0.ebuild index 64274ccfbf94..ddc70f408253 100644 --- a/dev-python/requests-credssp/requests-credssp-2.0.0.ebuild +++ b/dev-python/requests-credssp/requests-credssp-2.0.0.ebuild @@ -4,22 +4,30 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 DESCRIPTION="HTTPS CredSSP authentication with the requests library" -HOMEPAGE="https://pypi.org/project/requests-credssp/ https://github.com/jborean93/requests-credssp" -SRC_URI="https://github.com/jborean93/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE=" + https://pypi.org/project/requests-credssp/ + https://github.com/jborean93/requests-credssp/ +" +SRC_URI=" + https://github.com/jborean93/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz +" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~riscv" -RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] dev-python/gssapi[${PYTHON_USEDEP}] dev-python/krb5[${PYTHON_USEDEP}] >=dev-python/pyspnego-0.5.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.0.0[${PYTHON_USEDEP}]" + >=dev-python/requests-2.0.0[${PYTHON_USEDEP}] +" distutils_enable_tests pytest