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 EEA69158086 for ; Thu, 11 Nov 2021 09:18:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37507E09DB; Thu, 11 Nov 2021 09:18:42 +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 904EBE09DB for ; Thu, 11 Nov 2021 09:18:41 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8322D342BC0 for ; Thu, 11 Nov 2021 09:18:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 139E6EA for ; Thu, 11 Nov 2021 09:18:39 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1636622301.e5d8f69e3fc6dcc375a0c7d2ce6137dabe2addd1.jsmolic@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.6.3.ebuild X-VCS-Directories: dev-python/scipy/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: e5d8f69e3fc6dcc375a0c7d2ce6137dabe2addd1 X-VCS-Branch: master Date: Thu, 11 Nov 2021 09:18:39 +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: 88db764e-b02f-4cbb-a7fb-94be7bc1c77e X-Archives-Hash: 7b940c66cd6715b5ee484d65e9c6492c commit: e5d8f69e3fc6dcc375a0c7d2ce6137dabe2addd1 Author: Jakov Smolić gentoo org> AuthorDate: Thu Nov 11 09:16:17 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Nov 11 09:18:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5d8f69e dev-python/scipy: Skip broken test_fitpack on 1.6.3 as well Bug: https://bugs.gentoo.org/743295 Signed-off-by: Jakov Smolić gentoo.org> dev-python/scipy/scipy-1.6.3.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/scipy/scipy-1.6.3.ebuild b/dev-python/scipy/scipy-1.6.3.ebuild index d4b29952702..169b2303682 100644 --- a/dev-python/scipy/scipy-1.6.3.ebuild +++ b/dev-python/scipy/scipy-1.6.3.ebuild @@ -108,6 +108,10 @@ python_prepare_all() { sed -e "s:== 'levy_stable':in ('levy_stable', 'crystalball', 'ncf'):" \ -i scipy/stats/tests/test_continuous_basic.py || die + # Skip broken test causing segfault, bug #743295 + sed -e 's:test_bisplev_integer_overflow:_&:' \ + -i scipy/interpolate/tests/test_fitpack.py || die + if has_version ">=sci-libs/lapack-3.10"; then sed -e 's:test_sort(:_&:' \ -i scipy/linalg/tests/test_decomp.py || die