diff options
author | meierfra <meierfra@users.noreply.github.com> | 2022-03-21 10:59:25 +0100 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2022-03-21 13:51:11 -0700 |
commit | 23d5cb986545f85892f3c0698f9ec76d9f069391 (patch) | |
tree | c7a047b439ef1d81ac12e5ba596c421e7db3bbc6 /app-containers | |
parent | profiles/arch/s390/s390x: fix unmask unwind flag (diff) | |
download | gentoo-23d5cb986545f85892f3c0698f9ec76d9f069391.tar.gz gentoo-23d5cb986545f85892f3c0698f9ec76d9f069391.tar.bz2 gentoo-23d5cb986545f85892f3c0698f9ec76d9f069391.zip |
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 <zmedico@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/k3d/k3d-5.3.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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" |