# -*- 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 github 1.0 github.setup GoogleContainerTools skaffold 2.13.1 v revision 0 categories devel maintainers {breun.nl:nils @breun} openmaintainer platforms darwin license Apache-2 description Skaffold is a command line tool that facilitates continuous development for Kubernetes applications long_description Skaffold is a command line tool that facilitates continuous development for Kubernetes applications. \ You can iterate on your application source code locally then deploy to local or remote Kubernetes clusters. \ Skaffold handles the workflow for building, pushing and deploying your application. \ It also provides building blocks and describe customizations for a CI/CD pipeline. homepage https://skaffold.dev github.tarball_from archive checksums rmd160 8efa585a550929302e3b117179fc3dea6b53161d \ sha256 f483c357c4c2a9dd0a80a01c0d232927b6cf06bc2c419a6c59fe81aabe24d4c6 \ size 61152854 depends_build port:go use_configure no build.env-append VERSION=${version} LOCAL=true build.target test.run yes test.cmd out/${name} test.target test.args version destroot { xinstall -m 0755 ${worksrcpath}/out/${name} ${destroot}${prefix}/bin/${name} # bash completion xinstall -d ${destroot}${prefix}/etc/bash_completion.d system "${destroot}${prefix}/bin/${name} completion bash > ${destroot}${prefix}/etc/bash_completion.d/${name}" # zsh completion xinstall -d ${destroot}${prefix}/share/zsh/site-functions system "${destroot}${prefix}/bin/${name} completion zsh > ${destroot}${prefix}/share/zsh/site-functions/_${name}" } # Disable update check: https://skaffold.dev/docs/references/privacy/#update-check notes " To disable automatic update checks, you have two options: 1. set the SKAFFOLD_UPDATE_CHECK environment variable to false, e.g. in your shell profile: export SKAFFOLD_UPDATE_CHECK=false 2. turn it off in skaffold’s config (~/.skaffold/config) with: skaffold config set -g update-check false "