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 1CDAB158041 for ; Thu, 14 Mar 2024 05:21:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0918FE29BC; Thu, 14 Mar 2024 05:21:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E18F7E29BC for ; Thu, 14 Mar 2024 05:21:53 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC43E33BE18 for ; Thu, 14 Mar 2024 05:21:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 250C81504 for ; Thu, 14 Mar 2024 05:21:51 +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: <1710393685.1cdb73d333da91b0634fcdd1410d87d117e4da2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild dev-libs/libmcrypt/libmcrypt-2.5.8-r7.ebuild X-VCS-Directories: dev-libs/libmcrypt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1cdb73d333da91b0634fcdd1410d87d117e4da2a X-VCS-Branch: master Date: Thu, 14 Mar 2024 05:21:51 +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: fa6df1d8-1268-4164-a361-3d54720f5c73 X-Archives-Hash: 9993dc17c3767a703be17c5ddfeeaea7 commit: 1cdb73d333da91b0634fcdd1410d87d117e4da2a Author: Sam James gentoo org> AuthorDate: Thu Mar 14 03:31:48 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 05:21:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cdb73d3 dev-libs/libmcrypt: filter LTO, no-SA Dead upstream, LTO type mismatch. Closes: https://bugs.gentoo.org/924867 Signed-off-by: Sam James gentoo.org> dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild | 12 ++++++++++-- dev-libs/libmcrypt/libmcrypt-2.5.8-r7.ebuild | 10 +++++++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild b/dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild index 040220a1d88a..592c4a66ef6e 100644 --- a/dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild +++ b/dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Provides an uniform interface to access several encryption algorithms" HOMEPAGE="https://mcrypt.sourceforge.net" @@ -36,6 +36,14 @@ src_prepare() { eautoreconf # update stale autotools } +src_configure() { + # LTO type mismatch (bug #924867) + append-flags -fno-strict-aliasing + filter-lto + + default +} + src_install() { default find "${ED}" -type f -name '*.la' -delete || die diff --git a/dev-libs/libmcrypt/libmcrypt-2.5.8-r7.ebuild b/dev-libs/libmcrypt/libmcrypt-2.5.8-r7.ebuild index a09a112ad33b..f376df81912c 100644 --- a/dev-libs/libmcrypt/libmcrypt-2.5.8-r7.ebuild +++ b/dev-libs/libmcrypt/libmcrypt-2.5.8-r7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Provides an uniform interface to access several encryption algorithms" HOMEPAGE="https://mcrypt.sourceforge.net" @@ -39,6 +39,14 @@ src_prepare() { eautoreconf # update stale autotools } +src_configure() { + # LTO type mismatch (bug #924867) + append-flags -fno-strict-aliasing + filter-lto + + default +} + src_install() { default find "${ED}" -type f -name '*.la' -delete || die