commit:     43acfe5843e7077f14bfad836be8fd806fe12d5f
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat May  7 16:48:53 2022 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat May  7 16:48:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43acfe58

app-containers/cri-tools: add 1.24.0

Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-containers/cri-tools/Manifest                |  1 +
 app-containers/cri-tools/cri-tools-1.24.0.ebuild | 34 ++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/app-containers/cri-tools/Manifest 
b/app-containers/cri-tools/Manifest
index 4b140c9a6cd4..4ee7155b4cf5 100644
--- a/app-containers/cri-tools/Manifest
+++ b/app-containers/cri-tools/Manifest
@@ -1 +1,2 @@
 DIST cri-tools-1.23.0.tar.gz 6823865 BLAKE2B 
75d394ec1f9ccf2122476c9b845499212d668f8170ae8551913e3e057271986ab77454bdd0fa646127bfadda203fabdc57cc448dfe1e64dd7cdbedc8f5ee8cf6
 SHA512 
36700eaf872da14921e0b2c8fa68f91e3e0226364e29a5b8e132fbd52504e130e0bc2cce30aba21e7def576a4682f150b0b051d44b78aa694c225c10999d7155
+DIST cri-tools-1.24.0.tar.gz 5868141 BLAKE2B 
281c397bb60bb5075d2b99cab11a44cf8746c1f744dfafc4f051dd6c2344a53eba948a35d90f814105ef3cb2b0bef3e7e1723408069a2ab4293801f906ec48b0
 SHA512 
5c7468c15b9f030d5cf93112abc28f8024e1d1b46f85459cb0a10c84ab63d07f5dfa830d019f8ed1a31bf04ea14c5e200b11d85ae7573be44860b74312e66dbc

diff --git a/app-containers/cri-tools/cri-tools-1.24.0.ebuild 
b/app-containers/cri-tools/cri-tools-1.24.0.ebuild
new file mode 100644
index 000000000000..0a580bdda110
--- /dev/null
+++ b/app-containers/cri-tools/cri-tools-1.24.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 go-module
+
+DESCRIPTION="CLI and validation tools for Kubelet Container Runtime (CRI)"
+HOMEPAGE="https://github.com/kubernetes-sigs/cri-tools";
+SRC_URI="https://github.com/kubernetes-sigs/cri-tools/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-lang/go"
+
+RESTRICT+=" test"
+
+src_compile() {
+       emake VERSION="${PV}"
+       ./build/bin/crictl completion bash > "${PN}.bash" || die
+       ./build/bin/crictl completion zsh > "${PN}.zsh" || die
+}
+
+src_install() {
+       dobin ./build/bin/crictl
+
+       newbashcomp ${PN}.bash ${PN}
+       insinto /usr/share/zsh/site-functions
+       newins ${PN}.zsh _${PN}
+
+       dodoc -r docs {README,RELEASE,CHANGELOG,CONTRIBUTING}.md
+}

Reply via email to