diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-02-08 14:29:22 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-02-09 11:02:33 +0100 |
commit | a5e3a9b1114f82bb8aacf31a2d0fe6b30b315ddb (patch) | |
tree | b53596ccad77fcfaa8953aca1c7cead6db71b608 /kde-frameworks/kauth | |
parent | sci-visualization/veusz: cleaning old (diff) | |
download | gentoo-a5e3a9b1114f82bb8aacf31a2d0fe6b30b315ddb.tar.gz gentoo-a5e3a9b1114f82bb8aacf31a2d0fe6b30b315ddb.tar.bz2 gentoo-a5e3a9b1114f82bb8aacf31a2d0fe6b30b315ddb.zip |
kde-frameworks: Add KDE Frameworks 5.67.0
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kauth')
-rw-r--r-- | kde-frameworks/kauth/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/kauth/kauth-5.67.0.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest index 488b9c0b0b4b..f5c7e9d2b6e7 100644 --- a/kde-frameworks/kauth/Manifest +++ b/kde-frameworks/kauth/Manifest @@ -1,2 +1,3 @@ DIST kauth-5.64.0.tar.xz 86028 BLAKE2B f325de80edee5afaba9733732baec53241de03d3404d6ce3f5941daa683a6edfca08cfe20172364d88e15484ecef36c145306b7603259ae30bb0b422c9b5f517 SHA512 0dfa8e62930ad7ae3b1c816428a09dc6950479e3579bc143fb7de22d55554c06f6e2501bd5bab48ca08d202097d35993f35c6877f013ad2d1f00b291b7e7e6a5 DIST kauth-5.66.0.tar.xz 85972 BLAKE2B cc66314e99d9a923288f6592903212ddefa5127db37615247ec5d8e6abc77ac640c9b591ac014763221a6eaea9f7bd796f5e33bfb9e00d3cc4d621c795ce400e SHA512 dbc05ace539ba19cb4ccb0da995ea7049fc7702d2405f0d71c71423b22309df6194457a625525dcf47f504856d80b640276e60fce9369c8efadc1bb5123ca3d2 +DIST kauth-5.67.0.tar.xz 86072 BLAKE2B 2fb9e7dcb370e0902c51b087d300e0c07a703802ae429e39908628222d9403528c3ef69fe6a007046a688fa089234f71635f15d3eb9a42797038af053f675d32 SHA512 f4ed8ffd339c5c7ce3cd974cbdee3ce4a4b766062bf3ad2845596317ea8bc27460767ca48c8a7262cc5778a130d957221612a4b0329ea735ca2b175e209669a5 diff --git a/kde-frameworks/kauth/kauth-5.67.0.ebuild b/kde-frameworks/kauth/kauth-5.67.0.ebuild new file mode 100644 index 000000000000..c3991afad63d --- /dev/null +++ b/kde-frameworks/kauth/kauth-5.67.0.ebuild @@ -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.12.3 +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=" + =kde-frameworks/kcoreaddons-${PVCUT}*:5 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}: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 +} |