Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/
Date: Sun, 13 Jun 2021 06:41:30
Message-Id: 1623566479.4ede9199cc4ee194377eed6c31c904c3462e249f.fordfrog@gentoo
1 commit: 4ede9199cc4ee194377eed6c31c904c3462e249f
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 13 06:41:19 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 13 06:41:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ede9199
7
8 media-libs/opus: removed obsolete 1.3.1-r1
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/opus/opus-1.3.1-r1.ebuild | 45 ------------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/media-libs/opus/opus-1.3.1-r1.ebuild b/media-libs/opus/opus-1.3.1-r1.ebuild
17 deleted file mode 100644
18 index 9f336ce55ee..00000000000
19 --- a/media-libs/opus/opus-1.3.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit flag-o-matic multilib-minimal
28 -
29 -DESCRIPTION="Open codec for interactive speech and music transmission over the Internet"
30 -HOMEPAGE="https://opus-codec.org/"
31 -SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz"
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
36 -INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon"
37 -IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}"
38 -
39 -BDEPEND="doc? (
40 - app-doc/doxygen
41 - media-gfx/graphviz
42 - )"
43 -
44 -multilib_src_configure() {
45 - local myeconfargs=(
46 - $(use_enable custom-modes)
47 - $(use_enable doc)
48 - $(use_enable static-libs static)
49 - )
50 -
51 - local i
52 - for i in ${INTRINSIC_FLAGS} ; do
53 - use ${i} && myeconfargs+=( --enable-intrinsics )
54 - done
55 -
56 - if is-flagq -ffast-math || is-flagq -Ofast; then
57 - myeconfargs+=( "--enable-float-approx" )
58 - fi
59 -
60 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
61 -}
62 -
63 -multilib_src_install_all() {
64 - einstalldocs
65 - find "${ED}" -name "*.la" -delete || die
66 -}