summaryrefslogtreecommitdiff
path: root/sys-cluster/kubie/kubie-0.23.1.ebuild
blob: 00bfd9ae5b7052221070713fd12a83d11a7f4081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

CRATES=" "
inherit cargo shell-completion

DESCRIPTION="A more powerful alternative to kubectx and kubens."
HOMEPAGE="https://github.com/sbstp/kubie"
SRC_URI="https://github.com/sbstp/kubie/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz "

LICENSE="ZLIB"
# Dependent crate licenses
LICENSE+=" MIT Apache-2.0 Unicode-DFS-2016 0BSD Apache-2.0-with-LLVM-exceptions"
LICENSE+=" Boost-1.0 ISC BSD Unlicense MPL-2.0"

SLOT="0"
KEYWORDS="~amd64"

RDEPEND=" sys-cluster/kubectl"

src_unpack() {
	cargo_src_unpack
	mkdir "${S}"/{vendor,.cargo} || die
	ln -s "${WORKDIR}/vendor/"* "${S}"/vendor || die
	cp "${FILESDIR}"/"${PN}-vendor-config" "${S}"/.cargo/config.toml || die
}

src_prepare() {
	default
	sed -i 's/strip = true/strip = false/' Cargo.toml || die
}

src_configure() {
	cargo_gen_config
	cargo_src_configure --frozen --no-default-features
}

src_install() {
	cargo_src_install

	newbashcomp completion/kubie.bash kubie
	newfishcomp completion/kubie.fish kubie
}