<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/497efcf286be8770e455020efe1a4ea9224fd8d6">https://github.com/macports/macports-base/commit/497efcf286be8770e455020efe1a4ea9224fd8d6</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 497efcf  macports.tcl: Fix typos
</span>497efcf is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 497efcf286be8770e455020efe1a4ea9224fd8d6
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sun Dec 2 19:34:25 2018 -0600

<span style='display:block; white-space:pre;color:#404040;'>    macports.tcl: Fix typos
</span>---
 src/macports1.0/macports.tcl | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/macports1.0/macports.tcl b/src/macports1.0/macports.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 97da311..d30a799 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/macports1.0/macports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/macports1.0/macports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1783,7 +1783,7 @@ proc macports::getdefaultportresourcepath {{path {}}} {
</span> #                \li is a MacPorts binary archive, where the Portfile is in
 #                    a file called \c +PORTFILE.
 # @param options an optional array (in list format) of options
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# @param variations an optional array (ist list format) of variations, passed
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# @param variations an optional array (in list format) of variations, passed
</span> #                   to \c eval_variants after running the Portfile
 # @param nocache a non-empty string, if port information caching should be
 #                avoided.
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1800,7 +1800,7 @@ proc mportopen {porturl {options {}} {variations {}} {nocache {}}} {
</span>     }
 
     # Look for an already-open MPort with the same URL.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    # if found, return the existing reference and bump the refcount.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # If found, return the existing reference and bump the refcount.
</span>     if {$nocache ne ""} {
         set mport ""
     } else {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1931,7 +1931,7 @@ proc mporttraverse {func {root .}} {
</span>                     $func [file join $category $port]
 
                     # Restore the current directory because some
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    # functions changes it.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    # functions change it.
</span>                     cd $pathToRoot
                 }
             }
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2019,7 +2019,7 @@ proc _portnameactive {portname} {
</span> # and active.
 # We actually start with the registry (faster?)
 #
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# mport     the port declaring the dep (context in which to evaluate $prefix etc)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# mport     the port declaring the dep (context in which to evaluate $prefix etc.)
</span> # depspec   the dependency test specification (path, bin, lib, etc.)
 proc _mportispresent {mport depspec} {
     set portname [lindex [split $depspec :] end]
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2093,9 +2093,9 @@ proc _mportexec {target mport} {
</span>         ![catch {$workername eval "eval_targets $target"} result] && $result == 0} {
         # If auto-clean mode, clean-up after dependency install
         if {$macports::portautoclean} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            # Make sure we are back in the port path before clean
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            # otherwise if the current directory had been changed to
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            # inside the port,  the next port may fail when trying to
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # Make sure we are back in the port path before clean.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # Otherwise, if the current directory had been changed to
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # inside the port, the next port may fail when trying to
</span>             # install because [pwd] will return a "no file or directory"
             # error since the directory it was in is now gone.
             set portpath [ditem_key $mport portpath]
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2137,7 +2137,7 @@ proc mportexec {mport target} {
</span>     # build and will therefore need to check Xcode version and
     # supported_archs.
     if {[macports::_target_needs_deps $target]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        # possibly warn or error out depending on how old xcode is
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # possibly warn or error out depending on how old Xcode is
</span>         if {[$workername eval {_check_xcode_version}] != 0} {
             if {$log_needs_pop} {
                 macports::pop_log
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2183,7 +2183,7 @@ proc mportexec {mport target} {
</span>         }
 
         # Select out the dependents along the critical path,
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        # but exclude this mport, we might not be installing it.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # but exclude this mport; we might not be installing it.
</span>         set dlist [dlist_append_dependents $macports::open_mports $mport {}]
 
         dlist_delete dlist $mport
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2242,7 +2242,7 @@ proc mportexec {mport target} {
</span>             return 1
         }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        # Close the dependencies, we're done installing them.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # Close the dependencies; we're done installing them.
</span>         foreach ditem $dlist {
             mportclose $ditem
         }
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -2624,7 +2624,7 @@ proc mportsync {{optionslist {}}} {
</span>                     if {[string index $source end] ne "/"} {
                         append source /
                     }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    # don't sync PortIndex yet; we grab the platform specific one afterwards
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    # don't sync PortIndex yet; we grab the platform-specific one afterwards
</span>                     set exclude_option '--exclude=/PortIndex*'
                     set include_option {}
                     set srcstr $source
</pre><pre style='margin:0'>

</pre>