From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 751B41582EF for ; Mon, 10 Mar 2025 05:37:24 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5C08E343128 for ; Mon, 10 Mar 2025 05:37:24 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5939C1102E0; Mon, 10 Mar 2025 05:37:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 bobolink.gentoo.org (Postfix) with ESMTPS id 4A63B1102E0 for ; Mon, 10 Mar 2025 05:37:23 +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 ED502343131 for ; Mon, 10 Mar 2025 05:37:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7784D129F for ; Mon, 10 Mar 2025 05:37:21 +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: <1741584905.95e5c1a810c42b6795748842b6fab7eadbd9abf0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openimageio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openimageio/openimageio-2.5.18.0.ebuild X-VCS-Directories: media-libs/openimageio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 95e5c1a810c42b6795748842b6fab7eadbd9abf0 X-VCS-Branch: master Date: Mon, 10 Mar 2025 05:37:21 +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: 5c1d6047-2386-42fc-8b2d-912d8251838a X-Archives-Hash: 74717a83d63ee0d7d5c2ddd9ee1a7322 commit: 95e5c1a810c42b6795748842b6fab7eadbd9abf0 Author: Sam James gentoo org> AuthorDate: Mon Mar 10 05:33:14 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 10 05:35:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95e5c1a8 media-libs/openimageio: drop GCC 15 workaround Fixed since Jan 20th (whatever snapshot was after that). Signed-off-by: Sam James gentoo.org> media-libs/openimageio/openimageio-2.5.18.0.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/media-libs/openimageio/openimageio-2.5.18.0.ebuild b/media-libs/openimageio/openimageio-2.5.18.0.ebuild index d8c259f1bc7f..573e5e385188 100644 --- a/media-libs/openimageio/openimageio-2.5.18.0.ebuild +++ b/media-libs/openimageio/openimageio-2.5.18.0.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{11..13} ) TEST_OIIO_IMAGE_COMMIT="7e6d875542b5bc1b2974b7cbecee115365a36527" TEST_OEXR_IMAGE_COMMIT="d45a2d5a890d6963b94479c7a644440068c37dd2" -inherit cmake flag-o-matic python-single-r1 toolchain-funcs virtualx +inherit cmake flag-o-matic python-single-r1 virtualx DESCRIPTION="A library for reading and writing images" HOMEPAGE="https://sites.google.com/site/openimageio/ https://github.com/OpenImageIO" @@ -184,11 +184,6 @@ src_configure() { # Even if there are no SIMD features selected, it seems like the code will turn on NEON support if it is available. use arm64 && append-flags -flax-vector-conversions - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118077 - if tc-is-gcc && [[ $(gcc-major-version) -eq 15 ]]; then - append-flags -fno-early-inlining - fi - local mycmakeargs=( -DVERBOSE="yes" -DINTERNALIZE_FMT="no"