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

</pre>
<p><a href="https://github.com/macports/macports-base/commit/a7cf423c9c054d225b563cb6f34d8baa5c869818">https://github.com/macports/macports-base/commit/a7cf423c9c054d225b563cb6f34d8baa5c869818</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 a7cf423c Fix port info --depends with multiple ports
</span>a7cf423c is described below

<span style='display:block; white-space:pre;color:#808000;'>commit a7cf423c9c054d225b563cb6f34d8baa5c869818
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sat Aug 29 01:10:24 2020 -0500

<span style='display:block; white-space:pre;color:#404040;'>    Fix port info --depends with multiple ports
</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/61083
</span>---
 src/port/port.tcl | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port/port.tcl b/src/port/port.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 696a47c6..8eacc6a4 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port/port.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port/port.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2064,8 +2064,10 @@ proc action_info { action portlist opts } {
</span>             }
             # insert the expanded options into the ordering info
             set order_pos [lsearch -exact $global_options(options_${action}_order) ports_info_depends]
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            set global_options(options_${action}_order) [lreplace $global_options(options_${action}_order) \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                $order_pos $order_pos {*}$all_depends_options]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            if {$order_pos != -1} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                set global_options(options_${action}_order) [lreplace $global_options(options_${action}_order) \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    $order_pos $order_pos {*}$all_depends_options]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            }
</span>         }
 
         # Set up our field separators
</pre><pre style='margin:0'>

</pre>