summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-10-16 16:23:34 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-10-16 21:05:01 +0200
commit364798726da87433c548b746a64e79db40bf0a84 (patch)
treef5e2021f412ce016cc90cef1c3b8aca45548c40b
parent2a049302cf300d7f6cfbdc4e46236865d3557a65 (diff)
downloadkde-364798726da87433c548b746a64e79db40bf0a84.tar.gz
kde-364798726da87433c548b746a64e79db40bf0a84.tar.bz2
kde-364798726da87433c548b746a64e79db40bf0a84.zip
kde-plasma/plasma-nm: 6.5.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-plasma/plasma-nm/Manifest1
-rw-r--r--kde-plasma/plasma-nm/plasma-nm-6.5.0.ebuild80
2 files changed, 81 insertions, 0 deletions
diff --git a/kde-plasma/plasma-nm/Manifest b/kde-plasma/plasma-nm/Manifest
index 7a439ed7b85..7b1278fd96b 100644
--- a/kde-plasma/plasma-nm/Manifest
+++ b/kde-plasma/plasma-nm/Manifest
@@ -1 +1,2 @@
DIST plasma-nm-6.4.91.tar.xz 1449236 BLAKE2B 38cb71faf51d3445c298b597b3835ed524e31732f13521df2888fa9fbb160ad0d20937b687479974e64e38d7b03e015b9d39e86908047c9fbbf1df0830a22539 SHA512 229754b24df145a9146c8ba304b8087c1cba093b149b18fa3054ad94cad1dae955bd4178a5d0957ec2220ffb6ea4bde228a168ee45b2716f80f91344312f68c0
+DIST plasma-nm-6.5.0.tar.xz 1449752 BLAKE2B 32670e8bedeff7cc470fd3519576c8ae57ed59f629d919275d6d1090feb71cd0935ca6f74a09a18a1f281b632529a899f2072493f1fbd336be774ab89912362d SHA512 fe4495d27382a1edea8d5bc7e76aa8f4ca8b0aec05ec35476a04e55239f705448785e43ad9b9d04ea4ae20423f6a7751a3c4b8f273b3d30db9bea45740cc939c
diff --git a/kde-plasma/plasma-nm/plasma-nm-6.5.0.ebuild b/kde-plasma/plasma-nm/plasma-nm-6.5.0.ebuild
new file mode 100644
index 00000000000..5cb10455026
--- /dev/null
+++ b/kde-plasma/plasma-nm/plasma-nm-6.5.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_TEST="true"
+KFMIN=6.18.0
+QTMIN=6.9.1
+inherit ecm plasma.kde.org xdg
+
+DESCRIPTION="KDE Plasma applet for NetworkManager"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="6"
+KEYWORDS="~amd64"
+IUSE="openconnect teamd"
+
+COMMON_DEPEND="
+ >=app-crypt/qca-2.3.7:2[qt6(+)]
+ dev-libs/qcoro[dbus]
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets,xml]
+ >=dev-qt/qtdeclarative-${QTMIN}:6[widgets]
+ >=kde-frameworks/kcmutils-${KFMIN}:6
+ >=kde-frameworks/kcolorscheme-${KFMIN}:6
+ >=kde-frameworks/kcompletion-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kitemviews-${KFMIN}:6
+ >=kde-frameworks/knotifications-${KFMIN}:6
+ >=kde-frameworks/kservice-${KFMIN}:6
+ >=kde-frameworks/ksvg-${KFMIN}:6
+ >=kde-frameworks/kwallet-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kwindowsystem-${KFMIN}:6
+ >=kde-frameworks/kxmlgui-${KFMIN}:6
+ >=kde-frameworks/modemmanager-qt-${KFMIN}:6
+ >=kde-frameworks/networkmanager-qt-${KFMIN}:6[teamd=]
+ >=kde-frameworks/solid-${KFMIN}:6
+ >=kde-plasma/libplasma-${KDE_CATV}:6
+ net-misc/mobile-broadband-provider-info
+ net-misc/networkmanager[teamd=]
+ openconnect? (
+ >=dev-qt/qtwebengine-${QTMIN}:6
+ net-vpn/networkmanager-openconnect
+ net-vpn/openconnect:=
+ )
+"
+RDEPEND="${COMMON_DEPEND}
+ >=kde-frameworks/kdeclarative-${KFMIN}:6
+ >=kde-frameworks/kirigami-${KFMIN}:6
+ >=kde-frameworks/kquickcharts-${KFMIN}:6
+"
+DEPEND="${COMMON_DEPEND}
+ >=net-misc/modemmanager-1.20
+"
+BDEPEND="
+ >=kde-frameworks/kcmutils-${KFMIN}:6
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_OPENCONNECT=$(usex openconnect)
+ )
+
+ ecm_src_configure
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ if ! has_version "kde-frameworks/kcmutils:6"; then
+ elog "${PN} is not terribly useful without kde-frameworks/kcmutils:6."
+ elog "However, the networkmanagement KCM can be called from either systemsettings"
+ elog "or manually: $ kcmshell6 kcm_networkmanagement"
+ fi
+}