<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/4f78d84098e3f4c572771d973d8ba054a185dc2b">https://github.com/macports/macports-ports/commit/4f78d84098e3f4c572771d973d8ba054a185dc2b</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 4f78d84098e3f4c572771d973d8ba054a185dc2b
</span>Author: Austin Ziegler <austin@zieglers.ca>
AuthorDate: Sun Oct 29 20:29:24 2023 -0400
<span style='display:block; white-space:pre;color:#404040;'> kubectx: 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;'> Removed the names from the `xinstall` target because they were incorrect
</span><span style='display:block; white-space:pre;color:#404040;'> for Fish, and the original names are correct.
</span>---
sysutils/kubectx/Portfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/kubectx/Portfile b/sysutils/kubectx/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 7ae6e025c1e..053dfd278c2 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/kubectx/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/kubectx/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem 1.0
</span> PortGroup github 1.0
github.setup ahmetb kubectx 0.9.5 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> categories sysutils
platforms any
supported_archs noarch
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -51,8 +51,8 @@ destroot {
</span> xinstall -m 644 ${src_completion_dir}/kubectx.bash ${bash_completion_dir}/kubectx
xinstall -m 644 ${src_completion_dir}/kubens.bash ${bash_completion_dir}/kubens
<span style='display:block; white-space:pre;background:#ffe0e0;'>- set fish_completion_dir ${destroot}${prefix}/share/fish/completions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ set fish_completion_dir ${destroot}${prefix}/share/fish/vendor_completions.d
</span> xinstall -d ${fish_completion_dir}
<span style='display:block; white-space:pre;background:#ffe0e0;'>- xinstall -m 644 ${src_completion_dir}/kubectx.fish ${fish_completion_dir}/kubectx
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- xinstall -m 644 ${src_completion_dir}/kubens.fish ${fish_completion_dir}/kubens
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -m 644 ${src_completion_dir}/kubectx.fish ${fish_completion_dir}/
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -m 644 ${src_completion_dir}/kubens.fish ${fish_completion_dir}/
</span> }
</pre><pre style='margin:0'>
</pre>