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 D48F315817D for ; Sun, 23 Jun 2024 00:33:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21DFDE2AD4; Sun, 23 Jun 2024 00:33:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0610DE2AD4 for ; Sun, 23 Jun 2024 00:33:14 +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 16916340CA7 for ; Sun, 23 Jun 2024 00:33:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F18F158E for ; Sun, 23 Jun 2024 00:33:11 +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: <1719102709.4f2d0ee0d8bd592715e0997bfd3a1d4574c89ab0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/files/, media-libs/roc-toolkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/roc-toolkit/files/roc-toolkit-0.4.0-dont-force-O3.patch media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild X-VCS-Directories: media-libs/roc-toolkit/files/ media-libs/roc-toolkit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4f2d0ee0d8bd592715e0997bfd3a1d4574c89ab0 X-VCS-Branch: master Date: Sun, 23 Jun 2024 00:33:11 +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: 8d6c3e8e-5298-427d-a37e-8b202059c73d X-Archives-Hash: 63f1aa7dac589d89c7082c709f21a4b9 commit: 4f2d0ee0d8bd592715e0997bfd3a1d4574c89ab0 Author: Sam James gentoo org> AuthorDate: Sun Jun 23 00:31:49 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 23 00:31:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2d0ee0 media-libs/roc-toolkit: rebase build system patch Signed-off-by: Sam James gentoo.org> .../files/roc-toolkit-0.4.0-dont-force-O3.patch | 22 ++++++++++++++++++++++ media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/media-libs/roc-toolkit/files/roc-toolkit-0.4.0-dont-force-O3.patch b/media-libs/roc-toolkit/files/roc-toolkit-0.4.0-dont-force-O3.patch new file mode 100644 index 000000000000..7f069ffbd0da --- /dev/null +++ b/media-libs/roc-toolkit/files/roc-toolkit-0.4.0-dont-force-O3.patch @@ -0,0 +1,22 @@ +--- a/SConstruct ++++ b/SConstruct +@@ -972,7 +972,6 @@ if meta.compiler in ['gcc', 'clang']: + for var in ['CXXFLAGS', 'CFLAGS']: + env.Append(**{var: [ + '-fvisibility=hidden', +- '-O3', + ]}) + + if meta.compiler == 'gcc' and meta.compiler_ver[:2] < (4, 6): +@@ -990,10 +989,7 @@ if meta.compiler in ['cc']: + '-g', + ]}) + else: +- for var in ['CXXFLAGS', 'CFLAGS']: +- env.Append(**{var: [ +- '-O3', +- ]}) ++ pass + + for var in ['CXXFLAGS', 'CFLAGS']: + conf.env.Append(**{var: [ diff --git a/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild index 491eb7526b31..9fcb5e25b045 100644 --- a/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild +++ b/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild @@ -39,7 +39,7 @@ BDEPEND=" " PATCHES=( - "${FILESDIR}"/${PN}-0.2.5-dont-force-O3.patch + "${FILESDIR}"/${PN}-0.4.0-dont-force-O3.patch ) src_prepare() {