Files
guru/app-containers/kind/kind-0.27.0.ebuild
ingenarel b0cbc921d5 app-containers/kind: update non-existent source link
fixes the following pkgcheck errors:

app-containers/kind
  DeadUrl: version 0.27.0: SRC_URI: 404 Client Error: Not Found for url: https://github.com/dmdutra/gentoo-distfiles/raw/refs/heads/main/kind-v0.27.0-vendor.tar.xz

the old repository was probably deleted, so i created a new depfile

Signed-off-by: ingenarel <ingenarelitems@gmail.com>
2025-07-21 06:58:18 +06:00

32 lines
872 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo go-module shell-completion
DESCRIPTION="Kind is a tool for running local Kubernetes clusters using Docker"
HOMEPAGE="https://kind.sigs.k8s.io/"
SRC_URI="https://github.com/kubernetes-sigs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 MPL-2.0 MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=">=app-containers/docker-cli-23.0.0"
src_compile() {
ego build -v -x -o ${PN}
edo ./${PN} completion fish > kind.fish
edo ./${PN} completion bash > kind.bash
edo ./${PN} completion zsh > kind.zsh
}
src_install() {
dobin ${PN}
newbashcomp "${PN}.bash" "${PN}"
dofishcomp "${PN}.fish"
newzshcomp "${PN}.zsh" "_${PN}"
}