diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-12-15 12:59:13 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-12-15 17:21:33 +0100 |
commit | 4fc3b86097d1f3cafd5786a76cd0407be5288b07 (patch) | |
tree | 645cff148e2131eb6f6ea5b04d4a427e73f658ed /kde-frameworks | |
parent | kde-frameworks/kparts: 5.113.0 version bump (diff) | |
download | gentoo-4fc3b86097d1f3cafd5786a76cd0407be5288b07.tar.gz gentoo-4fc3b86097d1f3cafd5786a76cd0407be5288b07.tar.bz2 gentoo-4fc3b86097d1f3cafd5786a76cd0407be5288b07.zip |
kde-frameworks/krunner: 5.113.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks')
-rw-r--r-- | kde-frameworks/krunner/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/krunner/krunner-5.113.0.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/kde-frameworks/krunner/Manifest b/kde-frameworks/krunner/Manifest index 5a273d53cb5c..66bc9576c60f 100644 --- a/kde-frameworks/krunner/Manifest +++ b/kde-frameworks/krunner/Manifest @@ -1 +1,2 @@ DIST krunner-5.112.0.tar.xz 88696 BLAKE2B 4a2a8b70244ecd794337d29e3920c2ac0a2289b034d8a11bed9d3afcbcec03c3926e91b9ad76bbef8bbce5a416f0356a90eadde2f811e60e79088b377e3769a8 SHA512 82e62c621489f93f55a3d91d6c38538fee77696d96e47a2ccb33e0c1f7541f4bbbbbcb39486b719f7493933c35fa0ea56c91088eccda49189d609cee02fbce43 +DIST krunner-5.113.0.tar.xz 88936 BLAKE2B c2109e0101782bf8e10eacafc691f8d6b54e8db9b8d790c9776d972c481d1c9aab247312499e717853140a9a43eec35cc0d18cb7f4bcb660d0e1bed8424bc3e5 SHA512 f8ba6ac6b18844a85d6f3b60a659b4ce2fb5d2bbb118777156672dc77c71e77312df9441303aa184d486ce2b8470be6d052539b30ce2ebfcd9cad6ffe3ac4b19 diff --git a/kde-frameworks/krunner/krunner-5.113.0.ebuild b/kde-frameworks/krunner/krunner-5.113.0.ebuild new file mode 100644 index 000000000000..dc9f4fd8f391 --- /dev/null +++ b/kde-frameworks/krunner/krunner-5.113.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PVCUT=$(ver_cut 1-2) +QTMIN=5.15.9 +inherit ecm frameworks.kde.org + +DESCRIPTION="Framework for providing different actions given a string query" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="activities" + +DEPEND=" + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + =kde-frameworks/kconfig-${PVCUT}*:5 + =kde-frameworks/kcoreaddons-${PVCUT}*:5 + =kde-frameworks/ki18n-${PVCUT}*:5 + =kde-frameworks/kio-${PVCUT}*:5 + =kde-frameworks/kservice-${PVCUT}*:5 + =kde-frameworks/threadweaver-${PVCUT}*:5 + =kde-plasma/libplasma-${PVCUT}*:5 + activities? ( =kde-plasma/plasma-activities-${PVCUT}*:5 ) +" +RDEPEND="${DEPEND}" + +CMAKE_SKIP_TESTS=( + # requires virtual dbus, otherwise hangs; bugs #630672 + dbusrunnertest + # bug 789351 + runnermanagersinglerunnermodetest + # bug 838502 + runnermanagertest +) + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package activities KF5Activities) + ) + ecm_src_configure +} |