diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2019-06-06 17:52:12 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2019-06-06 17:52:12 +0200 |
commit | 1432cb0af36271e145037170b8759e649a25a911 (patch) | |
tree | c34cc28c9474ecb1c65662d6a1ca03f6fb3f8b9c /sys-cluster/kubectl/kubectl-1.14.3.ebuild | |
parent | app-emulation/docker-proxy: Update snapshot for 18.09.7 (diff) | |
download | gentoo-1432cb0af36271e145037170b8759e649a25a911.tar.gz gentoo-1432cb0af36271e145037170b8759e649a25a911.tar.bz2 gentoo-1432cb0af36271e145037170b8759e649a25a911.zip |
sys-cluster/kubectl: Version bump to 1.14.3
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Manuel Rüger <mrueg@gentoo.org>
Diffstat (limited to 'sys-cluster/kubectl/kubectl-1.14.3.ebuild')
-rw-r--r-- | sys-cluster/kubectl/kubectl-1.14.3.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sys-cluster/kubectl/kubectl-1.14.3.ebuild b/sys-cluster/kubectl/kubectl-1.14.3.ebuild new file mode 100644 index 000000000000..7a61b25dce90 --- /dev/null +++ b/sys-cluster/kubectl/kubectl-1.14.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build golang-vcs-snapshot bash-completion-r1 + +EGO_PN="k8s.io/kubernetes" +ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="CLI to run commands against Kubernetes clusters" +HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" +SRC_URI="${ARCHIVE_URI}" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +DEPEND=">=dev-lang/go-1.12 + dev-go/go-bindata" + +RESTRICT="test" + +src_prepare() { + default + sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e "s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die + sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die +} + +src_compile() { + LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} WHAT=cmd/${PN} GOFLAGS=-v + pushd src/${EGO_PN} || die + _output/bin/${PN} completion bash > ${PN}.bash || die + _output/bin/${PN} completion zsh > ${PN}.zsh || die + popd || die +} + +src_install() { + pushd src/${EGO_PN} || die + dobin _output/bin/${PN} + + newbashcomp ${PN}.bash ${PN} + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} + + popd || die +} |