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 23137158003 for ; Sun, 31 Jul 2022 02:59:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D55BAE0D39; Sun, 31 Jul 2022 02:59:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A9351E0D39 for ; Sun, 31 Jul 2022 02:59:18 +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 890AB340E73 for ; Sun, 31 Jul 2022 02:59:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0EC3555 for ; Sun, 31 Jul 2022 02:59:15 +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: <1659235977.1502e5e3459b31dc6400f6fe71a62ef4f5b5db10.sam@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.0-r1.ebuild dev-python/scipy/scipy-1.9.0.ebuild dev-python/scipy/scipy-1.9.9999.ebuild X-VCS-Directories: dev-python/scipy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1502e5e3459b31dc6400f6fe71a62ef4f5b5db10 X-VCS-Branch: master Date: Sun, 31 Jul 2022 02:59:15 +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: 4a246532-7761-4361-9bc6-ea31d755c169 X-Archives-Hash: fe27510f6f28c592ca1ce2ed8b249ac7 commit: 1502e5e3459b31dc6400f6fe71a62ef4f5b5db10 Author: Sam James gentoo org> AuthorDate: Sun Jul 31 02:52:57 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 31 02:52:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1502e5e3 dev-python/scipy: depend on umfpack Some of the logic got gutted (hence what I said in d133f35f892233784f38a3913c6b61c7490a47ad) but it still automagically uses umfpack if it can. Signed-off-by: Sam James gentoo.org> dev-python/scipy/{scipy-1.9.0.ebuild => scipy-1.9.0-r1.ebuild} | 4 +++- dev-python/scipy/scipy-1.9.9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/scipy/scipy-1.9.0.ebuild b/dev-python/scipy/scipy-1.9.0-r1.ebuild similarity index 94% rename from dev-python/scipy/scipy-1.9.0.ebuild rename to dev-python/scipy/scipy-1.9.0-r1.ebuild index 61d7f61e799e..888ff2073ebb 100644 --- a/dev-python/scipy/scipy-1.9.0.ebuild +++ b/dev-python/scipy/scipy-1.9.0-r1.ebuild @@ -46,9 +46,11 @@ LICENSE="BSD LGPL-2" SLOT="0" IUSE="doc" +# umfpack is technically optional but it's preferred to have it available. DEPEND=" >=dev-python/numpy-1.18.5[lapack,${PYTHON_USEDEP}] - sci-libs/arpack:0= + sci-libs/arpack:= + sci-libs/umfpack virtual/cblas >=virtual/lapack-3.8 " diff --git a/dev-python/scipy/scipy-1.9.9999.ebuild b/dev-python/scipy/scipy-1.9.9999.ebuild index 61d7f61e799e..888ff2073ebb 100644 --- a/dev-python/scipy/scipy-1.9.9999.ebuild +++ b/dev-python/scipy/scipy-1.9.9999.ebuild @@ -46,9 +46,11 @@ LICENSE="BSD LGPL-2" SLOT="0" IUSE="doc" +# umfpack is technically optional but it's preferred to have it available. DEPEND=" >=dev-python/numpy-1.18.5[lapack,${PYTHON_USEDEP}] - sci-libs/arpack:0= + sci-libs/arpack:= + sci-libs/umfpack virtual/cblas >=virtual/lapack-3.8 "