From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CCA5A158451 for ; Sun, 7 Jan 2024 13:26:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31EC62BC175; Sun, 7 Jan 2024 13:26:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15CDE2BC175 for ; Sun, 7 Jan 2024 13:26:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F71C3432C3 for ; Sun, 7 Jan 2024 13:26:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 337441494 for ; Sun, 7 Jan 2024 13:26:44 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1704633879.f5272ada70e921c24dcf0b8bf15f80fb6084f4f8.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/gear.kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f5272ada70e921c24dcf0b8bf15f80fb6084f4f8 X-VCS-Branch: master Date: Sun, 7 Jan 2024 13:26:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ab1623fd-859e-4d9d-85a1-b508c08c5774 X-Archives-Hash: 690767bba05b20ca40f0a103ee2e266a commit: f5272ada70e921c24dcf0b8bf15f80fb6084f4f8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 7 13:19:07 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 7 13:24:39 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f5272ada gear.kde.org.eclass: Add post-24.02 release SLOT=5 blocklist Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/gear.kde.org.eclass | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/eclass/gear.kde.org.eclass b/eclass/gear.kde.org.eclass index 33fd4378de..8418a90d97 100644 --- a/eclass/gear.kde.org.eclass +++ b/eclass/gear.kde.org.eclass @@ -241,4 +241,35 @@ 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 +if $(ver_test -gt 24.03.75); then + case ${PN} in + ffmpegthumbs | \ + gwenview | \ + itinerary | \ + k3b | \ + kdeedu-data | \ + kimagemapeditor | \ + kio-gdrive | \ + kmplot | \ + kolourpaint | \ + kompare | \ + kopeninghours | \ + kosmindoormap | \ + kpublictransport | \ + krdc | \ + ksanecore | \ + libkeduvocdocument | \ + libkomparediff2 | \ + libksane | \ + minuet | \ + signon-kwallet-extension | \ + skanlite | \ + skanpage | \ + step) + RDEPEND+=" !${CATEGORY}/${PN}:5" ;; + *) ;; + esac +fi + fi