# -*- 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.2 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 eccca8bd14070ca56d361aa5fd54405ab2865593 \ sha256 6c89d3da48a586d241d49f96aad5d8e71e6b47f5faa53ab4a583df82ad0bf9ef \ size 61153005 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 "