summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-03-25 17:22:01 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-03-25 17:24:48 +0100
commit1db2ebf3048889a3e962f81af60a93a6ed7b275f (patch)
treeb94026340b2370a5acd250eaca01a9979da726fb /eclass
parent0437538ff9f96faa0df1de3c24f24d9afd824716 (diff)
downloadkde-1db2ebf3048889a3e962f81af60a93a6ed7b275f.tar.gz
kde-1db2ebf3048889a3e962f81af60a93a6ed7b275f.tar.bz2
kde-1db2ebf3048889a3e962f81af60a93a6ed7b275f.zip
kde-apps/artikulate: Port to Qt6
Upstream commits: 13f44b64a3e16345a88c8bda9ce1786c5b45b638 bebf6138a41f7294be701d4a620c2e0b6ece2d03 2a3be7150b5cca51e142557ba12b63648b9ae371 3c1f3330fa3010d1edf765bf88d7f30f384be07b 27fb25baa29353b7a0bb5fdba877cb4367f0d432 05cb22e0ebaa27d41541394f66ba83491efa89b1 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/gear.kde.org.eclass18
1 files changed, 13 insertions, 5 deletions
diff --git a/eclass/gear.kde.org.eclass b/eclass/gear.kde.org.eclass
index ee9e182799c..9926068ab66 100644
--- a/eclass/gear.kde.org.eclass
+++ b/eclass/gear.kde.org.eclass
@@ -63,7 +63,7 @@ elif [[ -z ${KDE_ORG_COMMIT} ]]; then
SRC_URI="${_KDE_SRC_URI}${KDE_ORG_TAR_PN}-${PV}.tar.xz"
fi
-# list of applications ported to KF6 in SLOT=6 having to block SLOT=5
+# list of applications ported to KF6 having to block SLOT=5
if $(ver_test -gt 24.01.75); then
case ${PN} in
akonadi | \
@@ -248,7 +248,7 @@ if $(ver_test -gt 24.01.75); then
esac
fi
-# list of applications ported to KF6 post-24.02 in SLOT=6 having to block SLOT=5
+# list of applications ported to KF6 post-24.02 having to block SLOT=5
if $(ver_test -gt 24.04.75); then
case ${PN} in
audex | \
@@ -262,7 +262,7 @@ if $(ver_test -gt 24.04.75); then
esac
fi
-# list of applications ported to KF6 post-24.05 in SLOT=6 having to block SLOT=5
+# list of applications ported to KF6 post-24.05 having to block SLOT=5
if $(ver_test -gt 24.07.75); then
case ${PN} in
k3b | \
@@ -285,8 +285,7 @@ if $(ver_test -gt 24.07.75); then
esac
fi
-# list of applications ported to KF6 post-24.08 in SLOT=6 having to block SLOT=5
-# (option to build with KF6 in master, but default remains KF5)
+# list of applications ported to KF6 post-24.08 having to block SLOT=5
if $(ver_test -gt 24.11.75); then
case ${PN} in
cantor | \
@@ -301,4 +300,13 @@ if $(ver_test -gt 24.11.75); then
esac
fi
+# list of applications ported to KF6 post-25.04 having to block SLOT=5
+if $(ver_test -gt 25.07.75); then
+ case ${PN} in
+ artikulate)
+ RDEPEND+=" !${CATEGORY}/${PN}:5" ;;
+ *) ;;
+ esac
+fi
+
fi