Files

47 lines
1.8 KiB
Tcl
Raw Permalink Normal View History

2021-02-03 12:47:02 -05:00
# -*- 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
2026-04-07 05:07:04 -04:00
go.setup github.com/vmware-tanzu/carvel-kapp 0.66.0 v
2025-03-22 17:44:07 -04:00
go.offline_build no
2021-02-03 12:47:02 -05:00
name kapp
2023-05-08 00:01:54 -04:00
revision 0
2021-02-03 12:47:02 -05:00
homepage https://get-kapp.io
description kapp is a simple deployment tool focused on the concept \
of "Kubernetes application" a set of resources with the \
same label
long_description kapp (pronounced: kap) CLI encourages Kubernetes users to \
manage resources in bulk by working with "Kubernetes \
applications" (sets of resources with the same label). \
It focuses on resource diffing, labeling, deployment and \
deletion. Unlike tools like Helm, kapp considers YAML \
templating and management of packages outside of its \
scope, though it works great with tools that generate \
Kubernetes configuration.
categories sysutils
installs_libs no
2021-10-04 10:41:47 -04:00
license Apache-2
2021-02-03 12:47:02 -05:00
maintainers {gmail.com:herby.gillot @herbygillot} \
openmaintainer
2026-04-07 05:07:04 -04:00
checksums rmd160 78dc085f18f28c221a8babb1fcf96343a399a972 \
sha256 dd64cf3d2eca40ac86c29f748e6c74393506f89556b0172ef668dd24922ffd9a \
size 9035856
2021-02-03 12:47:02 -05:00
2023-09-19 05:07:22 -04:00
build.env-append CGO_ENABLED=0
2021-02-03 12:47:02 -05:00
2023-09-19 05:07:22 -04:00
build.pre_args-append \
2022-01-25 10:16:51 -05:00
-mod=vendor \
2023-03-06 07:51:21 -05:00
-ldflags \"-X ${go.package}/pkg/kapp/version.Version=${github.tag_prefix}${version}\"
2022-01-25 10:16:51 -05:00
2023-09-19 05:07:22 -04:00
build.args ./cmd/${name}
2021-02-03 12:47:02 -05:00
destroot {
xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/
}