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 CC204158041 for ; Thu, 29 Feb 2024 07:34:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92EE8E2A41; Thu, 29 Feb 2024 07:34:15 +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 2C5EEE2A43 for ; Thu, 29 Feb 2024 07:34:15 +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 2253D343015 for ; Thu, 29 Feb 2024 07:34:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DDA9118C for ; Thu, 29 Feb 2024 07:34:12 +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: <1709192034.5d333828408e6230ce3a7aef9ce6fba2fb5ec945.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ragel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ragel/ragel-7.0.4-r3.ebuild X-VCS-Directories: dev-util/ragel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5d333828408e6230ce3a7aef9ce6fba2fb5ec945 X-VCS-Branch: master Date: Thu, 29 Feb 2024 07:34:12 +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: 94abca2a-c2ff-4307-8029-ca0919e89071 X-Archives-Hash: bbbb662d38444988f6fe679d94d6e3c1 commit: 5d333828408e6230ce3a7aef9ce6fba2fb5ec945 Author: Sam James gentoo org> AuthorDate: Thu Feb 29 07:29:44 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 29 07:33:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d333828 dev-util/ragel: filter LTO, no-SA ragel and colm are *very* fragile. Bug: https://bugs.gentoo.org/858341 Bug: https://bugs.gentoo.org/883993 Bug: https://bugs.gentoo.org/924163 Signed-off-by: Sam James gentoo.org> dev-util/ragel/ragel-7.0.4-r3.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-util/ragel/ragel-7.0.4-r3.ebuild b/dev-util/ragel/ragel-7.0.4-r3.ebuild index 4f1a3096a21c..7de8c2fa21d1 100644 --- a/dev-util/ragel/ragel-7.0.4-r3.ebuild +++ b/dev-util/ragel/ragel-7.0.4-r3.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="Compiles finite state machines from regular languages into executable code" HOMEPAGE="https://www.colm.net/open-source/ragel/" @@ -51,6 +51,11 @@ src_prepare() { } src_configure() { + # We need to be careful with both ragel and colm. + # See bug #858341, bug #883993 bug #924163. + filter-lto + append-flags -fno-strict-aliasing + econf \ --with-colm="${EPREFIX}/usr" \ $(use_enable doc manual)