public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-tss/
Date: Fri, 24 May 2024 06:53:20 +0000 (UTC)	[thread overview]
Message-ID: <1716533570.e1bdd9fe492eb63a8a06d40d6a4ee34a39c72b24.sam@gentoo> (raw)

commit:     e1bdd9fe492eb63a8a06d40d6a4ee34a39c72b24
Author:     Christopher Byrne <salah.coronya <AT> gmail <DOT> com>
AuthorDate: Tue May 21 14:52:49 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 06:52:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1bdd9fe

app-crypt/tpm2-tss: add 4.1.3

Closes: https://bugs.gentoo.org/931885
Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-crypt/tpm2-tss/Manifest              |   1 +
 app-crypt/tpm2-tss/tpm2-tss-4.1.3.ebuild | 110 +++++++++++++++++++++++++++++++
 2 files changed, 111 insertions(+)

diff --git a/app-crypt/tpm2-tss/Manifest b/app-crypt/tpm2-tss/Manifest
index dea1ae67e62e..d109d0654940 100644
--- a/app-crypt/tpm2-tss/Manifest
+++ b/app-crypt/tpm2-tss/Manifest
@@ -1,3 +1,4 @@
 DIST tpm2-tss-4.0.1.tar.gz 1787139 BLAKE2B 627cdefeff6c64148f9da1425922a0a7a72debcee4930ffab208a3b9b66127c2d4f923e3e105bfd45410cdb13c19cb40cc15a720e9a05dd32ff622dabf5fcc32 SHA512 ed6ddc52cb0e8c1082a4bb001e1225eb9905fd2380da88db5fd69ff5b5d9d43a93eb67b634e49d53eb5d586832da3aef2c4c7e5f18d51bb730481f8913319d7d
 DIST tpm2-tss-4.0.2.tar.gz 1833499 BLAKE2B 91e70bcc66099fe5d7d53cf98a2c46582e96f204fc7bcb89c46497cc811ca1eb39c752be077a6e8132fc980a6581a2df075fcc6670d646d1270e642c144f043c SHA512 e92038de985ac928bf87a707b0f9b190aaa936827923ea5e3cbdda216cbc6cf8590af650c59c2e1e420ad9914dc6c1f14232ab7930ffc1a50fb0c49fdef6d3f0
 DIST tpm2-tss-4.1.1.tar.gz 1901759 BLAKE2B 96e154e0778caf8ba8d7299c82ff1614c26254fe741290a588fa251a3013bdda26f720c148d400dc068851746e85719ae78068d64eef1067f3d45c540a303284 SHA512 a8fdc85e44c4a7960cdc21fd46154fbdb63992e072cc4356f472c962a751a826906604848b7b2608344494f85f72d591f4c0bdf42e3df7491446bdecbe22f2af
+DIST tpm2-tss-4.1.3.tar.gz 1902009 BLAKE2B d8592f4797a4254883667476efb2fdf3c95547d9c472fe3557031e934c725e20e3cc70a9b7b41eaddac71e8d9f94beb5fbb39aec5d81b3eeb1b612df27312923 SHA512 c9a5e1e90f6545a466d43790ab2d67c52c4b788a0b21f8212575e27e04e0ac663105863fe00824e08a4e56a4f8c6b00c48c1a1c132531b8569cd5042c3bb9e69

