Gentoo Archives: gentoo-commits

From: Stefan Strogin <stefan.strogin@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/libressl:master commit in: app-crypt/qca/
Date: Sun, 05 May 2019 05:11:52
Message-Id: 1557032997.c88f8f1da607d7e3aa902863ae8ffc1ba0bfedea.steils@gentoo
1 commit: c88f8f1da607d7e3aa902863ae8ffc1ba0bfedea
2 Author: Stefan Strogin <stefan.strogin <AT> gmail <DOT> com>
3 AuthorDate: Sun May 5 05:09:57 2019 +0000
4 Commit: Stefan Strogin <stefan.strogin <AT> gmail <DOT> com>
5 CommitDate: Sun May 5 05:09:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=c88f8f1d
7
8 app-crypt/qca: bump version to 2.2.1
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Stefan Strogin <stefan.strogin <AT> gmail.com>
12
13 app-crypt/qca/Manifest | 1 +
14 app-crypt/qca/qca-2.2.1.ebuild | 90 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 91 insertions(+)
16
17 diff --git a/app-crypt/qca/Manifest b/app-crypt/qca/Manifest
18 index 421d83e..d6c3d27 100644
19 --- a/app-crypt/qca/Manifest
20 +++ b/app-crypt/qca/Manifest
21 @@ -1 +1,2 @@
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.1.ebuild b/app-crypt/qca/qca-2.2.1.ebuild
26 new file mode 100644
27 index 0000000..5cfce39
28 --- /dev/null
29 +++ b/app-crypt/qca/qca-2.2.1.ebuild
30 @@ -0,0 +1,90 @@
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-fbsd ~x86-fbsd ~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 +
48 +BDEPEND="
49 + doc? ( app-doc/doxygen )
50 +"
51 +RDEPEND="
52 + dev-qt/qtcore:5
53 + botan? ( dev-libs/botan:= )
54 + gcrypt? ( dev-libs/libgcrypt:= )
55 + gpg? ( app-crypt/gnupg )
56 + nss? ( dev-libs/nss )
57 + pkcs11? (
58 + !libressl? ( dev-libs/openssl:0 )
59 + libressl? ( dev-libs/libressl )
60 + dev-libs/pkcs11-helper
61 + )
62 + sasl? ( dev-libs/cyrus-sasl:2 )
63 + ssl? (
64 + !libressl? ( >=dev-libs/openssl-1.0.1:0= )
65 + libressl? ( dev-libs/libressl:= )
66 + )
67 +"
68 +DEPEND="${RDEPEND}
69 + test? (
70 + dev-qt/qtnetwork:5
71 + dev-qt/qttest:5
72 + )
73 +"
74 +
75 +PATCHES=(
76 + "${FILESDIR}/${PN}-disable-pgp-test.patch"
77 + "${FILESDIR}/${PN}-2.2.0-libressl.patch"
78 +)
79 +
80 +qca_plugin_use() {
81 + echo -DWITH_${2:-$1}_PLUGIN=$(usex "$1")
82 +}
83 +
84 +src_configure() {
85 + local mycmakeargs=(
86 + -DQCA_FEATURE_INSTALL_DIR="${EPREFIX}$(qt5_get_mkspecsdir)/features"
87 + -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}$(qt5_get_plugindir)"
88 + $(qca_plugin_use botan)
89 + $(qca_plugin_use gcrypt)
90 + $(qca_plugin_use gpg gnupg)
91 + $(qca_plugin_use logger)
92 + $(qca_plugin_use nss)
93 + $(qca_plugin_use pkcs11)
94 + $(qca_plugin_use sasl cyrus-sasl)
95 + $(qca_plugin_use softstore)
96 + $(qca_plugin_use ssl ossl)
97 + -DBUILD_TESTS=$(usex test)
98 + )
99 + cmake-utils_src_configure
100 +}
101 +
102 +src_test() {
103 + local -x QCA_PLUGIN_PATH="${BUILD_DIR}/lib/qca"
104 + cmake-utils_src_test
105 +}
106 +
107 +src_install() {
108 + cmake-utils_src_install
109 +
110 + if use doc; then
111 + pushd "${BUILD_DIR}" >/dev/null || die
112 + doxygen Doxyfile || die
113 + dodoc -r apidocs/html
114 + popd >/dev/null || die
115 + fi
116 +
117 + if use examples; then
118 + dodoc -r "${S}"/examples
119 + fi
120 +}