public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/k3d/
Date: Sun, 10 Dec 2023 00:53:56 +0000 (UTC)	[thread overview]
Message-ID: <1702169633.a832b23f692991f94dcd7c898a2bb831a9c8eae4.zmedico@gentoo> (raw)

commit:     a832b23f692991f94dcd7c898a2bb831a9c8eae4
Author:     Frank Meier <frank.meier <AT> ergon <DOT> ch>
AuthorDate: Thu Dec  7 13:41:55 2023 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Dec 10 00:53:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a832b23f

app-containers/k3d: 5.6.0 version bump

Signed-off-by: Frank Meier <frank.meier <AT> ergon.ch>
Closes: https://github.com/gentoo/gentoo/pull/34164
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-containers/k3d/Manifest         |  1 +
 app-containers/k3d/k3d-5.6.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/app-containers/k3d/Manifest b/app-containers/k3d/Manifest
index f707f8709ee6..86034a81054f 100644
--- a/app-containers/k3d/Manifest
+++ b/app-containers/k3d/Manifest
@@ -5,3 +5,4 @@ DIST k3d-5.4.4.tar.gz 7429200 BLAKE2B 728dfb004463116c698ad4126df60aef70f38b766a
 DIST k3d-5.4.6-deps.tar.xz 314892744 BLAKE2B 0bbdf32e9db1f8474b9908ece7c623fefdf621d92bab371d6db6922312ad428a08b5b8432db3a978bbde81a8ee18e4ff286fe49c6a9c27ce2609504fcd71e247 SHA512 959f7d78fbb779fc92a29cd98da71cc2e8263dcf67a83d92fc446357a8e7a4e649758b23d64f994536f17c07d2b987f00e65187cf61161473ebbd9d810cc9675
 DIST k3d-5.4.6.tar.gz 7383354 BLAKE2B a1bdaa3edbd4a97db547d76919d32b9c3b59561c38cc846f9802d631b9ecd28bbaf79ed8bb0fe5a633a1ef2f60ba769a18eb95f8ff0abda7d9cb8792a86ae59d SHA512 1b8ce290002302839e05b287f7f4d96dd7fd9ec2386af4b78f8e8c1d9137fa027349409130523bc22a55a95b5d991c867d606965ca8e5ad79c8da3177aa8fc8e
 DIST k3d-5.4.9.tar.gz 7740293 BLAKE2B b7a657720524abac2c36cccef8cf6e9c5588fcc191ecc2a3f7ed138762cc23abdc2b6413c67d426635e50777b8b87fccf93dc7cd88b0dd5c67becbc3f9056472 SHA512 caa6566f79837deb31db991df5475369b4921a5a110b723ad6c76f8ce2349399d0843d3e5de071a4ec50b318157d8fb47cc36018a0af9bb487793269c27027bf
+DIST k3d-5.6.0.tar.gz 8022281 BLAKE2B 93f32f65e6c42650608b94d58d2149c3fec96251500be0d95d5673f07ae8c366d80954afa4d80eec149b7a9e8af7389323c21498910a3010bb80b975f64064d0 SHA512 c13df93499ffde6567e4bf7dcf260cb65ca01c390bf39361122fa61553591f418213049cf29d8dde63896f026a28d96f4e2ab522a143ac66cfa9f3786f8ba9b9

diff --git a/app-containers/k3d/k3d-5.6.0.ebuild b/app-containers/k3d/k3d-5.6.0.ebuild
new file mode 100644
index 000000000000..1baa48e507e5
--- /dev/null
+++ b/app-containers/k3d/k3d-5.6.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit go-module
+
+DESCRIPTION="k3d creates k3s clusters in docker"
+HOMEPAGE="https://github.com/rancher/k3d"
+
+K3D_K3S_TAG=v1.28.3-k3s2
+SRC_URI="https://github.com/rancher/k3d/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="MIT Apache-2.0 BSD BSD-2 MPL-2.0 ISC"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="doc"
+
+src_prepare() {
+	default
+	rm Makefile || die
+}
+
+src_compile() {
+	GOWORK=off \
+	CGO_ENABLED=0 \
+		go build \
+		-mod=vendor \
+		-ldflags "-w -s -X github.com/k3d-io/k3d/v5/version.Version=v${PV} -X github.com/k3d-io/k3d/v5/version.K3sVersion=${K3D_K3S_TAG}" \
+		-o bin/k3d
+}
+
+src_install() {
+	dobin bin/${PN}
+	DOCS=(*.md)
+	if use doc; then
+		DOCS+=(docs)
+	fi
+	default_src_install
+}


             reply	other threads:[~2023-12-10  0:54 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-10  0:53 Zac Medico [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-05 17:21 [gentoo-commits] repo/gentoo:master commit in: app-containers/k3d/ Sam James
2025-02-24 19:45 Sam James
2025-02-24 18:46 Arthur Zamarin
2024-11-26 21:51 Zac Medico
2024-11-26 21:51 Zac Medico
2024-08-19  3:29 Zac Medico
2024-07-11  6:22 Arthur Zamarin
2023-12-10 23:30 Zac Medico
2023-04-25  3:34 Zac Medico
2022-09-03 20:16 Zac Medico
2022-09-03 20:16 Zac Medico
2022-07-15 23:59 Zac Medico
2022-06-05 16:08 Zac Medico
2022-05-16  0:00 Zac Medico
2022-05-16  0:00 Zac Medico
2022-03-26 17:53 Zac Medico
2022-03-26 17:47 Zac Medico
2022-03-21 20:51 Zac Medico
2022-02-04 20:58 Zac Medico
2021-12-24  0:58 Zac Medico

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1702169633.a832b23f692991f94dcd7c898a2bb831a9c8eae4.zmedico@gentoo \
    --to=zmedico@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox