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 37095158091 for ; Fri, 11 Feb 2022 23:17:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41764E08EC; Fri, 11 Feb 2022 23:17:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 20031E08CE for ; Fri, 11 Feb 2022 23:17:04 +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 9DB38342DAC for ; Fri, 11 Feb 2022 23:17:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E34D42E1 for ; Fri, 11 Feb 2022 23:16:59 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1644621237.7a032c929dd470bf0af3782f7c985659b3fbbed0.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/dxx-rebirth/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild games-action/dxx-rebirth/dxx-rebirth-9999.ebuild X-VCS-Directories: games-action/dxx-rebirth/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 7a032c929dd470bf0af3782f7c985659b3fbbed0 X-VCS-Branch: master Date: Fri, 11 Feb 2022 23:16:59 +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: 6d1d67b4-a099-48f0-a7c7-e89d87de60b5 X-Archives-Hash: c8b09ad6ec459f8d03511e3b4e86840b commit: 7a032c929dd470bf0af3782f7c985659b3fbbed0 Author: Ionen Wolkens gentoo org> AuthorDate: Fri Feb 11 22:03:24 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Feb 11 23:13:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a032c92 games-action/dxx-rebirth: replace -O3 by -O2 Currently fails with -O3, haven't investigated further but do a replace-flags as a quick workaround. Closes: https://bugs.gentoo.org/831896 Signed-off-by: Ionen Wolkens gentoo.org> games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild | 3 ++- games-action/dxx-rebirth/dxx-rebirth-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild index 90a8b6d8c8ef..3dc11a9d646a 100644 --- a/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild +++ b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) -inherit desktop python-any-r1 scons-utils toolchain-funcs xdg +inherit desktop flag-o-matic python-any-r1 scons-utils toolchain-funcs xdg if [[ "${PV}" = 9999 ]]; then inherit git-r3 @@ -217,6 +217,7 @@ dxx_scons() { src_compile() { tc-export CXX PKG_CONFIG + replace-flags -O3 -O2 #831896 dxx_scons register_install_target=0 build } diff --git a/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild b/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild index ed7efde84b19..e73e35686d41 100644 --- a/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild +++ b/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) -inherit desktop python-any-r1 scons-utils toolchain-funcs xdg +inherit desktop flag-o-matic python-any-r1 scons-utils toolchain-funcs xdg if [[ "${PV}" = 9999 ]]; then inherit git-r3 @@ -219,6 +219,7 @@ dxx_scons() { src_compile() { tc-export CXX PKG_CONFIG + replace-flags -O3 -O2 #831896 dxx_scons register_install_target=0 build }