summaryrefslogtreecommitdiff
path: root/kde-frameworks/kauth
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-08-04 21:07:46 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-08-04 21:16:34 +0200
commitccfc2f17b2cbc8db16064ff2bffb41ab66315583 (patch)
treed7ad4ee71db186ac10cb523e1dc63bcedd6fbfe4 /kde-frameworks/kauth
parentfca522d3c24902aafab13b5b8650cda08e31c158 (diff)
downloadkde-ccfc2f17b2cbc8db16064ff2bffb41ab66315583.tar.gz
kde-ccfc2f17b2cbc8db16064ff2bffb41ab66315583.tar.bz2
kde-ccfc2f17b2cbc8db16064ff2bffb41ab66315583.zip
kde-frameworks/kauth: 6.17.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.17.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..8d246bfd955
--- /dev/null
+++ b/kde-frameworks/kauth/Manifest
@@ -0,0 +1 @@
+DIST kauth-6.17.0.tar.xz 2273428 BLAKE2B 1dc7cac229c4783c6ec9af7fd69ff7ebfc777d750bcb4574a74e335023126e38425e90dc23e36171e054a2e3aa5ab1feff382e7e90eb71298074c0c9ccad4cc1 SHA512 58203e898d3f38a97a2bab0ef757ca967a0c1465fc8b03a5b79fc0af17b912320489590f77e76add4587bd84ea11b0492509b062120831fdd9d08c93a0194f51
diff --git a/kde-frameworks/kauth/kauth-6.17.0.ebuild b/kde-frameworks/kauth/kauth-6.17.0.ebuild
new file mode 100644
index 00000000000..966fa201b87
--- /dev/null
+++ b/kde-frameworks/kauth/kauth-6.17.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 ~loong ~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
+}