diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-05-09 01:42:05 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-05-09 14:09:36 +0200 |
commit | 0c87640b88230559c223fc03356e766a283a61a4 (patch) | |
tree | 390067c60f87f196718a7b001512757429763f4f /kde-frameworks/kauth | |
parent | kde-frameworks/kactivities: 5.82.0 version bump (diff) | |
download | gentoo-0c87640b88230559c223fc03356e766a283a61a4.tar.gz gentoo-0c87640b88230559c223fc03356e766a283a61a4.tar.bz2 gentoo-0c87640b88230559c223fc03356e766a283a61a4.zip |
kde-frameworks/kauth: 5.82.0 version bump
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.82.0.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest index 8a85da3eebb9..87c18a83fa96 100644 --- a/kde-frameworks/kauth/Manifest +++ b/kde-frameworks/kauth/Manifest @@ -1,2 +1,3 @@ DIST kauth-5.80.0.tar.xz 87928 BLAKE2B 9383f10901223ab983c1ec7ef63d75447ad15a159694b9c333efe7911fea472c58aec93d123ac65f029b839bfafe8d559162aef8bfb6707cfc2f2397879b4cb0 SHA512 17ab01527a3204b32b1e628ca3882e27c4d4deb988381f8857ca4b51e80d136fa39faaf90cc28ca670ab8174bf757a961b6cbe6e87cc70a141968a1d1d94e983 DIST kauth-5.81.0.tar.xz 88412 BLAKE2B 479c780c884adfd63b1c84ce58bdea1336699f381e2c0be7d064ecd48778cf1fc030436c155bc095f73f9dbadd902123e94e6d4d5d4bdfe350f882b219b3bfdb SHA512 c8aeddd31feaa6ef74ba7415ee74eed388b58856933e5faf4238d3ee28cff6603018d1a20f7f4716c5ba9b50f4e207227abee83d63640a919d7acda221776618 +DIST kauth-5.82.0.tar.xz 88396 BLAKE2B 1c99917b26f9738b876385276251b7bb616a35bdc82bf581aabba693a0846b8fd615e960dc95829e6a19b158299117988aef10ba965ca16135cbd51c2f4891a5 SHA512 ff69853dbdfee9b22431ee495c07875430015ee706357acdcdfc93b3deca7a373eecf40d30977de97253f044a4dad7548b2ad55c84583b92587a77be285e3ed8 diff --git a/kde-frameworks/kauth/kauth-5.82.0.ebuild b/kde-frameworks/kauth/kauth-5.82.0.ebuild new file mode 100644 index 000000000000..b87b08b797b7 --- /dev/null +++ b/kde-frameworks/kauth/kauth-5.82.0.ebuild @@ -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 +} |