<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/27d08b688325cf1818181da636c04d32e061ea9e">https://github.com/macports/macports-ports/commit/27d08b688325cf1818181da636c04d32e061ea9e</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 27d08b68832 gnuradio: fix build on older OSX by blacklisting Xcode compilers < 900
</span>27d08b68832 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 27d08b688325cf1818181da636c04d32e061ea9e
</span>Author: Michael Dickens <michaelld@macports.org>
AuthorDate: Thu Jul 16 11:00:18 2020 -0400

<span style='display:block; white-space:pre;color:#404040;'>    gnuradio: fix build on older OSX by blacklisting Xcode compilers < 900
</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/60839
</span>---
 science/gnuradio/Portfile | 7 +++++++
 1 file changed, 7 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/gnuradio/Portfile b/science/gnuradio/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 4d191067bd5..743ac22ee89 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/gnuradio/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/gnuradio/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,6 +6,7 @@ PortGroup           github 1.0
</span> PortGroup           app 1.0
 PortGroup           active_variants 1.1
 PortGroup           conflicts_build 1.0
<span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup           compiler_blacklist_versions 1.0
</span> 
 name                gnuradio
 maintainers         {michaelld @michaelld} {ra1nb0w @ra1nb0w}
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -19,6 +20,12 @@ platforms           darwin macosx
</span> 
 compiler.c_standard   2011
 compiler.cxx_standard 2011
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# 3.8 fails to build with Clang 800 do to the use of "static
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# constexpr", which is not yet supported. Since this style of usage ie
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# becoming more common, just block older compilers and use a recent
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# one that supports this combination of attributes. See also:
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# https://trac.macports.org/ticket/60839
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.blacklist-append { clang < 900 }
</span> 
 if {${subport} eq ${name}} {
 
</pre><pre style='margin:0'>

</pre>