<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/d07e7d5de26d0a16ddd5f9b5b2b30f767ed74f89">https://github.com/macports/macports-ports/commit/d07e7d5de26d0a16ddd5f9b5b2b30f767ed74f89</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 d07e7d5  py-scipy: require C++11 and thread_local storage as of 1.4.0
</span>d07e7d5 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit d07e7d5de26d0a16ddd5f9b5b2b30f767ed74f89
</span>Author: Michael Dickens <michaelld@macports.org>
AuthorDate: Wed Apr 29 11:00:40 2020 -0400

<span style='display:block; white-space:pre;color:#404040;'>    py-scipy: require C++11 and thread_local storage as of 1.4.0
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Use C11 as well to match the C++ standard, since we can and it might help and doesn't hurt.
</span>---
 python/py-scipy/Portfile | 12 ++++++++++++
 1 file changed, 12 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/python/py-scipy/Portfile b/python/py-scipy/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index c976ee1..cff7746 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/python/py-scipy/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/python/py-scipy/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -37,16 +37,28 @@ if {${name} ne ${subport}} {
</span> 
     # peg at 1.2.x for Py27; SciPy dropped support as of 1.3.0
     if {${python.version} == 27} {
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>         github.setup scipy scipy 1.2.3 v
         checksums rmd160 868076b4d88257a6b536f4c3a4e1e8230b587290 \
                   sha256 beb6123e91a0bdfba4557b6560be4899dac174a38c30876e5cfc60382ecb4ff7 \
                   size   18564471
         revision  0
         github.livecheck.regex {(1\.2\.[0-9.-]+)}
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     } else {
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>         # requires PyBind11 as of 1.4.0
         depends_lib-append  port:py${python.version}-pybind11
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # require C++11 as of 1.4.0; use C11 as well to match
</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><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # require thread_local storage as of 1.4.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        compiler.thread_local_storage yes
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     depends_lib-append      port:py${python.version}-numpy \
                             port:py${python.version}-nose
 
</pre><pre style='margin:0'>

</pre>