add new package: app-admin/kube-capacity

master
Alexander Miroshnichenko 2023-06-02 12:42:39 +03:00
parent f938feb5ed
commit 7397049453
Signed by: alex
GPG Key ID: E93720C6C73A77F4
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST kube-capacity-0.7.4-vendor.tar.xz 2681264 BLAKE2B 703ee307a87f63b99f59fc42f947653cfb19f1a6835280eea9c9c31b01c486958eced45760426f74bc6b51d41e320a4709836a4b5ba1d7a1df7a87fff9a8d16d SHA512 643a04e057f1a98154334519b9eb43fa2f9a546b5810752efb14785f97f6f89b59f36654bb5f5b17de6759536e4a1a097edc5be3eab63578ba9ccb90ae4c9b39
DIST kube-capacity-0.7.4.tar.gz 37695 BLAKE2B dafcc6b075b6ff321599888360e24c2fdab516e0289b21aa59f39cf631047e01659f0a1fb3a01281fa618b38436de0124f47b481f3ebc3956ccc204589c9ff1f SHA512 f748e21251c646a714c5c908b8fd2df9addf2442fca888716c39df7020ce7167f14848996102696f4bc66a2889c451b5187bdb124bf82ba861228771472708f2
EBUILD kube-capacity-0.7.4.ebuild 657 BLAKE2B 9f72f7b75e456de0f464f93b61e36042d9a511d1feddfe56df4329725f852088b51a87952086e42907e35102eb42553952dfd8a044e0dea890c32056a10dca04 SHA512 0731dc046236fb8dee58cd2c8bbdf05214e701e9c8c020d7b272f62064bb3aa29ddbcaa29b5452a174144e107dfaf5154c16ac26212d74612c33c88a14f1eb95

View File

@ -0,0 +1,27 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A simple CLI that provides an overview of the resource requests, limits, and utilization in a Kubernetes cluster"
HOMEPAGE="https://github.com/robscott/kube-capacity"
SRC_URI="https://github.com/robscott/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://git.millerson.name/attachments/3710dd5b-3726-483e-aafa-6ab6a0df4825 -> ${P}-vendor.tar.xz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
ego build
}
src_install() {
dobin ${PN}
}