# -*- 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.1 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 d6e6900adee3c1bedf6cfc92efc7811cf2f35123 \ sha256 9af9e1de6adc3590d852857e10c2846a167c331c40b6704fe71ac97b8bcda6ab \ size 616994 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" }