From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5DCFA158094 for ; Tue, 27 Sep 2022 21:44:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C18E7E0839; Tue, 27 Sep 2022 21:44:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB053E0839 for ; Tue, 27 Sep 2022 21:44:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3B921341118 for ; Tue, 27 Sep 2022 21:44:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF6CB5FD for ; Tue, 27 Sep 2022 21:44:47 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1664314956.2e558dc4ed09b71c9114b35e183eedcfd2b5bc61.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-tss/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/tpm2-tss/tpm2-tss-3.2.0-r4.ebuild X-VCS-Directories: app-crypt/tpm2-tss/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2e558dc4ed09b71c9114b35e183eedcfd2b5bc61 X-VCS-Branch: master Date: Tue, 27 Sep 2022 21:44:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 279af1ba-78e9-4fb6-93a2-a0b5661d5962 X-Archives-Hash: 33a7d0f9fd041333e406a35495fb25f6 commit: 2e558dc4ed09b71c9114b35e183eedcfd2b5bc61 Author: Christopher Byrne gmail com> AuthorDate: Mon Sep 26 21:33:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 27 21:42:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e558dc4 app-crypt/tpm2-tss: Filter out LTO flags due test failures Closes: https://bugs.gentoo.org/865279 Signed-off-by: Christopher Byrne gmail.com> Closes: https://github.com/gentoo/gentoo/pull/27482 Signed-off-by: Sam James gentoo.org> app-crypt/tpm2-tss/tpm2-tss-3.2.0-r4.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-crypt/tpm2-tss/tpm2-tss-3.2.0-r4.ebuild b/app-crypt/tpm2-tss/tpm2-tss-3.2.0-r4.ebuild index ff68e249a0e9..78d18901ba6d 100644 --- a/app-crypt/tpm2-tss/tpm2-tss-3.2.0-r4.ebuild +++ b/app-crypt/tpm2-tss/tpm2-tss-3.2.0-r4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools linux-info multilib-minimal tmpfiles udev +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" @@ -60,6 +60,9 @@ src_prepare() { } multilib_src_configure() { + # tests fail with LTO enabbled. See bug 865275 and 865279 + filter-lto + ECONF_SOURCE=${S} econf \ --localstatedir=/var \ $(multilib_native_use_enable doc doxygen-doc) \