<pre style='margin:0'>
Herby Gillot (herbygillot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/41179b050638fc690af9132a7fdbbeb97584643b">https://github.com/macports/macports-ports/commit/41179b050638fc690af9132a7fdbbeb97584643b</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 41179b05063 mcfly: update to 0.5.9
</span>41179b05063 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 41179b050638fc690af9132a7fdbbeb97584643b
</span>Author: Herby Gillot <herby.gillot@gmail.com>
AuthorDate: Sun Aug 29 22:32:08 2021 -0400

<span style='display:block; white-space:pre;color:#404040;'>    mcfly: update to 0.5.9
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    - install shell completions to their proper locations
</span>---
 sysutils/mcfly/Portfile | 26 ++++++++++++++++++--------
 1 file changed, 18 insertions(+), 8 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/mcfly/Portfile b/sysutils/mcfly/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 258091a9302..f1934092ebe 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/mcfly/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/mcfly/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,7 +6,7 @@ PortGroup           github 1.0
</span> 
 categories          sysutils
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-github.setup        cantino mcfly 0.5.8 v
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+github.setup        cantino mcfly 0.5.9 v
</span> revision            0
 
 description         An upgraded reverse history for Bash & Zsh.
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -25,9 +25,9 @@ maintainers         {gmail.com:herby.gillot @herbygillot} \
</span>                     openmaintainer
 
 checksums           ${distname}${extract.suffix} \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    rmd160  adc77ebc4873f0b374670a6b77c726646b664b88 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                    sha256  aa6c66c2b752bc6bcc047183149ecabf32d89231065b2bab5a63d0147dcb979d \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                    size    207343
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    rmd160  5d6d9a55eb5466969a99ed0be0ce2965822c12d3 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    sha256  8c272228496f700ac7e286d30dddf8a50f67f729d8a1275d2d655d66c57944b9 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    size    207655
</span> 
 github.tarball_from archive
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -38,10 +38,20 @@ destroot {
</span>         {*}[glob ${worksrcpath}/target/*/release/${name}] \
         ${destroot}${prefix}/bin/
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -d ${destroot}${mf_share_dir}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 0644 ${worksrcpath}/${name}.bash ${destroot}${mf_share_dir}/
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 0644 ${worksrcpath}/${name}.fish ${destroot}${mf_share_dir}/
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 0644 ${worksrcpath}/${name}.zsh  ${destroot}${mf_share_dir}/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # Install bash completion
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d  ${destroot}${prefix}/share/bash-completion/completions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0644 ${worksrcpath}/${name}.bash \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ${destroot}${prefix}/share/bash-completion/completions/${name}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # Install fish completion
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d ${destroot}${prefix}/share/fish/vendor_completions.d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0644 ${worksrcpath}/${name}.fish \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ${destroot}${prefix}/share/fish/vendor_completions.d/${name}.fish
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # Install zsh completion
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d  ${destroot}${prefix}/share/zsh/site-functions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0644 ${worksrcpath}/${name}.zsh \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ${destroot}${prefix}/share/zsh/site-functions/_${name}
</span> }
 
 notes "
</pre><pre style='margin:0'>

</pre>