From owner-svn-ports-all@freebsd.org Sun Jul 5 11:02:17 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E51C73685BD; Sun, 5 Jul 2020 11:02:17 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B05Pj5n3Lz3YSP; Sun, 5 Jul 2020 11:02:17 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91AC8C5D4; Sun, 5 Jul 2020 11:02:17 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 065B2HSk088515; Sun, 5 Jul 2020 11:02:17 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 065B2HZP088514; Sun, 5 Jul 2020 11:02:17 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <202007051102.065B2HZP088514@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 5 Jul 2020 11:02:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541273 - head/science/py-scipy X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/science/py-scipy X-SVN-Commit-Revision: 541273 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jul 2020 11:02:18 -0000 Author: tobik Date: Sun Jul 5 11:02:17 2020 New Revision: 541273 URL: https://svnweb.freebsd.org/changeset/ports/541273 Log: science/py-scipy: Unbreak build with GCC 10 scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/cnaitr.f:666:35: 383 | call svout (logfil, 1, rnorm, ndigit, | 2 ...... 666 | call svout (logfil, 2, rtemp, ndigit, | 1 Error: Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1) scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/cnaitr.f:737:39: 383 | call svout (logfil, 1, rnorm, ndigit, | 2 ...... 737 | call svout (logfil, 2, rtemp, ndigit, | 1 Error: Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1) gfortran10:f77: scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/dsesrt.f scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/dsaitr.f:671:35: 369 | call dvout (logfil, 1, rnorm, ndigit, | 2 ...... 671 | call dvout (logfil, 2, xtemp, ndigit, | 1 Error: Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1) scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/dsaitr.f:743:39: 369 | call dvout (logfil, 1, rnorm, ndigit, | 2 ...... 743 | call dvout (logfil, 2, xtemp, ndigit, | 1 Error: Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1) http://package18.nyi.freebsd.org/data/121amd64-default-PR244494/2020-06-10_18h04m44s/logs/errors/py27-scipy-1.2.2_1.log http://package18.nyi.freebsd.org/data/121amd64-default-PR244494/2020-06-10_18h04m44s/logs/errors/py37-scipy-1.2.2_1.log A better fix would be to update this port to >= 1.5.1 which should support GCC 10 out of the box and would allow -std=legacy to be removed again. PR: 246700 Modified: head/science/py-scipy/Makefile Modified: head/science/py-scipy/Makefile ============================================================================== --- head/science/py-scipy/Makefile Sun Jul 5 10:02:51 2020 (r541272) +++ head/science/py-scipy/Makefile Sun Jul 5 11:02:17 2020 (r541273) @@ -25,6 +25,7 @@ RUN_DEPENDS= ${PYNUMPY} USES= fortran python shebangfix USE_PYTHON= autoplist concurrent distutils +FFLAGS+= -std=legacy LDFLAGS+= -shared PYDISTUTILS_BUILDARGS= --fcompiler=gnu95 PYDISTUTILS_CONFIGUREARGS= --fcompiler=gnu95