Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rocm-k8s-device-plugin/
Date: Thu, 01 Dec 2022 23:30:28
Message-Id: 1669937389.d2fb6ab2ccb2014a466fc5e1082751690cdf329f.williamh@gentoo
1 commit: d2fb6ab2ccb2014a466fc5e1082751690cdf329f
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 23:25:16 2022 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 1 23:29:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2fb6ab2
7
8 sys-cluster/rocm-k8s-device-plugin: add 0.5.0
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 sys-cluster/rocm-k8s-device-plugin/Manifest | 1 +
13 .../rocm-k8s-device-plugin-0.5.0.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/sys-cluster/rocm-k8s-device-plugin/Manifest b/sys-cluster/rocm-k8s-device-plugin/Manifest
17 index 3753aa1967a9..6c8a57db1eb2 100644
18 --- a/sys-cluster/rocm-k8s-device-plugin/Manifest
19 +++ b/sys-cluster/rocm-k8s-device-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST rocm-k8s-device-plugin-0.3.0.tar.gz 5188051 BLAKE2B cff5a5eefea521fc398a3b9199375f8a4ed875688fc06bc6a097cdef017d1ef102eea096a8e37aa2d962afc2fc0a8153c26e36b226a31a1913ae2de97d632650 SHA512 d5c9c590aeb5fb744917662c9bc8a88a95c7b4478c614808c86ecb6caaf4f20c81a0013e6352d701c29c9c10810231ab142859ee95923e31d9267206209e4948
22 +DIST rocm-k8s-device-plugin-0.5.0.tar.gz 6297528 BLAKE2B 8fed4af34e2639eecbcd6e8b238a9a964203693e9f7458486a4e36d61b83908ebcb72f7d582b0fe240518a6e3eed5e38403be265a600af01383b860075097ea2 SHA512 56b38d9f1c516bfcc735dbcf1128ab9f7967871295c214ebb474d7fc3ed18822b6389dc5fae08e54a3735fd0704b67d71e9beba6066f313ed69c1d7c9c8fad2a
23
24 diff --git a/sys-cluster/rocm-k8s-device-plugin/rocm-k8s-device-plugin-0.5.0.ebuild b/sys-cluster/rocm-k8s-device-plugin/rocm-k8s-device-plugin-0.5.0.ebuild
25 new file mode 100644
26 index 000000000000..ab99d6d76c8c
27 --- /dev/null
28 +++ b/sys-cluster/rocm-k8s-device-plugin/rocm-k8s-device-plugin-0.5.0.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +inherit go-module
35 +# update these on every bump
36 +VERSION=v1.18.1-12-g939a8a0
37 +TAG="amd-gpu-helm-${PV}"
38 +
39 +DESCRIPTION="AMD GPU device plugin for kubernetes"
40 +HOMEPAGE="https://github.com/RadeonOpenCompute/k8s-device-plugin"
41 +SRC_URI="https://github.com/RadeonOpenCompute/k8s-device-plugin/archive/${TAG}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +
47 +DEPEND="sys-apps/hwloc
48 + x11-libs/libdrm[video_cards_amdgpu]"
49 +RDEPEND="${DEPEND}
50 + sys-cluster/kubelet"
51 +
52 +S="${WORKDIR}/k8s-device-plugin-${TAG}"
53 +
54 +src_compile() {
55 + GOBIN="${S}/bin" \
56 + ego install \
57 + -ldflags="-X main.gitDescribe=${VERSION}" \
58 + ./cmd/k8s-device-plugin
59 +}
60 +
61 +src_install() {
62 + exeinto /var/lib/kubelet/device-plugins
63 + doexe bin/k8s-device-plugin
64 + einstalldocs
65 +}