# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup golang 1.0 go.setup github.com/abiosoft/colima 0.8.0 v github.tarball_from archive revision 0 description Run Kubernetes and Docker containers with minimal setup long_description {*}{ Colima allows running Docker, containerd and Kubernetes locally with minimal setup. It supports port forwarding, volume mounts and multiple instances. On initial startup, Colima initiates with a user specified runtime that defaults to Docker. } categories sysutils emulators installs_libs no license MIT maintainers {gmail.com:herby.gillot @herbygillot} \ {macports.halostatue.ca:austin @halostatue} \ openmaintainer checksums rmd160 6a9fcf6fd103b8cc7a3514b7a94bdf9cb4914424 \ sha256 0040a1832a1e89cbffec9311382344546cb5965384bede079325dac8b2cbf4f0 \ size 616094 depends_run port:lima go.offline_build no build.pre_args-append \ -ldflags \" \ -X ${go.package}/config.appVersion=${github.tag_prefix}${version} \ -X ${go.package}/config.revision= \ \" build.args ./cmd/${name} destroot { xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/ # install completion for various shells set bash_completions_dir ${destroot}${prefix}/share/bash-completion/completions set fish_completions_dir ${destroot}${prefix}/share/fish/vendor_completions.d set zsh_completions_dir ${destroot}${prefix}/share/zsh/site-functions xinstall -d ${bash_completions_dir} ${fish_completions_dir} ${zsh_completions_dir} system "${worksrcpath}/${name} completion bash > ${bash_completions_dir}/${name}" system "${worksrcpath}/${name} completion fish > ${fish_completions_dir}/${name}.fish" system "${worksrcpath}/${name} completion zsh > ${zsh_completions_dir}/_${name}" } notes { If upgrading from Colima 0.6.7 or earlier, several instance CVEs were resolved and existing instances should be replaced or upgraded manually: colima ssh -- \ sh -c "sudo apt update && sudo apt install -y containerd.io" }