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 CEC9B15812D for ; Mon, 06 Jan 2025 21:57:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18765E07C7; Mon, 06 Jan 2025 21:57:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 0072FE07C7 for ; Mon, 06 Jan 2025 21:57:13 +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 30F44340906 for ; Mon, 06 Jan 2025 21:57:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C2E8AF3 for ; Mon, 06 Jan 2025 21:57: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: <1736200570.a0c549f2d2c9dd3d781c69d91b74b76103d74f15.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libdeflate/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/libdeflate/libdeflate-1.23.ebuild X-VCS-Directories: app-arch/libdeflate/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a0c549f2d2c9dd3d781c69d91b74b76103d74f15 X-VCS-Branch: master Date: Mon, 06 Jan 2025 21:57: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: 6daf7a78-4600-47ca-b57d-bf42e17fd09f X-Archives-Hash: 4d78b4d94c289b441d4595709a36efbe commit: a0c549f2d2c9dd3d781c69d91b74b76103d74f15 Author: Sam James gentoo org> AuthorDate: Mon Jan 6 21:56:10 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 6 21:56:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0c549f2 app-arch/libdeflate: add workaround for ifcombine bug No revbump given it only affects 2-3 snapshots of GCC 15 and will be fixed soon. Bug: https://gcc.gnu.org/PR118206 Closes: https://bugs.gentoo.org/946876 Signed-off-by: Sam James gentoo.org> app-arch/libdeflate/libdeflate-1.23.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-arch/libdeflate/libdeflate-1.23.ebuild b/app-arch/libdeflate/libdeflate-1.23.ebuild index d44e68b21d11..b2a16ab571fc 100644 --- a/app-arch/libdeflate/libdeflate-1.23.ebuild +++ b/app-arch/libdeflate/libdeflate-1.23.ebuild @@ -1,9 +1,9 @@ -# Copyright 2019-2024 Gentoo Authors +# Copyright 2019-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cmake-multilib +inherit cmake-multilib flag-o-matic toolchain-funcs DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression" HOMEPAGE="https://github.com/ebiggers/libdeflate" @@ -35,6 +35,9 @@ PATCHES=( ) src_configure() { + # Workaround for bug #946876 (gcc PR118206) + tc-is-gcc && [[ $(gcc-major-version) -eq 15 ]] && append-flags -fdisable-tree-ifcombine + local mycmakeargs=( -DLIBDEFLATE_BUILD_SHARED_LIB="yes" -DLIBDEFLATE_BUILD_STATIC_LIB="no"