<pre style='margin:0'>
Dan Villiom Podlaski Christiansen (danchr) pushed a commit to branch docker-compose-plugin
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/cd87fe3cb8fa0986c710a24bc7e466ee81fd70f2">https://github.com/macports/macports-ports/commit/cd87fe3cb8fa0986c710a24bc7e466ee81fd70f2</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit cd87fe3cb8fa0986c710a24bc7e466ee81fd70f2
</span>Author: Dan Villiom Podlaski Christiansen <danchr@gmail.com>
AuthorDate: Mon Feb 19 13:14:53 2024 +0100
<span style='display:block; white-space:pre;color:#404040;'> colima: tweaks
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> * install completions, they are quite benign if unneeded
</span><span style='display:block; white-space:pre;color:#404040;'> * adjust description, based on the README
</span><span style='display:block; white-space:pre;color:#404040;'> * add to emulators category
</span>---
sysutils/colima/Portfile | 25 +++++++++++++++++++------
1 file changed, 19 insertions(+), 6 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/colima/Portfile b/sysutils/colima/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index fef05367a17..e424fcdc831 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/colima/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/colima/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,13 +5,17 @@ PortGroup golang 1.0
</span>
go.setup github.com/abiosoft/colima 0.6.8 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:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-description Container runtimes on MacOS with minimal setup
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-long_description {*}${description}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision 1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+description Run Kubernetes and Docker containers with minimal setup
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+long_description {*}{
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ Colima allows running Docker, containerd and Kubernetes locally
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ with minimal setup. It supports port forwarding, volume mounts and
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ multiple instances. On initial startup, Colima initiates with a
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ user specified runtime that defaults to Docker.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span>
<span style='display:block; white-space:pre;background:#ffe0e0;'>-categories sysutils
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+categories sysutils emulators
</span> installs_libs no
license MIT
maintainers {gmail.com:herby.gillot @herbygillot} \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -36,6 +40,15 @@ build.args ./cmd/${name}
</span>
destroot {
xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # install completion for various shells
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ set bash_completions_dir ${destroot}${prefix}/share/bash-completion/completions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ set fish_completions_dir ${destroot}${prefix}/share/fish/vendor_completions.d
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ set zsh_completions_dir ${destroot}${prefix}/share/zsh/site-functions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ xinstall -d ${bash_completions_dir} ${fish_completions_dir} ${zsh_completions_dir}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ system "${worksrcpath}/${name} completion bash > ${bash_completions_dir}/${name}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ system "${worksrcpath}/${name} completion fish > ${fish_completions_dir}/${name}.fish"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ system "${worksrcpath}/${name} completion zsh > ${zsh_completions_dir}/_${name}"
</span> }
notes {
</pre><pre style='margin:0'>
</pre>