mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 13:41:05 +00:00
move to a deps tarball. I feel it is better to trust these than the vendor tarballs. I have seen a couple of situations where the vendor tarballs do not work. Signed-off-by: William Hubbs <williamh@gentoo.org>
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module toolchain-funcs shell-completion
|
|
|
|
GIT_COMMIT=3d8990f0836691f0229297773f3524598f46bda6
|
|
|
|
DESCRIPTION="Kubernetes Package Manager"
|
|
HOMEPAGE="https://helm.sh https://github.com/helm/helm"
|
|
SRC_URI="https://github.com/helm/helm/archive/v${PV}.tar.gz -> k8s-${P}.tar.gz"
|
|
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-deps.tar.xz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
# Dependent licenses
|
|
LICENSE+=" Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~loong ~riscv"
|
|
RESTRICT="test"
|
|
|
|
src_compile() {
|
|
emake \
|
|
GOFLAGS="${GOFLAGS}" \
|
|
LDFLAGS="" \
|
|
GIT_COMMIT=${GIT_COMMIT} \
|
|
GIT_SHA=${GIT_COMMIT::8} \
|
|
GIT_TAG=v${MY_PV} \
|
|
GIT_DIRTY=clean \
|
|
build
|
|
|
|
if ! tc-is-cross-compiler; then
|
|
einfo "generating shell completion files"
|
|
bin/${PN} completion bash > ${PN}.bash || die
|
|
bin/${PN} completion zsh > ${PN}.zsh || die
|
|
bin/${PN} completion fish > ${PN}.fish || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/${PN}
|
|
einstalldocs
|
|
|
|
if ! tc-is-cross-compiler; then
|
|
newbashcomp ${PN}.bash ${PN}
|
|
newzshcomp ${PN}.zsh _${PN}
|
|
dofishcomp ${PN}.fish
|
|
else
|
|
ewarn "Shell completion files not installed! Install them manually with '${PN} completion --help'"
|
|
fi
|
|
}
|