<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/9f0a64dbc1e16d149545863abd980038e8d65bf7">https://github.com/macports/macports-ports/commit/9f0a64dbc1e16d149545863abd980038e8d65bf7</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 9f0a64dbc1e mrustc: it should parse on unsupported platforms
</span>9f0a64dbc1e is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 9f0a64dbc1e16d149545863abd980038e8d65bf7
</span>Author: Kirill A. Korinsky <kirill@korins.ky>
AuthorDate: Sat Nov 12 10:21:42 2022 +0100

<span style='display:block; white-space:pre;color:#404040;'>    mrustc: it should parse on unsupported platforms
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    [skip ci]
</span>---
 lang/mrustc/Portfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/mrustc/Portfile b/lang/mrustc/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 9dd3cf26539..f53bbd16c1e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/mrustc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/mrustc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -41,9 +41,11 @@ checksums           mrustc-${github.version}.tar.gz \
</span> # i386 and ppc may requires future patches
 supported_archs     arm64 x86_64
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-array set rust_platforms [list \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    arm64   aarch64 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    x86_64  x86_64]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+set rust_platforms(arm64)  aarch64
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {![info exists rust_platforms(${configure.build_arch})]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set rust_platforms(${configure.build_arch}) ${configure.build_arch}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> 
 set rust_platform   $rust_platforms(${configure.build_arch})
 
</pre><pre style='margin:0'>

</pre>