commit: b210ea1b035572ea1aa131528e2c59d2e3c501b6 Author: Gabriel M. Dutra <0xdutra <AT> gmail <DOT> com> AuthorDate: Sun Dec 4 07:04:52 2022 +0000 Commit: Gabriel M. Dutra <0xdutra <AT> gmail <DOT> com> CommitDate: Sun Dec 4 07:04:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b210ea1b
sys-cluster/kops-bin: new package, add 1.25.3 Signed-off-by: Gabriel M. Dutra <0xdutra <AT> gmail.com> sys-cluster/kops-bin/Manifest | 1 + sys-cluster/kops-bin/kops-bin-1.25.3.ebuild | 24 ++++++++++++++++++++++++ sys-cluster/kops-bin/metadata.yml | 12 ++++++++++++ 3 files changed, 37 insertions(+) diff --git a/sys-cluster/kops-bin/Manifest b/sys-cluster/kops-bin/Manifest new file mode 100644 index 000000000..b2599e00e --- /dev/null +++ b/sys-cluster/kops-bin/Manifest @@ -0,0 +1 @@ +DIST kops-bin-1.25.3.bin 169712286 BLAKE2B 7b4e9cecb625d734b128456c4e9cc3bd8db386a63a798140e38f7ecfa2e61395ce612e99e41ec7b9f6752bbf36dd4b632b35ce3bb1836df65a30517e63c8c436 SHA512 7271bbc88bdf48cea3922bb173a0dd82584d2ea8d6b43b747312329ba5df540951c4b046cc273ece1e44c9f9a3024e5c61fa80f192ea4b8c264ccfa295b8cafe diff --git a/sys-cluster/kops-bin/kops-bin-1.25.3.ebuild b/sys-cluster/kops-bin/kops-bin-1.25.3.ebuild new file mode 100644 index 000000000..55d80c77e --- /dev/null +++ b/sys-cluster/kops-bin/kops-bin-1.25.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Kubernetes Operations" +HOMEPAGE="https://kops.sigs.k8s.io/ https://github.com/kubernetes/kops" +SRC_URI="https://github.com/kubernetes/${PN%-bin}/releases/download/v${PV}/kops-linux-amd64 -> ${P}.bin" + +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" +IUSE="" + +src_unpack() { + mkdir -p -- "${S}" + cp -- "${DISTDIR}/${A}" "${S}/${PN%-bin}" +} + +src_compile() { :; } + +src_install() { + dobin "${S}/${PN%-bin}" +} diff --git a/sys-cluster/kops-bin/metadata.yml b/sys-cluster/kops-bin/metadata.yml new file mode 100644 index 000000000..9e59e4c3a --- /dev/null +++ b/sys-cluster/kops-bin/metadata.yml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Gabriel M. Dutra</name> + </maintainer> + <upstream> + <changelog>https://github.com/kubernetes/kops/tree/master/docs/releases</changelog> + <remote-id type="github">kubernetes/kops</remote-id> + </upstream> +</pkgmetadata>
