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 0A56615815E for ; Sat, 10 Feb 2024 03:24:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C24E2BC022; Sat, 10 Feb 2024 03:24:33 +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 7E3042BC022 for ; Sat, 10 Feb 2024 03:24:33 +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 8C6A43431AD for ; Sat, 10 Feb 2024 03:24:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D91114C4 for ; Sat, 10 Feb 2024 03:24:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1707534982.7c2cbe4c2526226f4f8a75f9587f1ee8078272e8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/regex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/regex/regex-2023.12.25.ebuild X-VCS-Directories: dev-python/regex/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7c2cbe4c2526226f4f8a75f9587f1ee8078272e8 X-VCS-Branch: master Date: Sat, 10 Feb 2024 03:24:29 +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: f69433a4-3e51-4917-bd08-a350fdd75dec X-Archives-Hash: eb19ce666149f08a4a77e942edcd228f commit: 7c2cbe4c2526226f4f8a75f9587f1ee8078272e8 Author: Sam James gentoo org> AuthorDate: Sat Feb 10 02:47:38 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 10 03:16:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c2cbe4c dev-python/regex: disable pypy3 It's unsupported upstream and on x86 at least, it ends up showing up precisely because of the UTF8-vs-ASCII strings representation problem. (See also https://github.com/mrabarnett/mrab-regex/issues/404 where the test issues got fixed but upstream made clear that it's unsupported and also can't really work properly.) Bug: https://github.com/mrabarnett/mrab-regex/issues/404 Bug: https://github.com/mrabarnett/mrab-regex/issues/521 Closes: https://bugs.gentoo.org/924136 Signed-off-by: Sam James gentoo.org> dev-python/regex/regex-2023.12.25.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/regex/regex-2023.12.25.ebuild b/dev-python/regex/regex-2023.12.25.ebuild index c416999e19a9..2e070fd4b84d 100644 --- a/dev-python/regex/regex-2023.12.25.ebuild +++ b/dev-python/regex/regex-2023.12.25.ebuild @@ -5,7 +5,9 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} pypy3 ) +# pypy isn't supported upstream because of its UTF8 representation for strings +# See https://github.com/mrabarnett/mrab-regex/issues/521#issuecomment-1936260187. +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 pypi