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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A19CB13835B for ; Tue, 18 May 2021 11:40:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0478FE07B3; Tue, 18 May 2021 11:40:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40505E0729 for ; Tue, 18 May 2021 11:40:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B476B340B53 for ; Tue, 18 May 2021 11:40:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B48878D for ; Tue, 18 May 2021 11:40:08 +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: <1621337990.234e850db1d2faa5cef1e9511fce4f47fb8c47e2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycurl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycurl/pycurl-7.43.0.6.ebuild X-VCS-Directories: dev-python/pycurl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 234e850db1d2faa5cef1e9511fce4f47fb8c47e2 X-VCS-Branch: master Date: Tue, 18 May 2021 11:40:08 +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: a6440a2f-5698-46ba-865f-ade74c44cacb X-Archives-Hash: 2307339e7abb056d2861756d1df7805f commit: 234e850db1d2faa5cef1e9511fce4f47fb8c47e2 Author: Ekaterina Vaartis kotobank ch> AuthorDate: Sat May 15 19:53:08 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 18 11:39:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234e850d dev-python/pycurl: Bump to python 3.10 + disable failing tests Signed-off-by: Ekaterina Vaartis kotobank.ch> Signed-off-by: Michał Górny gentoo.org> dev-python/pycurl/pycurl-7.43.0.6.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pycurl/pycurl-7.43.0.6.ebuild b/dev-python/pycurl/pycurl-7.43.0.6.ebuild index 130987a64a0..6614d866068 100644 --- a/dev-python/pycurl/pycurl-7.43.0.6.ebuild +++ b/dev-python/pycurl/pycurl-7.43.0.6.ebuild @@ -5,7 +5,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=no # The selftests fail with pypy, and urlgrabber segfaults for me. -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{7..10} ) inherit distutils-r1 toolchain-funcs @@ -53,6 +53,10 @@ python_prepare_all() { sed -e 's:import wheel:raise ImportError:' -i setup.py || die # these tests are broken with newer versions of bottle sed -e 's:test.*_invalid_utf8:_&:' -i tests/getinfo_test.py || die + # these tests break with newer version of curl, because they rely + # on specific error messages + rm tests/failonerror_test.py || die + distutils-r1_python_prepare_all }