mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
60 lines
2.3 KiB
Tcl
60 lines
2.3 KiB
Tcl
# -*- 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.10.3 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 b3ae385e2ad028b1c3fba60ba1ff988093c259b8 \
|
|
sha256 7aa687a4905c42de18d397ef45e9fc37ace08641c0ac2e4bcc9d9a67a5be97fe \
|
|
size 654171
|
|
|
|
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"
|
|
}
|