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: app-crypt/tpm-tools/
Date: Thu, 27 Sep 2018 23:55:24
Message-Id: 1538092299.45cd1dd9d55b18ddfe2109e86b9fe382900eed06.alonbl@gentoo
1 commit: 45cd1dd9d55b18ddfe2109e86b9fe382900eed06
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 23 13:47:33 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 27 23:51:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45cd1dd9
7
8 app-crypt/tpm-tools: eapi bump
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild | 18 +++++++-----------
13 1 file changed, 7 insertions(+), 11 deletions(-)
14
15 diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild
16 index eac3a3944ab..3be16cf93ed 100644
17 --- a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild
18 +++ b/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=6
24 +EAPI=7
25
26 -inherit autotools flag-o-matic ltprune
27 +inherit autotools flag-o-matic
28
29 DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules"
30 HOMEPAGE="http://trousers.sourceforge.net"
31 @@ -14,16 +14,12 @@ SLOT="0"
32 KEYWORDS="amd64 ~arm arm64 ~m68k ~s390 ~sh x86"
33 IUSE="libressl nls pkcs11 debug"
34
35 -COMMON_DEPEND="
36 - >=app-crypt/trousers-0.3.0
37 +DEPEND=">=app-crypt/trousers-0.3.0
38 !libressl? ( dev-libs/openssl:0= )
39 libressl? ( dev-libs/libressl:0= )
40 - pkcs11? ( dev-libs/opencryptoki )
41 - "
42 -RDEPEND="${COMMON_DEPEND}
43 - nls? ( virtual/libintl )"
44 -DEPEND="${COMMON_DEPEND}
45 - nls? ( sys-devel/gettext )"
46 + pkcs11? ( dev-libs/opencryptoki )"
47 +RDEPEND="${DEPEND}"
48 +BDEPEND="nls? ( sys-devel/gettext )"
49
50 S="${WORKDIR}"
51
52 @@ -47,5 +43,5 @@ src_configure() {
53
54 src_install() {
55 default
56 - prune_libtool_files
57 + find "${D}" -name '*.la' -delete || die
58 }