summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-10-02 17:49:24 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-10-02 18:09:59 +0200
commitbbe3625db0003e1af4838c2ea605bdb6a414758f (patch)
tree8e3fb1146472e0d59b5aae704c09e1962a94c3a7
parent4a45185ec6e6a76e4cef0418923fa28a36e39d15 (diff)
downloadkde-bbe3625db0003e1af4838c2ea605bdb6a414758f.tar.gz
kde-bbe3625db0003e1af4838c2ea605bdb6a414758f.tar.bz2
kde-bbe3625db0003e1af4838c2ea605bdb6a414758f.zip
kde-plasma/plasma-nm: 6.4.91 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.4.91.ebuild77
2 files changed, 78 insertions, 0 deletions
diff --git a/kde-plasma/plasma-nm/Manifest b/kde-plasma/plasma-nm/Manifest
index bc4d8443386..17374fa524f 100644
--- a/kde-plasma/plasma-nm/Manifest
+++ b/kde-plasma/plasma-nm/Manifest
@@ -1 +1,2 @@
DIST plasma-nm-6.4.90.tar.xz 1446756 BLAKE2B 0a5eb55a5b7ef355b36d37aac640f35b02fa87c71848533d2bb45552863e3226d8afdfb703ae14711f8f0b9bf97fe80f1b6771f3d9cf4bf8f9406c0a25d7996b SHA512 c0934bfdcf1110b3c8dee9d5a59e92670fadef23c7569662fff504728ee133947e5241bf2aa986467042f8d95441770cea573eb2d221ff7528bc97bf227b8bf5
+DIST plasma-nm-6.4.91.tar.xz 1449236 BLAKE2B 38cb71faf51d3445c298b597b3835ed524e31732f13521df2888fa9fbb160ad0d20937b687479974e64e38d7b03e015b9d39e86908047c9fbbf1df0830a22539 SHA512 229754b24df145a9146c8ba304b8087c1cba093b149b18fa3054ad94cad1dae955bd4178a5d0957ec2220ffb6ea4bde228a168ee45b2716f80f91344312f68c0
diff --git a/kde-plasma/plasma-nm/plasma-nm-6.4.91.ebuild b/kde-plasma/plasma-nm/plasma-nm-6.4.91.ebuild
new file mode 100644
index 00000000000..7c4d143655b
--- /dev/null
+++ b/kde-plasma/plasma-nm/plasma-nm-6.4.91.ebuild
@@ -0,0 +1,77 @@
+# 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 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="openconnect teamd"
+
+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="${DEPEND}
+ >=kde-frameworks/kdeclarative-${KFMIN}:6
+ >=kde-frameworks/kirigami-${KFMIN}:6
+ >=kde-frameworks/kquickcharts-${KFMIN}:6
+"
+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
+}