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.73.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
45 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.70.0.tar.xz 86396 BLAKE2B 1547fa301a2aa3a2db2257e635df24a1ecaaa77f09bba41180b1fbb02d766c124ab5aa681c1e82abe73e0713a276b6857b9da05493ef415b530b8680d37420f1 SHA512 736c372732bff566f0f7beaa953e8b8ddb930b08cb4269e38174523fbfe6b77041dc3141980f109ec15d176a5d367dd05dd58e1fcca234f7eee828a456fde906 | ||
DIST kauth-5.72.0.tar.xz 89360 BLAKE2B 9ffc33e267042141cd4e1af0a9918291c5c33442f8784a2a958048e5d6e772a65af2a29db62876f4fedb5f42c3cf4419be809f4d69dd63757d93fd5fe350b869 SHA512 e6b3ed0de6aa9537f0fb6630857b2f61fada3643f49fd4797366a6fa2c554fdaf10bb513245bac95dce3d73feabc8728ef01567cea26ff707622a876e8af4d90 | ||
DIST kauth-5.73.0.tar.xz 89352 BLAKE2B 7368ce66d1a6f054aea036d7f5ed4f87579302a188084e139cf59ce003380f9f9818fdaa7c6d8f9c532365d03d03db6a4b578022a52c67f614a92d29ac49fb9a SHA512 c514d898c7e4c7b4794799af03754090099cdfd2afb0679034f0209bbfa3541585461e9161abb787e0fcd1dcb887e0d1b5c7f314aee107e0a89cc897ef17bc79 |
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,44 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PVCUT=$(ver_cut 1-2) | ||
QTMIN=5.14.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[qt5(+)] ) | ||
" | ||
RDEPEND="${DEPEND}" | ||
PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package policykit PolkitQt5-1) | ||
) | ||
|
||
ecm_src_configure | ||
} | ||
|
||
src_test() { | ||
# KAuthHelperTest test fails, bug 654842 | ||
local myctestargs=( | ||
-E "(KAuthHelperTest)" | ||
) | ||
|
||
ecm_src_test | ||
} |