# -*- 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.4 v
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  40f16e81a540baabe806ed0ec518d21160d87f03 \
                    sha256  e02f3abf3ad7911fe4665b1c3291f03677edc0efa93e8d37b337d76149a7202b \
                    size    619108

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"
}
