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 3F9D6158020 for ; Mon, 21 Nov 2022 16:09:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7504BE098F; Mon, 21 Nov 2022 16:09:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5DCA0E098F for ; Mon, 21 Nov 2022 16:09:06 +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 8A338341073 for ; Mon, 21 Nov 2022 16:09:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00DFC21 for ; Mon, 21 Nov 2022 16:09:04 +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: <1669046941.0430b39a4d4a55c76f96885b65136f8b818cd6e8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scipy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/scipy/scipy-1.9.3.ebuild dev-python/scipy/scipy-1.9.9999.ebuild X-VCS-Directories: dev-python/scipy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0430b39a4d4a55c76f96885b65136f8b818cd6e8 X-VCS-Branch: master Date: Mon, 21 Nov 2022 16:09:04 +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: 57b576ff-26f6-4bda-8a34-3187a5dd4ffd X-Archives-Hash: 1058c95c7d07f40bbfc8780312dfc8aa commit: 0430b39a4d4a55c76f96885b65136f8b818cd6e8 Author: Michał Górny gentoo org> AuthorDate: Mon Nov 21 15:31:51 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 21 16:09:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0430b39a dev-python/scipy: Workaround build failure w/ setuptools-65.6.0 Signed-off-by: Michał Górny gentoo.org> dev-python/scipy/scipy-1.9.3.ebuild | 2 ++ dev-python/scipy/scipy-1.9.9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dev-python/scipy/scipy-1.9.3.ebuild b/dev-python/scipy/scipy-1.9.3.ebuild index ffe5bf5fc6c1..18e8c08b3222 100644 --- a/dev-python/scipy/scipy-1.9.3.ebuild +++ b/dev-python/scipy/scipy-1.9.3.ebuild @@ -90,6 +90,8 @@ src_unpack() { } python_configure_all() { + # workaround stupid numpy distutils overrides, indirectly via pythran + export SETUPTOOLS_USE_DISTUTILS=stdlib export SCIPY_USE_PYTHRAN=$(usex fortran 1 0) } diff --git a/dev-python/scipy/scipy-1.9.9999.ebuild b/dev-python/scipy/scipy-1.9.9999.ebuild index 0f38a0cb37a1..6396c461e4e3 100644 --- a/dev-python/scipy/scipy-1.9.9999.ebuild +++ b/dev-python/scipy/scipy-1.9.9999.ebuild @@ -90,6 +90,8 @@ src_unpack() { } python_configure_all() { + # workaround stupid numpy distutils overrides, indirectly via pythran + export SETUPTOOLS_USE_DISTUTILS=stdlib export SCIPY_USE_PYTHRAN=$(usex fortran 1 0) }