summaryrefslogtreecommitdiff
path: root/kde-frameworks/kauth
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 20:15:53 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 20:15:53 +0100
commitb4b45d2f2f0584a109948f7ce2313313e9d6b3b5 (patch)
treeb7ac553728eca3a44b6d904601fc9a5a189f7cd8 /kde-frameworks/kauth
parent72f36485b1a4731b3f76ee78199d321bd7b750ec (diff)
downloadkde-b4b45d2f2f0584a109948f7ce2313313e9d6b3b5.tar.gz
kde-b4b45d2f2f0584a109948f7ce2313313e9d6b3b5.tar.bz2
kde-b4b45d2f2f0584a109948f7ce2313313e9d6b3b5.zip
kde-frameworks/kauth: 6.9.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.9.0.ebuild44
2 files changed, 45 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest
new file mode 100644
index 00000000000..419e8b2a50f
--- /dev/null
+++ b/kde-frameworks/kauth/Manifest
@@ -0,0 +1 @@
+DIST kauth-6.9.0.tar.xz 2296744 BLAKE2B 77135b5fed671a57a8911be9dd41624f5cffaf308b2a6ff70805041e4c2636c69b6acd10158dfc87999c9b610e59dce87a03cc8dd8e3e9ff0291d9092cd1b50f SHA512 c4f0ba674b6bbc2d03654f0596a6f2fe93ee5966c83dafc3209dcc7879fc2e6b63fe3849dd85ae3b6f48b5809efe5dd53c5295a0d4ad240c5ede51b653bc7f39
diff --git a/kde-frameworks/kauth/kauth-6.9.0.ebuild b/kde-frameworks/kauth/kauth-6.9.0.ebuild
new file mode 100644
index 00000000000..97c69b19cca
--- /dev/null
+++ b/kde-frameworks/kauth/kauth-6.9.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PVCUT=$(ver_cut 1-2)
+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-${PVCUT}*:6
+ policykit? (
+ >=dev-qt/qtbase-${QTMIN}:6[dbus]
+ =kde-frameworks/kwindowsystem-${PVCUT}*: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
+}