Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/softhsm/
Date: Thu, 27 Sep 2018 23:55:29
Message-Id: 1538092303.d074c984b6ed86ac1c1985e5f9ff24223620ce47.alonbl@gentoo
1 commit: d074c984b6ed86ac1c1985e5f9ff24223620ce47
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 23 19:32:35 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 27 23:51:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d074c984
7
8 dev-libs/softhsm: eapi bump
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-libs/softhsm/softhsm-2.4.0.ebuild | 24 ++++++++++--------------
13 1 file changed, 10 insertions(+), 14 deletions(-)
14
15 diff --git a/dev-libs/softhsm/softhsm-2.4.0.ebuild b/dev-libs/softhsm/softhsm-2.4.0.ebuild
16 index 419485df825..ec4f819aecc 100644
17 --- a/dev-libs/softhsm/softhsm-2.4.0.ebuild
18 +++ b/dev-libs/softhsm/softhsm-2.4.0.ebuild
19 @@ -1,9 +1,7 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=6
24 -
25 -inherit ltprune
26 +EAPI=7
27
28 DESCRIPTION="A software PKCS#11 implementation"
29 HOMEPAGE="https://www.opendnssec.org/"
30 @@ -14,17 +12,14 @@ IUSE="bindist libressl migration-tool test"
31 SLOT="2"
32 LICENSE="BSD"
33
34 -RDEPEND="
35 - sys-devel/gcc:=[cxx]
36 - migration-tool? ( dev-db/sqlite:3 )
37 +RDEPEND="migration-tool? ( dev-db/sqlite:3 )
38 !libressl? ( dev-libs/openssl:=[bindist=] )
39 libressl? ( dev-libs/libressl )
40 - !=dev-libs/softhsm-2.0.0:0
41 -"
42 -DEPEND="${RDEPEND}
43 - virtual/pkgconfig
44 - test? ( dev-util/cppunit )
45 -"
46 + !~dev-libs/softhsm-2.0.0:0"
47 +DEPEND="${RDEPEND}"
48 +BDEPEND="virtual/pkgconfig
49 + sys-devel/gcc:=[cxx]
50 + test? ( dev-util/cppunit )"
51
52 DOCS=(
53 NEWS
54 @@ -34,9 +29,9 @@ DOCS=(
55 src_configure() {
56 econf \
57 --disable-static \
58 - --localstatedir="${EROOT}var" \
59 --with-crypto-backend=openssl \
60 --disable-p11-kit \
61 + --localstatedir="${EROOT}/var" \
62 $(use_enable !bindist ecc) \
63 $(use_enable !libressl gost) \
64 $(use_with migration-tool migrate)
65 @@ -44,6 +39,7 @@ src_configure() {
66
67 src_install() {
68 default
69 + find "${D}" -name '*.la' -delete || die
70 +
71 keepdir "${EROOT}/var/lib/softhsm/tokens"
72 - prune_libtool_files --modules
73 }