forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-frameworks/kauth: 5.79.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST kauth-5.77.0.tar.xz 87984 BLAKE2B 014ce49db855fb7f07874c03fb5d4d49e8dae616c96840eae4c11faeddcd96e7a785b314d1a3119f6c138f7981a3e61e2fd546d40f57fb59d363d87f1c283ce9 SHA512 d135dbbdb3548468e87a2b06e20af3597d8ad3bf22c6e8ede8ebee05173a347205a966abf30db1af5d3e0f316a25807fb18f7219e4c58e4376cb9b749a9c5023 | ||
DIST kauth-5.78.0.tar.xz 88016 BLAKE2B 80356cc522b8a4f47e202d8053fe9f1da1c2cb4ff360c1ab3464b89e07c47ff1bd60a5eb8b9a347c008d2db8cbdc55d0a7296557a02767242e1f8102c21194c2 SHA512 023c48f677cf79d974330e40082f3ce397d7fa53be616c9fda3c8e0d165757119c342941a0f51a7b1d63fc9198d2b27b124dd68797fbc0867b804382a8c4c34b | ||
DIST kauth-5.79.0.tar.xz 88012 BLAKE2B 92723799a1823d5cdece0fc98db6bdf5865e838056415168b95d08c36a4ae0337441a836c7def5a3db4c5bdf568db2e684f3d01f6d85c07dd2cacf67adb58c85 SHA512 3a1c09ade5b422b3e3db547807126d929e1f22b59cfd890ec22d85dc3e831286f424ad394273fb4bb6fabf1ebc88a6b28f520e8630ad762f394f1ef27c1dda01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PVCUT=$(ver_cut 1-2) | ||
QTMIN=5.15.2 | ||
VIRTUALX_REQUIRED="test" | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Framework to let applications perform actions as a privileged user" | ||
LICENSE="LGPL-2.1+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
IUSE="nls +policykit" | ||
|
||
BDEPEND=" | ||
nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) | ||
" | ||
DEPEND=" | ||
>=dev-qt/qtdbus-${QTMIN}:5 | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
=kde-frameworks/kcoreaddons-${PVCUT}*:5 | ||
policykit? ( >=sys-auth/polkit-qt-0.113.0 ) | ||
" | ||
RDEPEND="${DEPEND}" | ||
PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 746866 | ||
$(cmake_use_find_package policykit PolkitQt5-1) | ||
) | ||
|
||
ecm_src_configure | ||
} | ||
|
||
src_test() { | ||
# KAuthHelperTest test fails, bug 654842 | ||
local myctestargs=( | ||
-E "(KAuthHelperTest)" | ||
) | ||
|
||
ecm_src_test | ||
} |