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 3A515158083 for ; Thu, 5 Sep 2024 02:12:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87FD0E2A5B; Thu, 5 Sep 2024 02:12:29 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7301DE2A5B for ; Thu, 5 Sep 2024 02:12:29 +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 B6A42340906 for ; Thu, 5 Sep 2024 02:12:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C61E1F37 for ; Thu, 5 Sep 2024 02:12:26 +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: <1725502288.b59d6e9a2802164a7e79099c45d0e96d2ed7f379.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openpgl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openpgl/openpgl-0.5.0-r1.ebuild X-VCS-Directories: media-libs/openpgl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b59d6e9a2802164a7e79099c45d0e96d2ed7f379 X-VCS-Branch: master Date: Thu, 5 Sep 2024 02:12:26 +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: c1fedf1a-39c9-4134-9a3a-a23b6ef67ad9 X-Archives-Hash: ac4e35250afc5331e596802619d71bfb commit: b59d6e9a2802164a7e79099c45d0e96d2ed7f379 Author: Paul Zander gmail com> AuthorDate: Mon Sep 2 14:20:30 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 5 02:11:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59d6e9a media-libs/openpgl: backport Fix arm64 cpuflags Signed-off-by: Paul Zander gmail.com> Signed-off-by: Sam James gentoo.org> media-libs/openpgl/openpgl-0.5.0-r1.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/media-libs/openpgl/openpgl-0.5.0-r1.ebuild b/media-libs/openpgl/openpgl-0.5.0-r1.ebuild index 4d0f448a2d7a..d4f48937ffda 100644 --- a/media-libs/openpgl/openpgl-0.5.0-r1.ebuild +++ b/media-libs/openpgl/openpgl-0.5.0-r1.ebuild @@ -14,12 +14,11 @@ SLOT="0/$(ver_cut 1-2)" KEYWORDS="-* amd64 ~arm64" X86_CPU_FLAGS=( sse4_2 avx2 avx512dq ) -CPU_FLAGS=( cpu_flags_arm_neon "${X86_CPU_FLAGS[@]/#/cpu_flags_x86_}" ) +CPU_FLAGS=( "${X86_CPU_FLAGS[@]/#/cpu_flags_x86_}" ) IUSE="${CPU_FLAGS[*]} debug" REQUIRED_USE=" amd64? ( || ( ${X86_CPU_FLAGS[*]/#/cpu_flags_x86_} ) ) - arm64? ( cpu_flags_arm_neon ) " RDEPEND=" @@ -40,13 +39,13 @@ src_configure() { -DOPENPGL_ISA_SSE4="$(usex cpu_flags_x86_sse4_2)" -DOPENPGL_ISA_AVX2="$(usex cpu_flags_x86_avx2)" -DOPENPGL_ISA_AVX512="$(usex cpu_flags_x86_avx512dq)" - -DOPENPGL_ISA_NEON="$(usex cpu_flags_arm_neon)" + -DOPENPGL_ISA_NEON="$(usex arm64)" # TODO look into neon 2x support # -DOPENPGL_ISA_NEON2X="$(usex cpu_flags_arm_neon2x)" ) # This is currently needed on arm64 to get the NEON SIMD wrapper to compile the code successfully - use cpu_flags_arm_neon && append-flags -flax-vector-conversions + use arm64 && append-flags -flax-vector-conversions # Disable asserts append-cppflags "$(usex debug '' '-DNDEBUG')"