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 0F8631582EF for ; Mon, 10 Mar 2025 02:45:57 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id EFAC2343087 for ; Mon, 10 Mar 2025 02:45:56 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E8796110370; Mon, 10 Mar 2025 02:45:55 +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 bobolink.gentoo.org (Postfix) with ESMTPS id DD162110370 for ; Mon, 10 Mar 2025 02:45:55 +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 8B21734310A for ; Mon, 10 Mar 2025 02:45:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1EE4122C for ; Mon, 10 Mar 2025 02:45:53 +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: <1741574383.c2e5b53ef71e7cc36b65cd5fc310607872ed34a1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libfpx/libfpx-1.3.1_p10-r1.ebuild X-VCS-Directories: media-libs/libfpx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c2e5b53ef71e7cc36b65cd5fc310607872ed34a1 X-VCS-Branch: master Date: Mon, 10 Mar 2025 02:45:53 +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: da1ffbb9-3281-473f-9daa-4295b4b01c09 X-Archives-Hash: 19a208c266bf9fd3777e60f6defc87bc commit: c2e5b53ef71e7cc36b65cd5fc310607872ed34a1 Author: Z. Liu gmail com> AuthorDate: Fri Dec 13 05:38:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 10 02:39:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2e5b53e media-libs/libfpx: workaround to fix build with clang 19 had been fixed by upstream but patch is too large Closes: https://bugs.gentoo.org/896246 Signed-off-by: Z. Liu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/40782 Signed-off-by: Sam James gentoo.org> media-libs/libfpx/libfpx-1.3.1_p10-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-libs/libfpx/libfpx-1.3.1_p10-r1.ebuild b/media-libs/libfpx/libfpx-1.3.1_p10-r1.ebuild index 59235c4ea6ef..a06152cd7dc0 100644 --- a/media-libs/libfpx/libfpx-1.3.1_p10-r1.ebuild +++ b/media-libs/libfpx/libfpx-1.3.1_p10-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -38,6 +38,11 @@ src_configure() { append-flags -fno-strict-aliasing filter-lto + # https://bugs.gentoo.org/896246 + # already fixed by upstream but the patch is too large, waiting for new releases + # https://github.com/ImageMagick/libfpx/commit/5f340b0a490450b40302cc9948c7dfac60d40041 + append-cxxflags -std=gnu++14 + append-ldflags -Wl,--no-undefined econf \ $(use_enable static-libs static) \