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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/3688b879dc21908c240a0ecdad8b28669731b269">https://github.com/macports/macports-ports/commit/3688b879dc21908c240a0ecdad8b28669731b269</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 3688b879dc21908c240a0ecdad8b28669731b269
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Mon Aug 28 22:13:36 2023 -0500

<span style='display:block; white-space:pre;color:#404040;'>    muniversal: Remove quoted arch flags correctly
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    When removing architecture-specific flags, account for the fact that
</span><span style='display:block; white-space:pre;color:#404040;'>    sometimes (as in php-config) they are in quotation marks.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Also, do not collapse multiple spaces into one because that could result
</span><span style='display:block; white-space:pre;color:#404040;'>    in erroneous presentation of output (as in php-config) or an
</span><span style='display:block; white-space:pre;color:#404040;'>    IndentationError (in the case of python scripts).
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes and partially reverts c9a6e03fc195486bbc91148a44393ae9f333f109.
</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/64758
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/67898
</span>---
 _resources/port1.0/group/muniversal-1.0.tcl | 12 +++---------
 _resources/port1.0/group/muniversal-1.1.tcl | 12 +++---------
 2 files changed, 6 insertions(+), 18 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/muniversal-1.0.tcl b/_resources/port1.0/group/muniversal-1.0.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index bc8bd0998e5..4513eb557cd 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/muniversal-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/muniversal-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -608,18 +608,12 @@ variant universal {
</span>             copy ${dir1}/${fl} ${tempfile1}
             copy ${dir2}/${fl} ${tempfile2}
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            reinplace -q -E {s:-arch +[0-9a-zA-Z_]+::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            reinplace -q {s:-m32::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            reinplace -q {s:-m64::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            # also strip out host information and stray space runs
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            reinplace -q -E {s:--host=[^ ]+::g}     ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            reinplace -q -E {s:host_alias=[^ ]+::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            reinplace -q -E {s:  +: :g}             ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            set re {(-m32|-m64|-arch +[0-9a-zA-Z_]+|(--host|host_alias)=[0-9a-zA-Z_.-]+)}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            reinplace -q -E "s: *(${re}|'${re}'|\"${re}\")::g" ${tempfile1} ${tempfile2}
</span> 
             if { ! [catch {system "/usr/bin/cmp -s \"${tempfile1}\" \"${tempfile2}\""}] } {
                 # modified files are identical
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                ui_debug "universal: merge: ${fl} differs in ${dir1} and ${dir2} but are the same when stripping out -m32, -m64, and -arch XXX"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                ui_debug "universal: merge: ${fl} differs in ${dir1} and ${dir2} but are the same when stripping out -m32, -m64, -arch *, --host=*, and host_alias=*"
</span>                 copy ${tempfile1} ${dir}/${fl}
                 delete ${tempfile1} ${tempfile2} ${tempdir}
             } else {
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/muniversal-1.1.tcl b/_resources/port1.0/group/muniversal-1.1.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index fc4df1b33b7..e8297dd5435 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/muniversal-1.1.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/muniversal-1.1.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -319,18 +319,12 @@ proc muniversal::strip_arch_flags {dir1 dir2 dir fl} {
</span>     copy ${dir1}/${fl} ${tempfile1}
     copy ${dir2}/${fl} ${tempfile2}
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace -q -E {s:-arch +[0-9a-zA-Z_]+::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace -q {s:-m32::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace -q {s:-m64::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    # also strip out host information and stray space runs
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace -q -E {s:--host=[^ ]+::g}     ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace -q -E {s:host_alias=[^ ]+::g} ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    reinplace -q -E {s:  +: :g}             ${tempfile1} ${tempfile2}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set re {(-m32|-m64|-arch +[0-9a-zA-Z_]+|(--host|host_alias)=[0-9a-zA-Z_.-]+)}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    reinplace -q -E "s: *(${re}|'${re}'|\"${re}\")::g" ${tempfile1} ${tempfile2}
</span> 
     if { ! [catch {system "/usr/bin/cmp -s \"${tempfile1}\" \"${tempfile2}\""}] } {
         # modified files are identical
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        ui_debug "universal: merge: ${fl} differs in ${dir1} and ${dir2} but are the same when stripping out -m32, -m64, and -arch XXX"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ui_debug "universal: merge: ${fl} differs in ${dir1} and ${dir2} but are the same when stripping out -m32, -m64, -arch *, --host=*, and host_alias=*"
</span>         copy ${tempfile1} ${dir}/${fl}
         delete ${tempfile1} ${tempfile2} ${tempdir}
     } else {
</pre><pre style='margin:0'>

</pre>