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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E3351382C5 for ; Wed, 14 Apr 2021 06:46:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD414E0B65; Wed, 14 Apr 2021 06:46:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B57C4E0B65 for ; Wed, 14 Apr 2021 06:46:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 149E133BDC9 for ; Wed, 14 Apr 2021 06:46:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68C9F64B for ; Wed, 14 Apr 2021 06:46:54 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1618382794.c0f0a5f1b35c2e09bd32eff150674305673e2d81.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpng-compat/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpng-compat/libpng-compat-1.5.30.ebuild X-VCS-Directories: media-libs/libpng-compat/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c0f0a5f1b35c2e09bd32eff150674305673e2d81 X-VCS-Branch: master Date: Wed, 14 Apr 2021 06:46:54 +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: 7fecf29e-1d7a-4881-b04e-c80a74f9a8fc X-Archives-Hash: a94b5777e007942afce9aa5724f6e9c7 commit: c0f0a5f1b35c2e09bd32eff150674305673e2d81 Author: Sam James gentoo org> AuthorDate: Wed Apr 14 00:31:02 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Apr 14 06:46:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0f0a5f1 media-libs/libpng-compat: use cpu_flags_arm_neon, not 'neon' in USE USE="neon" is deprecated and shouldn't be used. Closes: https://bugs.gentoo.org/782733 Signed-off-by: Sam James gentoo.org> Signed-off-by: Lars Wendler gentoo.org> media-libs/libpng-compat/libpng-compat-1.5.30.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/libpng-compat/libpng-compat-1.5.30.ebuild b/media-libs/libpng-compat/libpng-compat-1.5.30.ebuild index 9d75a935744..ff778abc777 100644 --- a/media-libs/libpng-compat/libpng-compat-1.5.30.ebuild +++ b/media-libs/libpng-compat/libpng-compat-1.5.30.ebuild @@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="libpng" SLOT="1.5" KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" -IUSE="apng neon" +IUSE="apng cpu_flags_arm_neon" RDEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}] !=media-libs/libpng-1.5*" @@ -47,7 +47,7 @@ src_prepare() { multilib_src_configure() { local myeconfargs=( --disable-static - --enable-arm-neon="$(usex neon)" + $(use_enable cpu_flags_arm_neon arm-neon check) ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" }