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: Sat, 25 Aug 2018 03:58:23
Message-Id: 1535169486.52bfba3f97019b516ee8c0fd009126d37e21da96.alonbl@gentoo
1 commit: 52bfba3f97019b516ee8c0fd009126d37e21da96
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 24 18:36:14 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 25 03:58:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52bfba3f
7
8 app-crypt/tpm-tools: cleanup old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-crypt/tpm-tools/Manifest | 1 -
13 app-crypt/tpm-tools/tpm-tools-1.3.9.ebuild | 55 ------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/app-crypt/tpm-tools/Manifest b/app-crypt/tpm-tools/Manifest
17 index 53518912814..4d121ec3312 100644
18 --- a/app-crypt/tpm-tools/Manifest
19 +++ b/app-crypt/tpm-tools/Manifest
20 @@ -1,2 +1 @@
21 DIST tpm-tools-1.3.9.1.tar.gz 482859 BLAKE2B ee915679e23bead04672bf719ce59bb6f20b550be39855b5304caeff554bf54d3cfe9104d464af7762388995e51d2bed0f9bedad83e42146cb7457382d09f4b2 SHA512 63a9c0e761cd890cc0a218de79a9c0169e151aba7824c19bf6b7ec894cf41c4950de1f63bd849aa93a4bdff36cf0fe557bc17113912b6d77f57f2bf1190b6a08
22 -DIST tpm-tools-1.3.9.tar.gz 484023 BLAKE2B 5f9809a8dd4c565c647ceb394e6a6086cd42d256feb39599331b979f73150f60881ba9f25a3b0171173d66da8718f1475c6945b243b86c2261c4e8c489802803 SHA512 460e56031aa65ede6b7aebf0c594d4093d870fb46f7c453c429e53cca442d4c7797ac29b519bca28d42133bc6d7701cdf938adbdf11f8be841157d4f4a3e17ca
23
24 diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.9.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.9.ebuild
25 deleted file mode 100644
26 index ff712c720ce..00000000000
27 --- a/app-crypt/tpm-tools/tpm-tools-1.3.9.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools flag-o-matic ltprune
36 -
37 -DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules"
38 -HOMEPAGE="http://trousers.sourceforge.net"
39 -SRC_URI="mirror://sourceforge/trousers/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="CPL-1.0"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm arm64 ~m68k ~s390 ~sh x86"
44 -IUSE="libressl nls pkcs11 debug"
45 -
46 -COMMON_DEPEND="
47 - >=app-crypt/trousers-0.3.0
48 - !libressl? ( dev-libs/openssl:0= )
49 - libressl? ( dev-libs/libressl:0= )
50 - pkcs11? ( dev-libs/opencryptoki )
51 - "
52 -RDEPEND="${COMMON_DEPEND}
53 - nls? ( virtual/libintl )"
54 -DEPEND="${COMMON_DEPEND}
55 - nls? ( sys-devel/gettext )"
56 -
57 -PATCHES=(
58 - "${FILESDIR}/${P}-gold.patch"
59 -)
60 -
61 -S="${WORKDIR}"
62 -
63 -src_prepare() {
64 - default
65 -
66 - sed -i -r \
67 - -e '/CFLAGS/s/ -m64//' \
68 - configure.ac || die
69 -
70 - eautoreconf
71 -}
72 -
73 -src_configure() {
74 - append-cppflags $(usex debug -DDEBUG -DNDEBUG)
75 -
76 - econf \
77 - $(use_enable nls) \
78 - $(use pkcs11 || echo --disable-pkcs11-support)
79 -}
80 -
81 -src_install() {
82 - default
83 - prune_libtool_files
84 -}