<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/50f29345cb9208d49a45282aba6a0de37950aa29">https://github.com/macports/macports-base/commit/50f29345cb9208d49a45282aba6a0de37950aa29</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 50f2934  Fix multiple URLs in *_site_local with tags
</span>50f2934 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 50f29345cb9208d49a45282aba6a0de37950aa29
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Tue Dec 4 03:34:05 2018 -0600

<span style='display:block; white-space:pre;color:#404040;'>    Fix multiple URLs in *_site_local with tags
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Correctly add multiple URLs specified in archive_site_local,
</span><span style='display:block; white-space:pre;color:#404040;'>    master_site_local, and patch_site_local when a tag is used.
</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/57718
</span>---
 src/port1.0/fetch_common.tcl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/fetch_common.tcl b/src/port1.0/fetch_common.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 591f760..23bc103 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/fetch_common.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/fetch_common.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,7 +1,7 @@
</span> # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
 #
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# Copyright (c) 2002 - 2003 Apple Inc.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# Copyright (c) 2004 - 2013 The MacPorts Project
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Copyright (c) 2002-2003 Apple Inc.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Copyright (c) 2004-2014, 2016-2018 The MacPorts Project
</span> # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -201,7 +201,7 @@ proc portfetch::checksites {sitelists mirrorfile} {
</span>                     set site_list [concat $site_list [mirror_sites $sglobal $tag "" $mirrorfile]]
                 }
                 if {[info exists env($senv)]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    set site_list [concat [list $env($senv)] $site_list]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    set site_list [concat $env($senv) $site_list]
</span>                 }
                 set extras_added($tag) yes
             }
</pre><pre style='margin:0'>

</pre>