app-admin/kubectl-linstor: add new package
This commit is contained in:
parent
3e98f7ba2f
commit
5babbdd182
|
@ -0,0 +1,2 @@
|
|||
DIST kubectl-linstor-0.1.2.tar.gz 8989 BLAKE2B f913646a4f16db07650c844fcf78a777d9b55b598c8752ebb1e9c1e8c38ff91c0a8c0f6ed387ec2c42ce6ebb45d4373ed7a51971dc51d6587afa29c28bbee0bf SHA512 028e854450edb34a3afc4e2ea3fe3737c7d8b24b40d6a4c7701640ae247f2ada190f220311d438f883959a9bd52fde2f21f975dab7c7a24ad734fd3127d7be1b
|
||||
EBUILD kubectl-linstor-0.1.2.ebuild 535 BLAKE2B 4f6e812c5c1d22725fff6ad423ae47544679d544c7a476a2d5b44fc054e17b9f42b781c6e72c08d8b5712b02bcd32596fe711f4e8716a0097b81d14cd2f5c12e SHA512 bed4884bdbc74681ddacf777359a94bd76d50344c8cb72b4688b6309cbab964d39bb8e8926b3d222766abd27830d2f02bccc6a592c1c17a1ebbd43bebe90133b
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit go-module
|
||||
|
||||
DESCRIPTION="A plugin to control a LINSTOR cluster using kubectl"
|
||||
HOMEPAGE="https://github.com/piraeusdatastore/kubectl-linstor"
|
||||
SRC_URI="https://github.com/piraeusdatastore/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_compile() {
|
||||
ego build -o bin/${PN}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/*
|
||||
}
|
Loading…
Reference in New Issue