From 23d5cb986545f85892f3c0698f9ec76d9f069391 Mon Sep 17 00:00:00 2001 From: meierfra Date: Mon, 21 Mar 2022 10:59:25 +0100 Subject: app-containers/k3d: fix k3s version my k3d tried to download a nonexistent k3s image. the reason for this seems to be, that the version in the ebuild has a suffix starting with '+' . After changing the ebuild locally my k3d worked flawlessly. Closes: https://github.com/gentoo/gentoo/pull/24692 Signed-off-by: Zac Medico --- app-containers/k3d/k3d-5.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app-containers') diff --git a/app-containers/k3d/k3d-5.3.0.ebuild b/app-containers/k3d/k3d-5.3.0.ebuild index 5de494ca4c47..8c7dc7903434 100644 --- a/app-containers/k3d/k3d-5.3.0.ebuild +++ b/app-containers/k3d/k3d-5.3.0.ebuild @@ -7,7 +7,7 @@ inherit go-module DESCRIPTION="k3d creates k3s clusters in docker" HOMEPAGE="https://github.com/rancher/k3d" -K3D_K3S_TAG=v1.22.6+k3s1 +K3D_K3S_TAG=v1.22.6-k3s1 EGO_SUM=( "bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898/go.mod" "bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512/go.mod" -- cgit v1.2.3-65-gdbad