| Summary: | math/py-numpy: Remove dependency on math/openblas if other blas lib is selected | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Thomas Zander <riggs> | ||||
| Component: | Individual Port(s) | Assignee: | Wen Heping <wen> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Many People | CC: | arved, jcfyecrayz, phd_kimberlite, python, rhurlin, wen | ||||
| Priority: | --- | Keywords: | patch | ||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| See Also: | https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220986 | ||||||
| Attachments: |
|
||||||
Come on guys, this is a tiny patch solving a big problem. Really should not take months to review and approve. A commit references this bug: Author: wen Date: Sun Mar 19 00:41:08 UTC 2017 New revision: 436459 URL: https://svnweb.freebsd.org/changeset/ports/436459 Log: - Remove dependency on math/openblas if other blas lib is selected PR: 215764 Submitted by: riggs@ Changes: head/math/py-numpy/Makefile head/math/py-numpy/files/patch-numpy-distutils-system_info.py Thomas, why did this change require the changes to system_info.py? This change came up in discussion for a different bug - see comments starting with comment 21 in bug 220986. Assign to committer that resolved |
Created attachment 178506 [details] Patch to avoid unneccessary linking to openblas if netlib is selected math/py-numpy allows for selection of BLAS implementation. However, even if NETLIB is selected, numpy links to openblas if it locates libopenblas on the build machine. This is unnecessary. Attached is a proposal to remove this dependency.