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

</pre>
<p><a href="https://github.com/macports/mpbb/commit/f114e42daf9d9a263ee4cdb7555dc7c4a623755b">https://github.com/macports/mpbb/commit/f114e42daf9d9a263ee4cdb7555dc7c4a623755b</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 f114e42  Set unrequested flag when installing ports
</span>f114e42 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f114e42daf9d9a263ee4cdb7555dc7c4a623755b
</span>Author: Ryan Schmidt <git@ryandesign.com>
AuthorDate: Thu Dec 20 02:29:00 2018 -0600

<span style='display:block; white-space:pre;color:#404040;'>    Set unrequested flag when installing ports
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    We already install dependencies with the unrequested flag. This now also
</span><span style='display:block; white-space:pre;color:#404040;'>    installs the main port that way. There seems to be no reason to make a
</span><span style='display:block; white-space:pre;color:#404040;'>    distinction between the main port and its dependencies with regard to
</span><span style='display:block; white-space:pre;color:#404040;'>    this flag, since the idea is for all of the ports (or at least, all of
</span><span style='display:block; white-space:pre;color:#404040;'>    the ports that are dependencies of another port) to remain installed,
</span><span style='display:block; white-space:pre;color:#404040;'>    regardless of whether they were originally installed explicitly or as a dependency.
</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/57571
</span>---
 mpbb-install-port | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/mpbb-install-port b/mpbb-install-port
</span><span style='display:block; white-space:pre;color:#808080;'>index 9f51a26..25d2bf6 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/mpbb-install-port
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/mpbb-install-port
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -60,7 +60,7 @@ install-port() {
</span>     fi
     # $option_prefix is set in mpbb
     # shellcheck disable=SC2154
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    if "${option_prefix}/bin/port" -dkn install "$@"; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if "${option_prefix}/bin/port" -dkn install --unrequested "$@"; then
</span>         # Remove failcache if it exists
         failcache_success "$@"
         if [ $? -ne 0 ]; then
</pre><pre style='margin:0'>

</pre>