summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-01-07 21:43:50 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-01-08 23:59:34 +0100
commit878833e038eb6e282796619d117973bbf10a792d (patch)
treef0754d53afef12e56810c3bed028a566ded74c0e
parenteb31958af4f3bed297bdf7e12d44375d48981af9 (diff)
downloadkde-878833e038eb6e282796619d117973bbf10a792d.tar.gz
kde-878833e038eb6e282796619d117973bbf10a792d.tar.bz2
kde-878833e038eb6e282796619d117973bbf10a792d.zip
kde-frameworks/kauth: 6.10.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/kauth/Manifest1
-rw-r--r--kde-frameworks/kauth/kauth-6.10.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..7674ad28ed1
--- /dev/null
+++ b/kde-frameworks/kauth/Manifest
@@ -0,0 +1 @@
+DIST kauth-6.10.0.tar.xz 2296748 BLAKE2B d553bcd9908a4e20a5b418e0a690d98d8254803258b02f296bb04f6c1b787f637d470c779d57a822fb45225540edb3d8735ae162accf1ce9e57869d774d99b9f SHA512 11d7e2a40ab4e74f8c1866dab5bfd6ac5a586ff36098f259782b18e52275138626272637eacd33385b65fd6d51ef49bbda98477913fe38bc7157be8a1ac72a86
diff --git a/kde-frameworks/kauth/kauth-6.10.0.ebuild b/kde-frameworks/kauth/kauth-6.10.0.ebuild
new file mode 100644
index 00000000000..91c106b66be
--- /dev/null
+++ b/kde-frameworks/kauth/kauth-6.10.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 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
+}