<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/fd65ac3ccc42b195fd6a85138db3900c363d8ef7">https://github.com/macports/mpbb/commit/fd65ac3ccc42b195fd6a85138db3900c363d8ef7</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 fd65ac3  mpbb: bug fixes
</span>fd65ac3 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit fd65ac3ccc42b195fd6a85138db3900c363d8ef7
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Wed Jan 6 18:54:18 2021 +1100

<span style='display:block; white-space:pre;color:#404040;'>    mpbb: bug fixes
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fix error when ports specify nonexistent dependencies. Don't exclude noarch
</span><span style='display:block; white-space:pre;color:#404040;'>    ports on x86_64.
</span>---
 tools/sort-with-subports.tcl | 4 +++-
 1 file changed, 3 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 e083da8..072e8f2 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;'>@@ -215,6 +215,8 @@ while {[llength $todo] > 0} {
</span>         }
         if {[llength $result] < 2} {
             puts stderr "port $p not found in the index"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+            set portdepinfo($p) [list]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            set outputports($p) 0
</span>             continue
         }
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -318,7 +320,7 @@ while {[llength $todo] > 0} {
</span>                         }
                         i386 {
                             if {${is_64bit_capable}} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                                if {$::macports::os_major >= 18 && $supported_archs ne "" && "x86_64" ni $supported_archs} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                if {$::macports::os_major >= 18 && $supported_archs ne "" $supported_archs ne "noarch" && "x86_64" ni $supported_archs} {
</span>                                     if {[info exists requestedports($p)]} {
                                         puts stderr "Excluding $portinfo(name) because it does not support the x86_64 arch"
                                     }
</pre><pre style='margin:0'>

</pre>