<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/ce330fd0e8f190afb3f767bfabad10cfb2809464">https://github.com/macports/macports-ports/commit/ce330fd0e8f190afb3f767bfabad10cfb2809464</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit ce330fd0e8f190afb3f767bfabad10cfb2809464
</span>Author: Austin Ziegler <austin@zieglers.ca>
AuthorDate: Sun Oct 29 20:28:40 2023 -0400
<span style='display:block; white-space:pre;color:#404040;'> doggo: 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><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> Added mode specifications to the `xinstall` lines because `doggo.fish`
</span><span style='display:block; white-space:pre;color:#404040;'> was marked as executable.
</span>---
net/doggo/Portfile | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/net/doggo/Portfile b/net/doggo/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index c3bd8291194..19cd1bc4ec3 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/net/doggo/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/net/doggo/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,7 +5,7 @@ PortGroup golang 1.0
</span>
go.setup github.com/mr-karan/doggo 0.5.7 v
github.tarball_from archive
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision 0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision 1
</span>
description Command-line DNS Client for Humans
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -31,13 +31,13 @@ destroot {
</span> ${worksrcpath}/bin/${name}.bin \
${destroot}${prefix}/bin/${name}
<span style='display:block; white-space:pre;background:#ffe0e0;'>- xinstall -d ${destroot}${prefix}/share/zsh/site-functions
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- xinstall ${worksrcpath}/completions/${name}.zsh \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -d -m 0755 ${destroot}${prefix}/share/zsh/site-functions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -m 0644 ${worksrcpath}/completions/${name}.zsh \
</span> ${destroot}${prefix}/share/zsh/site-functions/_${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 ${worksrcpath}/completions/${name}.fish \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- ${destroot}${prefix}/share/fish/completions/${name}.fish
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -d -m 0755 ${destroot}${prefix}/share/fish/vendor_completions.d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -m 0644 ${worksrcpath}/completions/${name}.fish \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ ${destroot}${prefix}/share/fish/vendor_completions.d/
</span>
xinstall -d ${destroot}${prefix}/share/${name}/examples
copy ${worksrcpath}/config-api-sample.toml \
</pre><pre style='margin:0'>
</pre>