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 B03DA158083 for ; Fri, 20 Sep 2024 06:20:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D63ADE29AA; Fri, 20 Sep 2024 06:20:27 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BCB25E29AA for ; Fri, 20 Sep 2024 06:20:27 +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 ED2323431CB for ; Fri, 20 Sep 2024 06:20:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D8DE1E6E for ; Fri, 20 Sep 2024 06:20:25 +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: <1726813108.f6d785e9cd9c36a555f73c6083c193c3879d6cce.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpng/libpng-1.6.44.ebuild X-VCS-Directories: media-libs/libpng/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f6d785e9cd9c36a555f73c6083c193c3879d6cce X-VCS-Branch: master Date: Fri, 20 Sep 2024 06:20:25 +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: d5467bb9-a9e1-46b4-829e-c1024b9da29f X-Archives-Hash: 133ae9a124f225136967d0d132fa5a22 commit: f6d785e9cd9c36a555f73c6083c193c3879d6cce Author: Sam James gentoo org> AuthorDate: Fri Sep 20 06:18:28 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 20 06:18:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d785e9 media-libs/libpng: drop cpu_flags_arm_neon With >=1.6.44, it fails to build in some cases, but it wasn't recommended anyway. configure warns about the use of --enable-arm-neon. Just rely on what *FLAGS specify. Thanks to John Bowler for the analysis. Closes: https://bugs.gentoo.org/939819 Signed-off-by: Sam James gentoo.org> media-libs/libpng/libpng-1.6.44.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/media-libs/libpng/libpng-1.6.44.ebuild b/media-libs/libpng/libpng-1.6.44.ebuild index 2cf06113dcc7..b5669bf7bc5c 100644 --- a/media-libs/libpng/libpng-1.6.44.ebuild +++ b/media-libs/libpng/libpng-1.6.44.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="libpng2" SLOT="0/16" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="apng cpu_flags_arm_neon cpu_flags_x86_sse static-libs test" +IUSE="apng cpu_flags_x86_sse static-libs test" RESTRICT="!test? ( test )" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]" @@ -55,7 +55,6 @@ multilib_src_configure() { local myeconfargs=( $(multilib_native_enable tools) $(use_enable test tests) - $(use_enable cpu_flags_arm_neon arm-neon) $(use_enable cpu_flags_x86_sse intel-sse) $(use_enable static-libs static) )