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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0D6215801B for ; Fri, 1 Sep 2023 12:16:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE69D2BC014; Fri, 1 Sep 2023 12:16:45 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D17F22BC013 for ; Fri, 1 Sep 2023 12:16:45 +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 BD4F3335D72 for ; Fri, 1 Sep 2023 12:16:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 298B610F7 for ; Fri, 1 Sep 2023 12:16:43 +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: <1693570576.c034c18853f510d292a132754623a9988ab7ef14.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/simplejson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/simplejson/simplejson-3.19.1.ebuild X-VCS-Directories: dev-python/simplejson/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c034c18853f510d292a132754623a9988ab7ef14 X-VCS-Branch: master Date: Fri, 1 Sep 2023 12:16:43 +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: 9fc4c1f4-945a-4165-aa15-e78c42266557 X-Archives-Hash: a9bbfc281711b81cf57076f7d57321a9 commit: c034c18853f510d292a132754623a9988ab7ef14 Author: Alfred Wingate protonmail com> AuthorDate: Mon Aug 7 04:45:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 1 12:16:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c034c188 dev-python/simplejson: comment for native-extensions on pypy3 Signed-off-by: Alfred Wingate protonmail.com> Signed-off-by: Sam James gentoo.org> dev-python/simplejson/simplejson-3.19.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/simplejson/simplejson-3.19.1.ebuild b/dev-python/simplejson/simplejson-3.19.1.ebuild index 3d2130d9f7c4..a014c1d7ed9b 100644 --- a/dev-python/simplejson/simplejson-3.19.1.ebuild +++ b/dev-python/simplejson/simplejson-3.19.1.ebuild @@ -25,6 +25,8 @@ DOCS=( README.rst CHANGES.txt ) distutils_enable_tests unittest src_configure() { + # native-extensions are always disabled on PyPy + # https://github.com/simplejson/simplejson/blob/master/setup.py#L121 export DISABLE_SPEEDUPS=$(usex native-extensions 0 1) use native-extensions && export REQUIRE_SPEEDUPS=1 }