summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass')
-rw-r--r--eclass/Manifest.gzbin38489 -> 38492 bytes
-rw-r--r--eclass/qt6-build.eclass6
2 files changed, 5 insertions, 1 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz
index f921f45317fa..c753a13ef96d 100644
--- a/eclass/Manifest.gz
+++ b/eclass/Manifest.gz
Binary files differ
diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass
index c96bc0c1c3c3..2990b41a9e95 100644
--- a/eclass/qt6-build.eclass
+++ b/eclass/qt6-build.eclass
@@ -66,7 +66,11 @@ readonly QT6_BUILD_TYPE
HOMEPAGE="https://www.qt.io/"
LICENSE="|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3"
-SLOT=6/${PV%.*}
+if ver_test ${PV} -ge 6.5.3; then
+ SLOT=6/${PV%%_*}
+else
+ SLOT=6/${PV%.*} # TODO: remove this after <6.5.3 is gone
+fi
if [[ ${PN} != qttranslations ]]; then
IUSE="test"