<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/520296460e85244667af47cac8527a71718dc0af">https://github.com/macports/macports-ports/commit/520296460e85244667af47cac8527a71718dc0af</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 520296460e85244667af47cac8527a71718dc0af
</span>Author: Austin Ziegler <austin@zieglers.ca>
AuthorDate: Sun Oct 29 20:16:38 2023 -0400

<span style='display:block; white-space:pre;color:#404040;'>    ripgrep: 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>---
 textproc/ripgrep/Portfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/textproc/ripgrep/Portfile b/textproc/ripgrep/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 6ab95149ece..343bb331009 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/textproc/ripgrep/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/textproc/ripgrep/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,6 +6,7 @@ PortGroup           cargo 1.0
</span> 
 github.setup        BurntSushi ripgrep 13.0.0
 github.tarball_from archive
<span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> categories          textproc
 platforms           darwin
 maintainers         {raimue @raimue} \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -92,8 +93,8 @@ destroot {
</span>     xinstall -m 644 ${outpath}/rg.1 ${destroot}${prefix}/share/man/man1/
     xinstall -d -m 755 ${destroot}${prefix}/share/bash-completion/completions
     xinstall -m 644 ${outpath}/rg.bash ${destroot}${prefix}/share/bash-completion/completions/rg
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -d -m 755 ${destroot}${prefix}/share/fish/completions
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    xinstall -m 644 ${outpath}/rg.fish ${destroot}${prefix}/share/fish/completions/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d -m 755 ${destroot}${prefix}/share/fish/vendor_completions.d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 644 ${outpath}/rg.fish ${destroot}${prefix}/share/fish/vendor_completions.d/
</span>     xinstall -d -m 755 ${destroot}${prefix}/share/zsh/site-functions
     xinstall -m 644 ${worksrcpath}/complete/_rg ${destroot}${prefix}/share/zsh/site-functions/
 }
</pre><pre style='margin:0'>

</pre>