summaryrefslogtreecommitdiff
path: root/kde-frameworks/kauth
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-02-10 22:17:43 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-02-10 22:17:43 +0100
commite254564d7321ada537c833119d67c5eb3affd01b (patch)
treedf4b05a96f44d3952ea12f65f40b4700127672e2 /kde-frameworks/kauth
parent85083257567e0daabd7fca9349ff1c900e41488c (diff)
downloadkde-e254564d7321ada537c833119d67c5eb3affd01b.tar.gz
kde-e254564d7321ada537c833119d67c5eb3affd01b.tar.bz2
kde-e254564d7321ada537c833119d67c5eb3affd01b.zip
kde-frameworks/kauth: 6.11.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kauth')
-rw-r--r--kde-frameworks/kauth/Manifest1
-rw-r--r--kde-frameworks/kauth/kauth-6.11.0.ebuild43
2 files changed, 44 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest
new file mode 100644
index 00000000000..1cfc66dc67a
--- /dev/null
+++ b/kde-frameworks/kauth/Manifest
@@ -0,0 +1 @@
+DIST kauth-6.11.0.tar.xz 2296512 BLAKE2B dfaeeb5969c9f495742076f0b075982eb2318d7edd2a126add9ae78741fb09e226fb9023ddc5f65d46205b9cc52edc3d0c48c52f9f73d99f2934c688c3400050 SHA512 7342d892a4942a6ac5d86e35e328fbfe5f92391cfaeb571994612dc94089f6626b9c8b8cb13f7bccf0373c38ea50789c066ea93accd8236ccf05782feae561a4
diff --git a/kde-frameworks/kauth/kauth-6.11.0.ebuild b/kde-frameworks/kauth/kauth-6.11.0.ebuild
new file mode 100644
index 00000000000..43477662359
--- /dev/null
+++ b/kde-frameworks/kauth/kauth-6.11.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework to let applications perform actions as a privileged user"
+
+LICENSE="LGPL-2.1+"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="+policykit"
+
+RDEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[gui]
+ =kde-frameworks/kcoreaddons-${KDE_CATV}*:6
+ policykit? (
+ >=dev-qt/qtbase-${QTMIN}:6[dbus]
+ =kde-frameworks/kwindowsystem-${KDE_CATV}*:6[wayland]
+ >=sys-auth/polkit-qt-0.175.0[qt6(+)]
+ )
+"
+DEPEND="${RDEPEND}
+ test? ( >=dev-qt/qtbase-${QTMIN}:6[dbus] )
+"
+BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
+PDEPEND="policykit? ( kde-plasma/polkit-kde-agent:* )"
+
+CMAKE_SKIP_TESTS=(
+ # fails, bug 654842
+ KAuthHelperTest
+ # needs DBus, bug 938505
+ KAuthFdTest
+)
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package policykit PolkitQt6-1)
+ )
+
+ ecm_src_configure
+}