<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/3a008833fa613075f48491e889fa5334bec1cd51">https://github.com/macports/mpbb/commit/3a008833fa613075f48491e889fa5334bec1cd51</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 3a008833fa613075f48491e889fa5334bec1cd51
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Thu Aug 13 14:14:11 2020 -0500

<span style='display:block; white-space:pre;color:#404040;'>    Add arm64 arch exclusions
</span>---
 tools/sort-with-subports.tcl | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/tools/sort-with-subports.tcl b/tools/sort-with-subports.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 2123ca3..df2d0c4 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/tools/sort-with-subports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/tools/sort-with-subports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -181,10 +181,19 @@ while {$todo ne {}} {
</span>                     }
                 }
             }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            if {$outputports($p) == 1 && $::macports::os_major <= 10} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            if {$outputports($p) == 1 && ($::macports::os_major <= 10 || $::macports::os_major >= 20)} {
</span>                 if {$opened == 1 || ![catch {mportopen $portinfo(porturl) [list subport $portinfo(name)] ""} result]} {
                     set supported_archs [_mportkey $result supported_archs]
                     switch $::macports::os_arch {
<span style='display:block; white-space:pre;background:#e0ffe0;'>+                        arm {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                            if {$supported_archs eq "noarch"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                puts stderr "Excluding $portinfo(name) because the ${::macports::macosx_version}_x86_64 builder will build it"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                set outputports($p) 0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                            } elseif {$supported_archs ne "" && "arm64" ni $supported_archs} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                puts stderr "Excluding $portinfo(name) because it does not support the arm64 arch"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                set outputports($p) 0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                            }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        }
</span>                         i386 {
                             if {!${is_64bit_capable} && $supported_archs ne "" && ("x86_64" ni $supported_archs || "i386" ni $supported_archs)} {
                                 puts stderr "Excluding $portinfo(name) because the ${::macports::macosx_version}_x86_64 builder will build it"
</pre><pre style='margin:0'>

</pre>