diff --git a/app-crypt/tpm2-tss/tpm2-tss-4.1.3.ebuild b/app-crypt/tpm2-tss/tpm2-tss-4.1.3.ebuild
new file mode 100644
index 000000000000..79327c45219d
--- /dev/null
+++ b/app-crypt/tpm2-tss/tpm2-tss-4.1.3.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic linux-info multilib-minimal tmpfiles udev
+
+DESCRIPTION="TCG Trusted Platform Module 2.0 Software Stack"
+HOMEPAGE="https://github.com/tpm2-software/tpm2-tss"
+SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0/4"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="doc +fapi +openssl mbedtls +policy static-libs test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="
+	^^ ( mbedtls openssl )
+	fapi? ( openssl !mbedtls )
+	policy? ( openssl !mbedtls )
+"
+
+RDEPEND="
+	acct-group/tss
+	acct-user/tss
+	sys-apps/util-linux:=[${MULTILIB_USEDEP}]
+	fapi? (
+		dev-libs/json-c:=[${MULTILIB_USEDEP}]
+		>=net-misc/curl-7.80.0[${MULTILIB_USEDEP}]
+	)
+	mbedtls? ( net-libs/mbedtls:=[${MULTILIB_USEDEP}] )
+	openssl? ( dev-libs/openssl:=[${MULTILIB_USEDEP}] )
+"
+
+DEPEND="
+	${RDEPEND}
+	test? ( app-crypt/swtpm
+		dev-libs/uthash
+		dev-util/cmocka
+		fapi? ( >=net-misc/curl-7.80.0 ) )
+"
+
+BDEPEND="
+	sys-apps/acl
+	virtual/pkgconfig
+	doc? ( app-text/doxygen )
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-4.0.2-Dont-install-files-into-run.patch"
+)
+
+pkg_setup() {
+	local CONFIG_CHECK="~TCG_TPM"
+	linux-info_pkg_setup
+	kernel_is ge 4 12 0 || ewarn "At least kernel 4.12.0 is required"
+}
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+multilib_src_configure() {
+	# Fails with inlining
+	filter-flags -fno-semantic-interposition
+	# tests fail with LTO enabbled. See bug 865275 and 865279
+	filter-lto
+
+	local myconf=(
+		--localstatedir=/var
+		$(multilib_native_use_enable doc doxygen-doc)
+		$(use_enable fapi)
+		$(use_enable policy)
+		$(use_enable static-libs static)
+		$(multilib_native_use_enable test unit)
+		$(multilib_native_use_enable test integration)
+		$(multilib_native_use_enable test self-generated-certificate)
+		--disable-tcti-libtpms
+		--disable-tcti-spi-ltt2go
+		--disable-tcti-spi-ftdi
+		--disable-tcti-i2c-ftdi
+		--disable-defaultflags
+		--disable-weakcrypto
+		--with-crypto="$(usex mbedtls mbed ossl)"
+		--with-runstatedir=/run
+		--with-udevrulesdir="$(get_udevdir)/rules.d"
+		--with-udevrulesprefix=60-
+		--without-sysusersdir
+		--with-tmpfilesdir="/usr/lib/tmpfiles.d"
+	)
+
+	ECONF_SOURCE=${S} econf "${myconf[@]}"
+}
+
+multilib_src_install() {
+	default
+	keepdir /var/lib/tpm2-tss/system/keystore
+	find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+	tmpfiles_process tpm2-tss-fapi.conf
+	udev_reload
+}
+
+pkg_postrm() {
+	udev_reload
+}


             reply	other threads:[~2024-05-24  6:53 UTC|newest]

