From 2fd3ce14a052ced3e65f93a25049f5765ab7f653 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Fri, 31 Jan 2025 15:43:11 +0100 Subject: [PATCH] overlay eclass/coreos-go-depend: Bump to 1.23 Also relax the dependency from depending on certain slot of dev-lang/go to depending on any newer version of the package and any slot (but forcing rebuild on slot change). --- .../third_party/coreos-overlay/eclass/coreos-go-depend.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/eclass/coreos-go-depend.eclass b/sdk_container/src/third_party/coreos-overlay/eclass/coreos-go-depend.eclass index 1177d8fa3f..724ed36fca 100644 --- a/sdk_container/src/third_party/coreos-overlay/eclass/coreos-go-depend.eclass +++ b/sdk_container/src/third_party/coreos-overlay/eclass/coreos-go-depend.eclass @@ -13,10 +13,10 @@ # @CODE # COREOS_GO_VERSION=go1.20 # @CODE -export COREOS_GO_VERSION="${COREOS_GO_VERSION:-go1.22}" +export COREOS_GO_VERSION="${COREOS_GO_VERSION:-go1.23}" case "${EAPI:-0}" in - 7|8) BDEPEND="dev-lang/go:${COREOS_GO_VERSION#go}=" ;; + 7|8) BDEPEND=">=dev-lang/go-${COREOS_GO_VERSION#go}:=" ;; *) die "Unsupported EAPI=${EAPI} for ${ECLASS}" esac