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 719CB158003 for ; Fri, 19 May 2023 12:59:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A016DE084E; Fri, 19 May 2023 12:59:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8217AE084E for ; Fri, 19 May 2023 12:59:02 +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 BE251340B37 for ; Fri, 19 May 2023 12:59:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EC70A65 for ; Fri, 19 May 2023 12:59:00 +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: <1684501136.508aed4808cb95855ece91b72366acf6a88329d5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/botocore/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/botocore/botocore-1.29.136-r1.ebuild dev-python/botocore/botocore-1.29.136.ebuild X-VCS-Directories: dev-python/botocore/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 508aed4808cb95855ece91b72366acf6a88329d5 X-VCS-Branch: master Date: Fri, 19 May 2023 12:59:00 +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: b77925ec-fc90-4637-a792-4d308195ab3a X-Archives-Hash: 5d9bf1887b9741a7780f0eaf9be76f59 commit: 508aed4808cb95855ece91b72366acf6a88329d5 Author: Michał Górny gentoo org> AuthorDate: Fri May 19 12:39:01 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 19 12:58:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=508aed48 dev-python/botocore: Unblock urllib3-2 again Signed-off-by: Michał Górny gentoo.org> .../{botocore-1.29.136.ebuild => botocore-1.29.136-r1.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-python/botocore/botocore-1.29.136.ebuild b/dev-python/botocore/botocore-1.29.136-r1.ebuild similarity index 73% rename from dev-python/botocore/botocore-1.29.136.ebuild rename to dev-python/botocore/botocore-1.29.136-r1.ebuild index b446172b3f31..3ced99abe4ff 100644 --- a/dev-python/botocore/botocore-1.29.136.ebuild +++ b/dev-python/botocore/botocore-1.29.136-r1.ebuild @@ -31,7 +31,6 @@ RDEPEND=" dev-python/six[${PYTHON_USEDEP}] =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] " BDEPEND=" @@ -67,6 +66,13 @@ python_test() { tests/unit/test_client.py::TestClientErrors::test_BOTO_DISABLE_COMMONNAME # TODO tests/functional/test_credentials.py::SSOSessionTest::test_token_chosen_from_provider + # urllib3-2 compatibility, mock relies on implementation details + tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_continue_no_response_from_server + tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_continue_returned + tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_continue_sends_307 + tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_sends_connection_header + tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_handles_expect_100_with_different_reason_phrase + tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_state_reset_on_connection_close ) epytest tests/{functional,unit} -n "$(makeopts_jobs)"