Thread overview: 114+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-24  6:53 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-24 18:11 [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-tss/ Viorel Munteanu
2025-01-07 19:54 Sam James
2024-07-29  6:22 Joonas Niilola
2024-07-29  6:15 Joonas Niilola
2024-07-29  0:32 Sam James
2024-07-29  0:32 Sam James
2024-07-28 23:58 Jakov Smolić
2024-06-11 22:25 Sam James
2024-05-24  6:53 Sam James
2024-05-07 17:38 David Seifert
2024-05-07 10:29 Sam James
2024-05-07 10:29 Sam James
2024-05-07 10:29 Sam James
2024-05-07  5:53 Joonas Niilola
2024-05-07  5:53 Joonas Niilola
2024-05-05 11:36 Sam James
2023-12-02 21:14 Sam James
2023-05-29 21:58 Sam James
2023-05-27 15:55 Sam James
2023-05-25 21:52 Sam James
2023-05-25  3:20 Sam James
2023-05-24 18:46 Arthur Zamarin
2023-05-24 18:46 Arthur Zamarin
2023-03-11 17:15 Sam James
2023-02-16 10:01 Sam James
2023-02-16 10:01 Sam James
2023-02-16  4:18 Sam James
2023-02-16  4:18 Sam James
2023-02-16  3:30 Sam James
2023-02-01  7:57 Viorel Munteanu
2023-02-01  7:57 Viorel Munteanu
2022-11-24 12:00 WANG Xuerui
2022-10-01  6:19 Arthur Zamarin
2022-10-01  5:49 Joonas Niilola
2022-10-01  5:49 Joonas Niilola
2022-10-01  5:36 Sam James
2022-10-01  5:07 Sam James
2022-09-27 21:44 Sam James
2022-09-27 21:44 Sam James
2022-08-30 19:06 Sam James
2022-06-28 18:18 Matt Turner
2022-06-28 18:18 Matt Turner
2022-05-20  9:17 Agostino Sarubbo
2022-05-19  9:27 Agostino Sarubbo
2022-05-17 12:38 Agostino Sarubbo
2022-05-17 12:37 Agostino Sarubbo
2022-05-17  9:58 Agostino Sarubbo
2022-04-23 21:34 Sam James
2022-04-23 21:34 Sam James
2022-04-23 21:34 Sam James
2022-04-23 21:34 Sam James
2022-03-16 17:23 Sam James
2022-03-16 17:23 Sam James
2022-03-10 10:10 Jakov Smolić
2022-02-23  1:16 Sam James
2022-02-23  1:16 Sam James
2022-02-23  1:16 Sam James
2022-02-22  0:41 Sam James
2022-02-22  0:41 Sam James
2022-02-19  3:30 Sam James
2021-12-08  4:56 Sam James
2021-12-07  6:26 Agostino Sarubbo
2021-12-07  2:17 Sam James
2021-12-06 11:27 Agostino Sarubbo
2021-09-04 21:39 Sam James
2021-09-03  6:40 Agostino Sarubbo
2021-09-01 18:32 Sam James
2021-09-01  8:19 Agostino Sarubbo
2021-08-30  7:26 Agostino Sarubbo
2021-07-24 23:02 Marek Szuba
2021-06-12 19:17 David Seifert
2021-06-10  8:13 Joonas Niilola
2021-04-25  8:00 Michał Górny
2021-03-06 21:38 Sergei Trofimovich
2021-02-28 15:40 Sam James
2021-02-28 15:39 Sam James
2021-02-28 15:39 Sam James
2021-02-28 12:22 Sergei Trofimovich
2020-11-26  7:53 Joonas Niilola
2020-11-26  7:53 Joonas Niilola
2020-11-26  7:53 Joonas Niilola
2020-11-26  7:53 Joonas Niilola
2020-11-23 13:29 Joonas Niilola
2020-11-23 13:29 Joonas Niilola
2020-11-23 13:29 Joonas Niilola
2020-11-12 15:30 Sam James
2020-11-12 15:09 Sam James
2020-11-06  1:41 Georgy Yakovlev
2020-10-12  5:51 Joonas Niilola
2020-10-12  5:51 Joonas Niilola
2020-10-11  9:30 Joonas Niilola
2020-10-11  9:30 Joonas Niilola
2020-10-11  9:30 Joonas Niilola
2020-07-01 12:21 Michał Górny
2020-06-25  7:00 Agostino Sarubbo
2020-06-20 13:48 Thomas Deutschmann
2020-06-17 17:00 Joonas Niilola
2020-05-18  5:06 Jason A. Donenfeld
2020-05-18  5:00 Jason A. Donenfeld
2020-05-13 13:17 Joonas Niilola
2020-05-06  1:01 Thomas Deutschmann
2020-05-04 19:57 Mart Raudsepp
2020-03-04  8:09 Joonas Niilola
2020-03-04  8:09 Joonas Niilola
2020-02-26 16:17 Joonas Niilola
2020-02-26 16:17 Joonas Niilola
2020-02-23 18:37 Rick Farina
2019-12-21 15:06 Joonas Niilola
2019-12-08  8:41 Joonas Niilola
2019-01-11 18:05 Alon Bar-Lev
2018-12-31 22:10 Alon Bar-Lev
2018-12-31 19:34 Alon Bar-Lev
2018-12-31  5:54 Alon Bar-Lev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1716533570.e1bdd9fe492eb63a8a06d40d6a4ee34a39c72b24.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox