summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass')
-rw-r--r--eclass/Manifest.gzbin40190 -> 40189 bytes
-rw-r--r--eclass/go-env.eclass10
-rw-r--r--eclass/llvm.org.eclass3
-rw-r--r--eclass/plasma.kde.org.eclass4
4 files changed, 13 insertions, 4 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz
index cc8f394663be..a826f84aebe7 100644
--- a/eclass/Manifest.gz
+++ b/eclass/Manifest.gz
Binary files differ
diff --git a/eclass/go-env.eclass b/eclass/go-env.eclass
index 11fdf943e774..b2b240b5ef29 100644
--- a/eclass/go-env.eclass
+++ b/eclass/go-env.eclass
@@ -1,4 +1,4 @@
-# Copyright 2023-2024 Gentoo Authors
+# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: go-env.eclass
@@ -40,7 +40,13 @@ go-env_set_compile_environment() {
use x86 && export GO386=$(go-env_go386)
# XXX: Hack for checking ICE (bug #912152, gcc PR113204)
- has_version -b "sys-devel/gcc[debug]" && filter-lto
+ if tc-is-gcc ; then
+ # For either USE=debug or an unreleased compiler, non-default
+ # checking will trigger.
+ if has_version -b "sys-devel/gcc[debug]" || [[ $(gcc-minor-version) -eq 0 ]] ; then
+ filter-lto
+ fi
+ fi
export CGO_CFLAGS="${CGO_CFLAGS:-$CFLAGS}"
export CGO_CPPFLAGS="${CGO_CPPFLAGS:-$CPPFLAGS}"
diff --git a/eclass/llvm.org.eclass b/eclass/llvm.org.eclass
index 2cad858c64fe..77a194ed49f4 100644
--- a/eclass/llvm.org.eclass
+++ b/eclass/llvm.org.eclass
@@ -72,6 +72,9 @@ if [[ -z ${_LLVM_SOURCE_TYPE+1} ]]; then
_LLVM_SOURCE_TYPE=snapshot
case ${PV} in
+ 21.0.0_pre20250211)
+ EGIT_COMMIT=2cd8207b26ea4269630feba661f68554d7ae3c15
+ ;;
21.0.0_pre20250208)
EGIT_COMMIT=6f241e36831927e3aea113cfc017c34fdeda340a
;;
diff --git a/eclass/plasma.kde.org.eclass b/eclass/plasma.kde.org.eclass
index 6612028e298b..dfbaea88b096 100644
--- a/eclass/plasma.kde.org.eclass
+++ b/eclass/plasma.kde.org.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: plasma.kde.org.eclass
@@ -70,7 +70,7 @@ if [[ ${KDE_BUILD_TYPE} == live ]]; then
fi
elif [[ -z ${KDE_ORG_COMMIT} ]]; then
case ${PV} in
- 5.??.[6-9][05]* | 6.?.[6-9][05]* )
+ 6.?.[6-9][0-5]* )
_KDE_SRC_URI+="unstable/plasma/${KDE_CATV}/"
RESTRICT+=" mirror"
;;