From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1551055-garchives=archives.gentoo.org@lists.gentoo.org> 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 6838115800A for <garchives@archives.gentoo.org>; Fri, 1 Sep 2023 12:16:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39F462BC019; Fri, 1 Sep 2023 12:16:46 +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 208402BC019 for <gentoo-commits@lists.gentoo.org>; Fri, 1 Sep 2023 12:16:46 +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 06BED335DE8 for <gentoo-commits@lists.gentoo.org>; Fri, 1 Sep 2023 12:16:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65B5010FA for <gentoo-commits@lists.gentoo.org>; Fri, 1 Sep 2023 12:16:43 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1693570577.930f8caef060547b7587b3e5e59f59e2733f9c37.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/peewee/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/peewee/peewee-3.16.2-r1.ebuild X-VCS-Directories: dev-python/peewee/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 930f8caef060547b7587b3e5e59f59e2733f9c37 X-VCS-Branch: master Date: Fri, 1 Sep 2023 12:16:43 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: afee002a-abbc-451c-9072-2e90d5d3e69b X-Archives-Hash: d12e8bb16203385564f820cfbd5b2f65 commit: 930f8caef060547b7587b3e5e59f59e2733f9c37 Author: Alfred Wingate <parona <AT> protonmail <DOT> com> AuthorDate: Mon Aug 7 05:31:17 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Sep 1 12:16:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=930f8cae dev-python/peewee: comment for native-extensions on pypy3 Signed-off-by: Alfred Wingate <parona <AT> protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/32207 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-python/peewee/peewee-3.16.2-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/peewee/peewee-3.16.2-r1.ebuild b/dev-python/peewee/peewee-3.16.2-r1.ebuild index ec4ed7a1c49d..d3b5361362fb 100644 --- a/dev-python/peewee/peewee-3.16.2-r1.ebuild +++ b/dev-python/peewee/peewee-3.16.2-r1.ebuild @@ -43,6 +43,8 @@ PATCHES=( distutils_enable_sphinx docs src_compile() { + # native-extensions are always disabled on PyPy + # https://github.com/coleifer/peewee/blob/master/setup.py#L35..L37 if ! use native-extensions; then local -x NO_SQLITE=1 fi