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 032511382C5 for ; Sun, 13 Jun 2021 06:41:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A554E0984; Sun, 13 Jun 2021 06:41:29 +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 2DA9CE0984 for ; Sun, 13 Jun 2021 06:41:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 ECC8F335CEF for ; Sun, 13 Jun 2021 06:41:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7770978A for ; Sun, 13 Jun 2021 06:41:26 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1623566479.4ede9199cc4ee194377eed6c31c904c3462e249f.fordfrog@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 X-VCS-Directories: media-libs/opus/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4ede9199cc4ee194377eed6c31c904c3462e249f X-VCS-Branch: master Date: Sun, 13 Jun 2021 06:41: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: 3c3f8585-3372-4f01-8c81-9de23c0c3de3 X-Archives-Hash: 2f5b6f145611515731377b368cce5c69 commit: 4ede9199cc4ee194377eed6c31c904c3462e249f Author: Miroslav Šulc gentoo org> AuthorDate: Sun Jun 13 06:41:19 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Jun 13 06:41:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ede9199 media-libs/opus: removed obsolete 1.3.1-r1 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/opus/opus-1.3.1-r1.ebuild | 45 ------------------------------------ 1 file changed, 45 deletions(-) diff --git a/media-libs/opus/opus-1.3.1-r1.ebuild b/media-libs/opus/opus-1.3.1-r1.ebuild deleted file mode 100644 index 9f336ce55ee..00000000000 --- a/media-libs/opus/opus-1.3.1-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic multilib-minimal - -DESCRIPTION="Open codec for interactive speech and music transmission over the Internet" -HOMEPAGE="https://opus-codec.org/" -SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -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? ( - app-doc/doxygen - media-gfx/graphviz - )" - -multilib_src_configure() { - local myeconfargs=( - $(use_enable custom-modes) - $(use_enable doc) - $(use_enable static-libs static) - ) - - local i - for i in ${INTRINSIC_FLAGS} ; do - use ${i} && myeconfargs+=( --enable-intrinsics ) - done - - if is-flagq -ffast-math || is-flagq -Ofast; then - myeconfargs+=( "--enable-float-approx" ) - fi - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - einstalldocs - find "${ED}" -name "*.la" -delete || die -}