<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/699347d5edd654ccc991d943beee0785be709050">https://github.com/macports/mpbb/commit/699347d5edd654ccc991d943beee0785be709050</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 699347d  supported-archs: Print all archs instead of nothing
</span>699347d is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 699347d5edd654ccc991d943beee0785be709050
</span>Author: Lawrence Velázquez <larryv@macports.org>
AuthorDate: Thu Dec 1 16:34:21 2016 -0500

<span style='display:block; white-space:pre;color:#404040;'>    supported-archs: Print all archs instead of nothing
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    When a port omits "supported_archs", it is implying that it supports all
</span><span style='display:block; white-space:pre;color:#404040;'>    architectures. In this case, output an explicit list instead of nothing.
</span>---
 tools/supported-archs.tcl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/tools/supported-archs.tcl b/tools/supported-archs.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 8bbdff2..6f76623 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/tools/supported-archs.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/tools/supported-archs.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -57,6 +57,7 @@ if {[info exists portinfo(porturl)]} {
</span>     if {[catch {set mport [mportopen $portinfo(porturl) [list subport $portname] {}]}]} {
         ui_warn "failed to open port: $portname"
     } else {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        puts [_mportkey $mport supported_archs]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        set archs [_mportkey $mport supported_archs]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        puts [expr {$archs ne "" ? $archs : "x86_64 i386 ppc64 ppc"}]
</span>     }
 }
</pre><pre style='margin:0'>

</pre>