Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/qca/
Date: Sun, 22 Dec 2019 19:51:10
Message-Id: 1577044251.591b59229a5d3af3e8f7f9e1d7976b84ab1510b9.asturm@gentoo
1 commit: 591b59229a5d3af3e8f7f9e1d7976b84ab1510b9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 22 19:50:28 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 22 19:50:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=591b5922
7
8 app-crypt/qca: Drop 2.2.0
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-crypt/qca/Manifest | 1 -
14 app-crypt/qca/qca-2.2.0.ebuild | 88 ------------------------------------------
15 2 files changed, 89 deletions(-)
16
17 diff --git a/app-crypt/qca/Manifest b/app-crypt/qca/Manifest
18 index d6c3d27f3c4..20d0b5f676b 100644
19 --- a/app-crypt/qca/Manifest
20 +++ b/app-crypt/qca/Manifest
21 @@ -1,2 +1 @@
22 -DIST qca-2.2.0.tar.xz 691264 BLAKE2B 3b9196372c8a8f2e50a86a8a581a549d52a324cbfa919945683222d605747f7127af469a1de0310e24e823243ab4cd884a763b7baac94048e739f49d2a31dcbf SHA512 2a3f73bbd73ae8f74b2b4ec143bc010b7efaba267fc3349fc681623f29a288f69e5c457597f4964f88172a98e0a7eba6d2555675704d5d7026df794b8f772e69
23 DIST qca-2.2.1.tar.xz 691676 BLAKE2B d5bcc0d6e791811e1efcdbf2e09916fe40ad682b0e59b2993c73a5bd79e09fc28facdec81259a982bee05223c8dfce78b9a6b729ca4e566c0901a13b91575379 SHA512 3a0e8aa7cf3ea9a7244facaf1d521ebca2753af37636e7bf5f21c57ae880ac9682ae7d6d9fa5ce41b73568ff9538214956b89cd41228c2cb828d9068c2031a9c
24
25 diff --git a/app-crypt/qca/qca-2.2.0.ebuild b/app-crypt/qca/qca-2.2.0.ebuild
26 deleted file mode 100644
27 index bacd8da8b96..00000000000
28 --- a/app-crypt/qca/qca-2.2.0.ebuild
29 +++ /dev/null
30 @@ -1,88 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake-utils qmake-utils
37 -
38 -DESCRIPTION="Qt Cryptographic Architecture (QCA)"
39 -HOMEPAGE="https://userbase.kde.org/QCA"
40 -SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
41 -
42 -LICENSE="LGPL-2.1"
43 -SLOT="2"
44 -KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
45 -
46 -IUSE="botan debug doc examples gcrypt gpg libressl logger nss pkcs11 sasl softstore +ssl test"
47 -RESTRICT="!test? ( test )"
48 -
49 -BDEPEND="
50 - doc? ( app-doc/doxygen )
51 -"
52 -RDEPEND="
53 - dev-qt/qtcore:5
54 - botan? ( dev-libs/botan:= )
55 - gcrypt? ( dev-libs/libgcrypt:= )
56 - gpg? ( app-crypt/gnupg )
57 - nss? ( dev-libs/nss )
58 - pkcs11? (
59 - !libressl? ( dev-libs/openssl:0 )
60 - libressl? ( dev-libs/libressl )
61 - dev-libs/pkcs11-helper
62 - )
63 - sasl? ( dev-libs/cyrus-sasl:2 )
64 - ssl? (
65 - !libressl? ( >=dev-libs/openssl-1.0.1:0= )
66 - libressl? ( dev-libs/libressl:= )
67 - )
68 -"
69 -DEPEND="${RDEPEND}
70 - test? (
71 - dev-qt/qtnetwork:5
72 - dev-qt/qttest:5
73 - )
74 -"
75 -
76 -PATCHES=( "${FILESDIR}/${PN}-disable-pgp-test.patch" )
77 -
78 -qca_plugin_use() {
79 - echo -DWITH_${2:-$1}_PLUGIN=$(usex "$1")
80 -}
81 -
82 -src_configure() {
83 - local mycmakeargs=(
84 - -DQCA_FEATURE_INSTALL_DIR="${EPREFIX}$(qt5_get_mkspecsdir)/features"
85 - -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}$(qt5_get_plugindir)"
86 - $(qca_plugin_use botan)
87 - $(qca_plugin_use gcrypt)
88 - $(qca_plugin_use gpg gnupg)
89 - $(qca_plugin_use logger)
90 - $(qca_plugin_use nss)
91 - $(qca_plugin_use pkcs11)
92 - $(qca_plugin_use sasl cyrus-sasl)
93 - $(qca_plugin_use softstore)
94 - $(qca_plugin_use ssl ossl)
95 - -DBUILD_TESTS=$(usex test)
96 - )
97 - cmake-utils_src_configure
98 -}
99 -
100 -src_test() {
101 - local -x QCA_PLUGIN_PATH="${BUILD_DIR}/lib/qca"
102 - cmake-utils_src_test
103 -}
104 -
105 -src_install() {
106 - cmake-utils_src_install
107 -
108 - if use doc; then
109 - pushd "${BUILD_DIR}" >/dev/null || die
110 - doxygen Doxyfile || die
111 - dodoc -r apidocs/html
112 - popd >/dev/null || die
113 - fi
114 -
115 - if use examples; then
116 - dodoc -r "${S}"/examples
117 - fi
118 -}