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 67F8115808D for ; Sat, 23 Apr 2022 01:22:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 194A3E0864; Sat, 23 Apr 2022 01:21:53 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08637E0844 for ; Sat, 23 Apr 2022 01:21:52 +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 895DB341A64 for ; Sat, 23 Apr 2022 01:21:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 017D13BE for ; Sat, 23 Apr 2022 01:21:46 +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: <1650676805.b81fb8d368376faefc0d71a15c44d1cfd9d8dab1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opus/opus-1.3.1-r2.ebuild media-libs/opus/opus-1.3.1-r3.ebuild X-VCS-Directories: media-libs/opus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b81fb8d368376faefc0d71a15c44d1cfd9d8dab1 X-VCS-Branch: master Date: Sat, 23 Apr 2022 01:21:46 +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: bb98a760-64d3-46b2-9def-fa3c1d158e8c X-Archives-Hash: 5e9f10fa3ecacbad3e6533e5de4499bf commit: b81fb8d368376faefc0d71a15c44d1cfd9d8dab1 Author: Dustin Smith gmail com> AuthorDate: Fri Apr 22 02:22:08 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 23 01:20:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b81fb8d3 media-libs/opus: fix word split issue in ebuild shellbugbot points out an issue with shellcheck where $INTRINSIC_FLAGS won't be split on space because of the double quoting. If I am reading the ebuild correctly, then "use" is receiving one big argument "cpu_flags_x86_sse cpu_flags_arm_neon" in just one iteration. This commit just removes the double quotes to fix this. Bug: https://bugs.gentoo.org/839222 Closes: https://github.com/gentoo/gentoo/pull/25147 Signed-off-by: Dustin Smith gmail.com> Signed-off-by: Sam James gentoo.org> media-libs/opus/{opus-1.3.1-r2.ebuild => opus-1.3.1-r3.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/opus/opus-1.3.1-r2.ebuild b/media-libs/opus/opus-1.3.1-r3.ebuild similarity index 97% rename from media-libs/opus/opus-1.3.1-r2.ebuild rename to media-libs/opus/opus-1.3.1-r3.ebuild index 10c7e4876985..e250256c7441 100644 --- a/media-libs/opus/opus-1.3.1-r2.ebuild +++ b/media-libs/opus/opus-1.3.1-r3.ebuild @@ -37,7 +37,7 @@ multilib_src_configure() { # We want to disable intrinsics if no flags are enabled # (This is a fun Bash construct to do that!) # bug #752069 - for i in "${INTRINSIC_FLAGS}" ; do + for i in ${INTRINSIC_FLAGS} ; do use ${i} && myeconfargs+=( --enable-intrinsics ) && break done || myeconfargs+=( --disable-intrinsics )