Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-tools/
Date: Mon, 21 Jun 2021 22:44:34
Message-Id: 1624315456.ee71fdfe9cc9631baacab3bcb5fa47ae2ef13247.sam@gentoo
1 commit: ee71fdfe9cc9631baacab3bcb5fa47ae2ef13247
2 Author: Christopher Byrne <salah.coronya <AT> gmail <DOT> com>
3 AuthorDate: Mon Jun 21 15:13:47 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 21 22:44:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee71fdfe
7
8 app-crypt/tpm2-tools: Bump to 4.3.2
9
10 Bug: https://bugs.gentoo.org/793764
11 Package-Manager: Portage-3.0.20, Repoman-3.0.2
12 Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com>
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 app-crypt/tpm2-tools/Manifest | 1 +
16 app-crypt/tpm2-tools/tpm2-tools-4.3.2.ebuild | 44 ++++++++++++++++++++++++++++
17 2 files changed, 45 insertions(+)
18
19 diff --git a/app-crypt/tpm2-tools/Manifest b/app-crypt/tpm2-tools/Manifest
20 index 68a29fc9545..76c86194481 100644
21 --- a/app-crypt/tpm2-tools/Manifest
22 +++ b/app-crypt/tpm2-tools/Manifest
23 @@ -1,2 +1,3 @@
24 DIST tpm2-tools-4.3.1.tar.gz 891993 BLAKE2B d145fd542952ebbf59bb82640b9ac41cc777dcd8f526683447e3a3fd22fd4c46ab59899418ae52382d88e05418b772afd7f10093c5e0ef4cba685470cf7a7c8e SHA512 0104b6bca9e56ee30c033f3ddb2ab75b683b07ff917b800ff8fde49ce5cdc6d42e5fff63ed3ee9700f656dbf34bca76cee7408c256f1e30d92148c506b0032f2
25 +DIST tpm2-tools-4.3.2.tar.gz 887708 BLAKE2B ee6fe3d0566138d6289d1a91252ccb106d36ff80d55f2d6f9ee30c8e16338d706e80085ac5f4f56a79bcb339e5dcb240efcf71d4003bcffdad366f3cd7a1165b SHA512 1aa47c62c3d2a83195ec649e50c0be2c8be39f926806d8d7cb96edc499c385d527661813e02024e98f83ae9ebcb22d7dadc507ddfab48be9bbe428d9439d7ee1
26 DIST tpm2-tools-5.0.tar.gz 990855 BLAKE2B 5d39bbef0bc6f0d84f37c64c697260343a9f9e134bce015a6b529176195adb907672f35b85382b0a4785e40e368030ac347083086c3799bdfe86dced1ac69848 SHA512 ea57a28a61e28b78cae7067ff58facd8754fafab7a2689fd93f8b3374073b6ac30301a75f8ff5c654800ab469ee6604d0b8a86c310631b9545b816ecaa05968e
27
28 diff --git a/app-crypt/tpm2-tools/tpm2-tools-4.3.2.ebuild b/app-crypt/tpm2-tools/tpm2-tools-4.3.2.ebuild
29 new file mode 100644
30 index 00000000000..01663f80cd5
31 --- /dev/null
32 +++ b/app-crypt/tpm2-tools/tpm2-tools-4.3.2.ebuild
33 @@ -0,0 +1,44 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit autotools
40 +
41 +DESCRIPTION="Tools for the TPM 2.0 TSS"
42 +HOMEPAGE="https://github.com/tpm2-software/tpm2-tools"
43 +SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +IUSE="+fapi"
49 +
50 +# Integration test are now run as part of the testing suite, which will fail
51 +# because none of the supported TPM emulators are in Portage. In a future
52 +# version of tpm2-tools, swtpm will be supported and the tests can be run.
53 +RESTRICT="test"
54 +
55 +RDEPEND="net-misc/curl:=
56 + >=app-crypt/tpm2-tss-2.4.0:=[fapi?]
57 + dev-libs/openssl:0="
58 +DEPEND="${RDEPEND}"
59 +BDEPEND="virtual/pkgconfig
60 + sys-devel/autoconf-archive"
61 +PATCHES=(
62 + "${FILESDIR}/${PN}-4.3.0-Remove-WError.patch"
63 +)
64 +
65 +src_prepare() {
66 + sed -i \
67 + "s/m4_esyscmd_s(\[git describe --tags --always --dirty\])/${PV}/" \
68 + "${S}/configure.ac" || die
69 + eautoreconf
70 + default
71 +}
72 +
73 +src_configure() {
74 + econf \
75 + $(use_enable fapi) \
76 + --enable-hardening
77 +}