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 EE53013835B for ; Fri, 28 May 2021 15:37:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AA8CE0A76; Fri, 28 May 2021 15:37:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1371DE0A76 for ; Fri, 28 May 2021 15:37:36 +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 49967340E51 for ; Fri, 28 May 2021 15:37:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5F0479A for ; Fri, 28 May 2021 15:37:33 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1622216230.c3d242fd5155ed928bf643d26fbbb283b5b89d3d.soap@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-r1.ebuild media-libs/opus/opus-1.3.1-r2.ebuild X-VCS-Directories: media-libs/opus/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c3d242fd5155ed928bf643d26fbbb283b5b89d3d X-VCS-Branch: master Date: Fri, 28 May 2021 15:37:33 +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: 545396e0-6df4-45ca-aa5e-19a4d9616db7 X-Archives-Hash: 1d4d521fde56030058809df389904fe7 commit: c3d242fd5155ed928bf643d26fbbb283b5b89d3d Author: Sam James gentoo org> AuthorDate: Fri May 28 15:37:10 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Fri May 28 15:37:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d242fd media-libs/opus: minor style changes Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> media-libs/opus/opus-1.3.1-r1.ebuild | 3 ++- media-libs/opus/opus-1.3.1-r2.ebuild | 10 ++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/media-libs/opus/opus-1.3.1-r1.ebuild b/media-libs/opus/opus-1.3.1-r1.ebuild index 4386d0bab3a..9f336ce55ee 100644 --- a/media-libs/opus/opus-1.3.1-r1.ebuild +++ b/media-libs/opus/opus-1.3.1-r1.ebuild @@ -27,6 +27,7 @@ multilib_src_configure() { $(use_enable static-libs static) ) + local i for i in ${INTRINSIC_FLAGS} ; do use ${i} && myeconfargs+=( --enable-intrinsics ) done @@ -39,6 +40,6 @@ multilib_src_configure() { } multilib_src_install_all() { - default + einstalldocs find "${ED}" -name "*.la" -delete || die } diff --git a/media-libs/opus/opus-1.3.1-r2.ebuild b/media-libs/opus/opus-1.3.1-r2.ebuild index ce65edada36..137c39a1d91 100644 --- a/media-libs/opus/opus-1.3.1-r2.ebuild +++ b/media-libs/opus/opus-1.3.1-r2.ebuild @@ -15,10 +15,12 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon" IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}" -BDEPEND="doc? ( +BDEPEND=" + doc? ( app-doc/doxygen media-gfx/graphviz - )" + ) +" PATCHES=( "${FILESDIR}"/${PN}-1.3.1-libdir-macro.patch @@ -40,13 +42,13 @@ multilib_src_configure() { done || myeconfargs+=( --disable-intrinsics ) if is-flagq -ffast-math || is-flagq -Ofast; then - myeconfargs+=( "--enable-float-approx" ) + myeconfargs+=( --enable-float-approx ) fi ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_install_all() { - default + einstalldocs find "${ED}" -name "*.la" -delete || die }