mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Bug: https://bugs.gentoo.org/909091 Signed-off-by: Christopher Fore <csfore@posteo.net> Closes: https://github.com/gentoo/gentoo/pull/34688 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
28 lines
606 B
Bash
28 lines
606 B
Bash
# Copyright 2021-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
DESCRIPTION="Kubernetes Operations"
|
|
HOMEPAGE="https://kops.sigs.k8s.io/ https://github.com/kubernetes/kops/"
|
|
SRC_URI="https://github.com/kubernetes/kops/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0 BSD-2 BSD-4 ECL-2.0 imagemagick ISC JSON MIT MIT-with-advertising MPL-2.0 unicode"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
# Failure needs investigation
|
|
RESTRICT="test"
|
|
|
|
src_compile() {
|
|
export GOBIN="${WORKDIR}/${P}/kops"
|
|
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
dobin kops
|
|
}
|