<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/fbedb4154042ba20a33492d123100d0533f5a4c4">https://github.com/macports/macports-ports/commit/fbedb4154042ba20a33492d123100d0533f5a4c4</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit fbedb4154042ba20a33492d123100d0533f5a4c4
</span>Author: Austin Ziegler <austin@zieglers.ca>
AuthorDate: Sun Oct 29 20:06:32 2023 -0400
<span style='display:block; white-space:pre;color:#404040;'> eza: 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>---
sysutils/eza/Portfile | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/eza/Portfile b/sysutils/eza/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 1925bbc86fb..8367a85c15e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/eza/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/eza/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -7,7 +7,7 @@ PortGroup cargo 1.0
</span>
github.setup eza-community eza 0.15.1 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>
homepage https://eza.rocks
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -90,9 +90,10 @@ destroot {
</span> xinstall -m 0644 ${worksrcpath}/completions/zsh/_${name} \
${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 -m 0644 ${worksrcpath}/completions/fish/${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;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ set fish_comp_path ${destroot}${prefix}/share/fish/vendor_completions.d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -d ${fish_comp_path}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -m 0644 ${worksrcpath}/completions/fish/${name}.fish ${fish_comp_path}
</span> }
cargo.crates \
</pre><pre style='margin:0'>
</pre>