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 D7F96158090 for ; Wed, 11 May 2022 20:11:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1527BE0844; Wed, 11 May 2022 20:11:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F3DEAE0844 for ; Wed, 11 May 2022 20:11:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F3DC33412D8 for ; Wed, 11 May 2022 20:11:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 687D9452 for ; Wed, 11 May 2022 20:11:12 +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: <1652299869.c804a3c3b5e127623237af64d6a3bbe1c50a3d76.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/beautifulsoup4/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/beautifulsoup4/beautifulsoup4-4.11.1.ebuild X-VCS-Directories: dev-python/beautifulsoup4/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c804a3c3b5e127623237af64d6a3bbe1c50a3d76 X-VCS-Branch: master Date: Wed, 11 May 2022 20:11:12 +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: 15326055-24fb-44df-b925-dc08d14ee75f X-Archives-Hash: 04579d270b9f6acb049e845927b137b3 commit: c804a3c3b5e127623237af64d6a3bbe1c50a3d76 Author: Michał Górny gentoo org> AuthorDate: Wed May 11 18:06:23 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 11 20:11:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c804a3c3 dev-python/beautifulsoup4: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/beautifulsoup4/beautifulsoup4-4.11.1.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/dev-python/beautifulsoup4/beautifulsoup4-4.11.1.ebuild b/dev-python/beautifulsoup4/beautifulsoup4-4.11.1.ebuild index 9e6b4d8e07cd..5d5d50bc1f75 100644 --- a/dev-python/beautifulsoup4/beautifulsoup4-4.11.1.ebuild +++ b/dev-python/beautifulsoup4/beautifulsoup4-4.11.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 @@ -21,6 +21,17 @@ RDEPEND=" dev-python/html5lib[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}] " +# bs4 prefers cchardet > chardet > charset-normalizer +# however, charset-normalizer causes test failures, so force the other two +# dev-python/chardet[${PYTHON_USEDEP}] +BDEPEND=" + test? ( + || ( + dev-python/cchardet[${PYTHON_USEDEP}] + dev-python/chardet[${PYTHON_USEDEP}] + ) + ) +" distutils_enable_tests pytest distutils_enable_sphinx doc/source