<pre style='margin:0'>
Michael Dickens (michaelld) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/ab921da35f56f2b2df27e27e9d9a9db3ad954a69">https://github.com/macports/macports-ports/commit/ab921da35f56f2b2df27e27e9d9a9db3ad954a69</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new ab921da35f5 Py-numpy: require a C/C++11 compliant compiler
</span>ab921da35f5 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit ab921da35f56f2b2df27e27e9d9a9db3ad954a69
</span>Author: Michael Dickens <michaelld@macports.org>
AuthorDate: Fri Jun 26 11:56:32 2020 -0400
<span style='display:block; white-space:pre;color:#404040;'> Py-numpy: require a C/C++11 compliant compiler
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> This setting matches SciPy and allow some older macOS to build this port.
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> Closes: https://trac.macports.org/ticket/60711
</span>---
python/py-numpy/Portfile | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/python/py-numpy/Portfile b/python/py-numpy/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index dbd4cbc4f92..cb50ec6c013 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/python/py-numpy/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/python/py-numpy/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,9 +6,6 @@ PortGroup github 1.0
</span> PortGroup compilers 1.0
PortGroup compiler_blacklist_versions 1.0
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# some older Clang say they support SIMD when they don't
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-compiler.blacklist-append {clang < 900}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> name py-numpy
categories-append math
license BSD
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -39,6 +36,14 @@ python.consistent_destroot yes
</span> # https://trac.macports.org/ticket/48263
#universal_variant no
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# some older Clang say they support SIMD when they don't
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.blacklist-append {clang < 900}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# require a C/C++11 compliant compiler, to match SciPy and allow some
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# older macOS to build this port.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.c_standard 2011
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.cxx_standard 2011
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> # default livecheck
github.livecheck.regex {(\d+(?:\.\d+)+)}
</pre><pre style='margin:0'>
</pre>