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.80.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.79.0.tar.xz 88012 BLAKE2B 92723799a1823d5cdece0fc98db6bdf5865e838056415168b95d08c36a4ae0337441a836c7def5a3db4c5bdf568db2e684f3d01f6d85c07dd2cacf67adb58c85 SHA512 3a1c09ade5b422b3e3db547807126d929e1f22b59cfd890ec22d85dc3e831286f424ad394273fb4bb6fabf1ebc88a6b28f520e8630ad762f394f1ef27c1dda01 | ||
DIST kauth-5.80.0.tar.xz 87928 BLAKE2B 9383f10901223ab983c1ec7ef63d75447ad15a159694b9c333efe7911fea472c58aec93d123ac65f029b839bfafe8d559162aef8bfb6707cfc2f2397879b4cb0 SHA512 17ab01527a3204b32b1e628ca3882e27c4d4deb988381f8857ca4b51e80d136fa39faaf90cc28ca670ab8174bf757a961b6cbe6e87cc70a141968a1d1d94e983 |
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 | ||
} |