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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28250158042 for ; Thu, 24 Oct 2024 09:37:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDB5DE0976; Thu, 24 Oct 2024 09:37:20 +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 9A63FE0976 for ; Thu, 24 Oct 2024 09:37:20 +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 3276633FE60 for ; Thu, 24 Oct 2024 09:37:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CA5C10BB for ; Thu, 24 Oct 2024 09:37:15 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1729762464.897831538c5699aa4dcfe53e85f01fb6a913430d.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-26.3-r19.ebuild app-editors/emacs/emacs-27.2-r17.ebuild app-editors/emacs/emacs-28.2-r13.ebuild app-editors/emacs/emacs-29.4.ebuild app-editors/emacs/emacs-30.0.91.ebuild app-editors/emacs/emacs-30.0.9999-r1.ebuild app-editors/emacs/emacs-31.0.9999.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 897831538c5699aa4dcfe53e85f01fb6a913430d X-VCS-Branch: master Date: Thu, 24 Oct 2024 09:37:15 +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: bfe03bde-6bc0-4402-bf17-acdadd9085df X-Archives-Hash: 89ac9f833b5d67dab1717036f00c6023 commit: 897831538c5699aa4dcfe53e85f01fb6a913430d Author: Ulrich Müller gentoo org> AuthorDate: Thu Oct 10 17:31:51 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Oct 24 09:34:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89783153 app-editors/emacs: Restore replacing -O[3-9] by -O2 in CFLAGS This partially reverts commit 4ca8019087aab182e0f3f1211f235f128d537b8a. Bug: https://bugs.gentoo.org/839405 Closes: https://bugs.gentoo.org/941225 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-26.3-r19.ebuild | 3 ++- app-editors/emacs/emacs-27.2-r17.ebuild | 4 +++- app-editors/emacs/emacs-28.2-r13.ebuild | 4 +++- app-editors/emacs/emacs-29.4.ebuild | 4 +++- app-editors/emacs/emacs-30.0.91.ebuild | 4 +++- app-editors/emacs/emacs-30.0.9999-r1.ebuild | 4 +++- app-editors/emacs/emacs-31.0.9999.ebuild | 4 +++- 7 files changed, 20 insertions(+), 7 deletions(-) diff --git a/app-editors/emacs/emacs-26.3-r19.ebuild b/app-editors/emacs/emacs-26.3-r19.ebuild index 1fb9cb7f2f7f..4fce2690b4f9 100644 --- a/app-editors/emacs/emacs-26.3-r19.ebuild +++ b/app-editors/emacs/emacs-26.3-r19.ebuild @@ -119,9 +119,10 @@ src_prepare() { src_configure() { strip-flags filter-flags -pie #526948 - replace-flags "-O[3-9]" -O2 + replace-flags "-O[3-9]" -O2 #839405 # We want floating-point arithmetic to be correct #933380 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf diff --git a/app-editors/emacs/emacs-27.2-r17.ebuild b/app-editors/emacs/emacs-27.2-r17.ebuild index db9b0cc4c050..cb1eb9824a1f 100644 --- a/app-editors/emacs/emacs-27.2-r17.ebuild +++ b/app-editors/emacs/emacs-27.2-r17.ebuild @@ -160,8 +160,10 @@ src_prepare() { } src_configure() { + replace-flags "-O[3-9]" -O2 #839405 + # We want floating-point arithmetic to be correct #933380 - replace-flags -Ofast -O3 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf diff --git a/app-editors/emacs/emacs-28.2-r13.ebuild b/app-editors/emacs/emacs-28.2-r13.ebuild index f7e8fa9848ff..7af80421f66d 100644 --- a/app-editors/emacs/emacs-28.2-r13.ebuild +++ b/app-editors/emacs/emacs-28.2-r13.ebuild @@ -184,8 +184,10 @@ src_prepare() { } src_configure() { + replace-flags "-O[3-9]" -O2 #839405 + # We want floating-point arithmetic to be correct #933380 - replace-flags -Ofast -O3 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf diff --git a/app-editors/emacs/emacs-29.4.ebuild b/app-editors/emacs/emacs-29.4.ebuild index e5cacab45886..e8ff177693e1 100644 --- a/app-editors/emacs/emacs-29.4.ebuild +++ b/app-editors/emacs/emacs-29.4.ebuild @@ -216,8 +216,10 @@ src_prepare() { } src_configure() { + replace-flags "-O[3-9]" -O2 #839405 + # We want floating-point arithmetic to be correct #933380 - replace-flags -Ofast -O3 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf diff --git a/app-editors/emacs/emacs-30.0.91.ebuild b/app-editors/emacs/emacs-30.0.91.ebuild index b151a0271ab1..3c000ffedb94 100644 --- a/app-editors/emacs/emacs-30.0.91.ebuild +++ b/app-editors/emacs/emacs-30.0.91.ebuild @@ -213,8 +213,10 @@ src_prepare() { } src_configure() { + replace-flags "-O[3-9]" -O2 #839405 + # We want floating-point arithmetic to be correct #933380 - replace-flags -Ofast -O3 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf diff --git a/app-editors/emacs/emacs-30.0.9999-r1.ebuild b/app-editors/emacs/emacs-30.0.9999-r1.ebuild index b151a0271ab1..3c000ffedb94 100644 --- a/app-editors/emacs/emacs-30.0.9999-r1.ebuild +++ b/app-editors/emacs/emacs-30.0.9999-r1.ebuild @@ -213,8 +213,10 @@ src_prepare() { } src_configure() { + replace-flags "-O[3-9]" -O2 #839405 + # We want floating-point arithmetic to be correct #933380 - replace-flags -Ofast -O3 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf diff --git a/app-editors/emacs/emacs-31.0.9999.ebuild b/app-editors/emacs/emacs-31.0.9999.ebuild index 37f94d0002ec..33390f3a6274 100644 --- a/app-editors/emacs/emacs-31.0.9999.ebuild +++ b/app-editors/emacs/emacs-31.0.9999.ebuild @@ -213,8 +213,10 @@ src_prepare() { } src_configure() { + replace-flags "-O[3-9]" -O2 #839405 + # We want floating-point arithmetic to be correct #933380 - replace-flags -Ofast -O3 + replace-flags -Ofast -O2 append-flags -fno-fast-math -ffp-contract=off local myconf