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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/85cc57c6f4113acc5d389268b044c47bddd4d2e2">https://github.com/macports/macports-ports/commit/85cc57c6f4113acc5d389268b044c47bddd4d2e2</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 85cc57c  _ci/bootstrap.sh: add comments
</span>85cc57c is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 85cc57c6f4113acc5d389268b044c47bddd4d2e2
</span>Author: Zero King <l2dy@macports.org>
AuthorDate: Fri Oct 12 14:05:23 2018 +0000

<span style='display:block; white-space:pre;color:#404040;'>    _ci/bootstrap.sh: add comments
</span>---
 _ci/bootstrap.sh | 10 ++++++++++
 1 file changed, 10 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_ci/bootstrap.sh b/_ci/bootstrap.sh
</span><span style='display:block; white-space:pre;color:#808080;'>index dec1c13..fddc7c4 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_ci/bootstrap.sh
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_ci/bootstrap.sh
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,27 +1,37 @@
</span> #!/bin/bash
 set -e
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Uninstall Homebrew
</span> curl -fsSLO "https://raw.githubusercontent.com/Homebrew/install/master/uninstall"
 chmod 0755 uninstall && ./uninstall -fq && rm -f uninstall
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Clean /usr/local
</span> /usr/bin/sudo /usr/bin/find /usr/local -mindepth 2 -delete && hash -r
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Download and install MacPorts built by https://github.com/macports/macports-base/blob/travis-ci/.travis.yml
</span> export OS_MAJOR=$(uname -r | cut -f 1 -d .)
 curl -fsSLO "https://dl.bintray.com/macports-ci-bot/macports-base/MacPorts-${OS_MAJOR}.tar.bz2"
 sudo tar -xpf "MacPorts-${OS_MAJOR}.tar.bz2" -C /
 rm -f "MacPorts-${OS_MAJOR}.tar.bz2"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Prepare environment variables: clear CC and set PATH for port
</span> unset CC && source /opt/local/share/macports/setupenv.bash
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Set ports tree to $PWD
</span> sudo sed -i "" "s|rsync://rsync.macports.org/macports/release/tarballs/ports.tar|file://${PWD}|; /^file:/s/default/nosync,default/" /opt/local/etc/macports/sources.conf
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# CI is not interactive
</span> echo "ui_interactive no" | sudo tee -a /opt/local/etc/macports/macports.conf >/dev/null
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Update PortIndex
</span> rsync --no-motd -zvl "rsync://rsync.macports.org/macports/release/ports/PortIndex_darwin_${OS_MAJOR}_i386/PortIndex*" .
 git remote add macports https://github.com/macports/macports-ports.git
 git fetch macports master
 git checkout -qf macports/master
 git checkout -qf -
 portindex -e
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Create macports user
</span> sudo /opt/local/postflight && sudo rm -f /opt/local/postflight
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Install mpbb and its dependency getopt
</span> git clone --depth 1 https://github.com/macports/mpbb.git ../mpbb
 export PATH="${PWD}/../mpbb:$PATH"
 curl -fsSLO "https://dl.bintray.com/macports-ci-bot/getopt/getopt-v1.1.6.tar.bz2"
 sudo tar -xpf "getopt-v1.1.6.tar.bz2" -C /
 export PATH="/opt/mports/bin:$PATH" && hash -r
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Download and run CI runner
</span> curl -fsSLO "https://github.com/macports/mpbot-github/releases/download/v0.0.1/runner"
 chmod 0755 runner
 
</pre><pre style='margin:0'>

</pre>