<pre style='margin:0'>
Perry E. Metzger (pmetzger) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/d95b1496f2efd2342d4c55b544de4fb1002be865">https://github.com/macports/macports-ports/commit/d95b1496f2efd2342d4c55b544de4fb1002be865</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit d95b1496f2efd2342d4c55b544de4fb1002be865
</span>Author: Austin Ziegler <austin@zieglers.ca>
AuthorDate: Sun Oct 29 20:29:40 2023 -0400

<span style='display:block; white-space:pre;color:#404040;'>    buku: fix fish completions location
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    `$destroot/$prefix/share/fish/completions` is for the completion files
</span><span style='display:block; white-space:pre;color:#404040;'>    included with fish, not for use by package managers installing
</span><span style='display:block; white-space:pre;color:#404040;'>    additional files. The correct location is
</span><span style='display:block; white-space:pre;color:#404040;'>    `$destroot/$prefix/share/fish/vendor_completions.d`.
</span>---
 www/buku/Portfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/www/buku/Portfile b/www/buku/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 9c4f553b6fd..d77de3e10e1 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/www/buku/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/www/buku/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,7 +5,7 @@ PortGroup           github 1.0
</span> PortGroup           python 1.0
 
 github.setup        jarun buku 4.8 v
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> checksums           rmd160  ff1f9c8a01360e6f47e3e2c4d71bab7140ecec28 \
                     sha256  6962f7c493abacc8cba063e62f7f7fff7093ffb1aca0ceb4d1c40ceafbb92504 \
                     size    591956
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -62,8 +62,8 @@ post-destroot {
</span>     # install shell completions (bash, fish, zsh)
     xinstall -d ${destroot}${prefix}/share/bash-completion/completions/
     xinstall -m 644 ${worksrcpath}/auto-completion/bash/buku-completion.bash ${destroot}${prefix}/share/bash-completion/completions/${name}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -d ${destroot}${prefix}/share/fish/completions/
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 644 ${worksrcpath}/auto-completion/fish/buku.fish ${destroot}${prefix}/share/fish/completions/
</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 644 ${worksrcpath}/auto-completion/fish/buku.fish ${destroot}${prefix}/share/fish/vendor_completions.d/
</span>     xinstall -d ${destroot}${prefix}/share/zsh/site-functions/
     xinstall -m 644 ${worksrcpath}/auto-completion/zsh/_buku ${destroot}${prefix}/share/zsh/site-functions/
 }
</pre><pre style='margin:0'>

</pre>