commit: c76a5b1fbff55d9633e8c61e73ff238cf8a5e9f3
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 17 17:02:19 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 17 18:08:05 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76a5b1f
kde-plasma/plasma5support: 6.4.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-plasma/plasma5support/Manifest | 1 +
kde-plasma/plasma5support/metadata.xml | 3 +-
.../plasma5support/plasma5support-6.4.0.ebuild | 51 ++++++++++++++++++++++
3 files changed, 54 insertions(+), 1 deletion(-)
diff --git a/kde-plasma/plasma5support/Manifest
b/kde-plasma/plasma5support/Manifest
index 994b19926b9c..e2e82494244f 100644
--- a/kde-plasma/plasma5support/Manifest
+++ b/kde-plasma/plasma5support/Manifest
@@ -1 +1,2 @@
DIST plasma5support-6.3.5.tar.xz 229720 BLAKE2B
29e824ec29e78930a64d5f8e2f050f4453caf3e679b094ffca311799ae14affaf15cba932ef31297820df9d815030a52b7f7e8add9c1489c75a2e5af86a286b3
SHA512
e27ff7d836c8283479df56b884629593a1173de739c242b84bc607e3028914afc686e08b2f248603b45f188153acdbf25013d1b4150fd1b6734adb668ac2def8
+DIST plasma5support-6.4.0.tar.xz 228424 BLAKE2B
ef2a85bb4c7046da1dba7eca6738fe4755d4625a1ad55429e93182e75103d3fed3c133ceb405d740e9b14eb6dce4733650f532e03fc83a9a429ec7ef68ce045c
SHA512
d4104912ea9d748bb08d73bea6b187783d4220cddd6db8033c186fdac9942c99975b80ecc2ee4e991cafb3d07879517cef8cf93940080c4aa4dcbe16cd3feb41
diff --git a/kde-plasma/plasma5support/metadata.xml
b/kde-plasma/plasma5support/metadata.xml
index fbe2d3d273a2..87b6684b656f 100644
--- a/kde-plasma/plasma5support/metadata.xml
+++ b/kde-plasma/plasma5support/metadata.xml
@@ -6,10 +6,11 @@
<name>Gentoo KDE Project</name>
</maintainer>
<upstream>
- <bugs-to>https://bugs.kde.org/</bugs-to>
+
<bugs-to>https://bugs.kde.org/enter_bug.cgi?classification=Plasma</bugs-to>
<remote-id type="kde-invent">plasma/plasma5support</remote-id>
</upstream>
<use>
<flag name="activities">Enable kactivities support</flag>
+ <flag name="ksysguard">Enable device notifications dataengine
using <pkg>kde-plasma/libksysguard</pkg></flag>
</use>
</pkgmetadata>
diff --git a/kde-plasma/plasma5support/plasma5support-6.4.0.ebuild
b/kde-plasma/plasma5support/plasma5support-6.4.0.ebuild
new file mode 100644
index 000000000000..25f14998e41b
--- /dev/null
+++ b/kde-plasma/plasma5support/plasma5support-6.4.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_QTHELP="true"
+ECM_TEST="true"
+KFMIN=6.14.0
+QTMIN=6.8.1
+inherit ecm plasma.kde.org
+
+DESCRIPTION="Support components for porting from KF5/Qt5 to KF6/Qt6"
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="activities geolocation ksysguard X"
+
+RESTRICT="test" # bug 926347
+
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,sql,widgets]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kguiaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kidletime-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/knotifications-${KFMIN}:6
+ >=kde-frameworks/kservice-${KFMIN}:6
+ >=kde-frameworks/solid-${KFMIN}:6
+ activities? ( >=kde-plasma/plasma-activities-${KDE_CATV}:6 )
+ geolocation? ( >=kde-frameworks/networkmanager-qt-${KFMIN}:6 )
+ ksysguard? ( >=kde-plasma/libksysguard-${KDE_CATV}:6 )
+ X? ( x11-libs/libX11 )
+"
+RDEPEND="${DEPEND}
+ !kde-plasma/plasma-workspace:5
+ !<kde-plasma/plasma-workspace-6.2.90:6
+"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package activities PlasmaActivities)
+ $(cmake_use_find_package geolocation KF6NetworkManagerQt)
+ $(cmake_use_find_package ksysguard KSysGuard)
+ -DWITH_X11=$(usex X)
+ )
+ ecm_src_configure
+}