Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: app-crypt/qca/
Date: Tue, 31 Dec 2019 16:44:07
Message-Id: 1577810398.d2c703851941eb94c809b43c51f0f0628ba84044.asturm@gentoo
1 commit: d2c703851941eb94c809b43c51f0f0628ba84044
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 31 16:39:50 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 31 16:39:58 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=d2c70385
7
8 app-crypt/qca: Switch to cmake.eclass and kde.org.eclass
9
10 Add missing RESTRICT="!test? ( test )"
11
12 Package-Manager: Portage-2.3.84, Repoman-2.3.20
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 app-crypt/qca/qca-9999.ebuild | 11 ++++++-----
16 1 file changed, 6 insertions(+), 5 deletions(-)
17
18 diff --git a/app-crypt/qca/qca-9999.ebuild b/app-crypt/qca/qca-9999.ebuild
19 index 3c88d034..be322031 100644
20 --- a/app-crypt/qca/qca-9999.ebuild
21 +++ b/app-crypt/qca/qca-9999.ebuild
22 @@ -3,11 +3,10 @@
23
24 EAPI=7
25
26 -inherit cmake-utils git-r3 qmake-utils
27 +inherit kde.org cmake git-r3 qmake-utils
28
29 DESCRIPTION="Qt Cryptographic Architecture (QCA)"
30 HOMEPAGE="https://userbase.kde.org/QCA"
31 -EGIT_REPO_URI="https://anongit.kde.org/${PN}.git"
32
33 LICENSE="LGPL-2.1"
34 SLOT="2"
35 @@ -15,6 +14,8 @@ KEYWORDS=""
36
37 IUSE="botan debug doc examples gcrypt gpg libressl logger nss pkcs11 sasl softstore +ssl test"
38
39 +RESTRICT="!test? ( test )"
40 +
41 BDEPEND="
42 doc? ( app-doc/doxygen )
43 "
44 @@ -63,16 +64,16 @@ src_configure() {
45 $(qca_plugin_use ssl ossl)
46 -DBUILD_TESTS=$(usex test)
47 )
48 - cmake-utils_src_configure
49 + cmake_src_configure
50 }
51
52 src_test() {
53 local -x QCA_PLUGIN_PATH="${BUILD_DIR}/lib/qca"
54 - cmake-utils_src_test
55 + cmake_src_test
56 }
57
58 src_install() {
59 - cmake-utils_src_install
60 + cmake_src_install
61
62 if use doc; then
63 pushd "${BUILD_DIR}" >/dev/null || die