<pre style='margin:0'>
Herby Gillot (herbygillot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/8fa440cbcf36f4cbb96b8355eeaa535138127fa0">https://github.com/macports/macports-ports/commit/8fa440cbcf36f4cbb96b8355eeaa535138127fa0</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 8fa440cbcf3 procs: install completions
</span>8fa440cbcf3 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 8fa440cbcf36f4cbb96b8355eeaa535138127fa0
</span>Author: i0ntempest <i0ntempest@i0ntempest.com>
AuthorDate: Sat May 24 00:55:34 2025 +1000

<span style='display:block; white-space:pre;color:#404040;'>    procs: install completions
</span>---
 sysutils/procs/Portfile | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/procs/Portfile b/sysutils/procs/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 87a63d69058..9921d8f4a9d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/procs/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/procs/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,7 +6,7 @@ PortGroup           github  1.0
</span> 
 github.setup        dalance procs 0.14.10 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         A modern replacement for ps written in Rust
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -30,6 +30,13 @@ checksums           ${distname}${extract.suffix} \
</span> depends_build-append \
                     port:asciidoctor
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+post-build {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    foreach _shell {bash fish zsh} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        system -W ${worksrcpath} \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            "./target/[cargo.rust_platform]/release/${name} --gen-completion-out ${_shell} > ${name}.${_shell}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> destroot {
     xinstall -m 0755 \
         ${worksrcpath}/target/[cargo.rust_platform]/release/${name} \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -39,6 +46,18 @@ destroot {
</span>         "${prefix}/bin/asciidoctor -D. -b manpage ./${name}.1.adoc"
     xinstall -d ${destroot}${prefix}/share/man/man1
     file copy ${worksrcpath}/man/${name}.1 ${destroot}${prefix}/share/man/man1/
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d ${destroot}${prefix}/share/bash-completion/completions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0644 ${worksrcpath}/${name}.bash \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ${destroot}${prefix}/share/bash-completion/completions/${name}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d -m 0644 ${destroot}${prefix}/share/zsh/site-functions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0644 ${worksrcpath}/${name}.zsh \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ${destroot}${prefix}/share/zsh/site-functions/_${name}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -d -m 0644 ${destroot}${prefix}/share/fish/vendor_completions.d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    xinstall -m 0644 ${worksrcpath}/${name}.fish \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        ${destroot}${prefix}/share/fish/vendor_completions.d/
</span> }
 
 cargo.crates \
</pre><pre style='margin:0'>

</pre>