Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/
Date: Mon, 10 Feb 2020 15:37:30
Message-Id: 1581349028.f9c8c2bd177b166ea1b50120c87fa3196a7cfcc9.soap@gentoo
1 commit: f9c8c2bd177b166ea1b50120c87fa3196a7cfcc9
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 10 15:37:08 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 10 15:37:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9c8c2bd
7
8 media-libs/opus: Remove old
9
10 Bug: https://bugs.gentoo.org/708322
11 Package-Manager: Portage-2.3.88, Repoman-2.3.20
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 media-libs/opus/Manifest | 1 -
15 media-libs/opus/opus-1.3.1.ebuild | 38 -----------------------------
16 media-libs/opus/opus-1.3.ebuild | 51 ---------------------------------------
17 3 files changed, 90 deletions(-)
18
19 diff --git a/media-libs/opus/Manifest b/media-libs/opus/Manifest
20 index b573688fde2..37fa03dee13 100644
21 --- a/media-libs/opus/Manifest
22 +++ b/media-libs/opus/Manifest
23 @@ -1,2 +1 @@
24 DIST opus-1.3.1.tar.gz 1040054 BLAKE2B e0aab38518938157a6ef27307f52d9d3f9c12a2fef4c7e5b4168c2f6fc04d79e333ebe477059b3e6a0518fcf6aa089b5eb1c8de68d83474e237c0f73e5a221cb SHA512 6cd5e4d8a0551ed5fb59488c07a5cc18a241d1fde5f9eb9f16cd4e77abcdb4134dd51ad1d737be1e6039bfa56912510b8648152f2478a1f21c7c1d9ce32933cd
25 -DIST opus-1.3.tar.gz 1032750 BLAKE2B 7c79cecb957b0353e35758989b07502f2d4531869985639a069dec8737c15061b56ebff5babe31ad316afa9f7787bde6a7c544fa5be10c1e02ccfdff1a80d5c7 SHA512 438635667e72c326d6d06a30e0b3a5564ba6cf5d484066456e1118e1c2fe3a61b959d0afa77a1084b177b72f9230618b6b55c78bc4e24e9127a09fd345b42518
26
27 diff --git a/media-libs/opus/opus-1.3.1.ebuild b/media-libs/opus/opus-1.3.1.ebuild
28 deleted file mode 100644
29 index eeda2865a89..00000000000
30 --- a/media-libs/opus/opus-1.3.1.ebuild
31 +++ /dev/null
32 @@ -1,38 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit multilib-minimal
39 -
40 -DESCRIPTION="Open codec for interactive speech and music transmission over the Internet"
41 -HOMEPAGE="https://opus-codec.org/"
42 -SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
47 -INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon"
48 -IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}"
49 -
50 -DEPEND="doc? (
51 - app-doc/doxygen
52 - media-gfx/graphviz
53 - )"
54 -
55 -multilib_src_configure() {
56 - local myeconfargs=(
57 - $(use_enable custom-modes)
58 - $(use_enable doc)
59 - $(use_enable static-libs static)
60 - )
61 - for i in ${INTRINSIC_FLAGS} ; do
62 - use ${i} && myeconfargs+=( --enable-intrinsics )
63 - done
64 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
65 -}
66 -
67 -multilib_src_install_all() {
68 - default
69 - find "${ED}" -name "*.la" -delete || die
70 -}
71
72 diff --git a/media-libs/opus/opus-1.3.ebuild b/media-libs/opus/opus-1.3.ebuild
73 deleted file mode 100644
74 index 758b0ac2e0b..00000000000
75 --- a/media-libs/opus/opus-1.3.ebuild
76 +++ /dev/null
77 @@ -1,51 +0,0 @@
78 -# Copyright 1999-2019 Gentoo Authors
79 -# Distributed under the terms of the GNU General Public License v2
80 -
81 -EAPI=7
82 -
83 -MY_P="${P/_/-}"
84 -inherit multilib-minimal
85 -
86 -if [[ ${PV} == *9999 ]] ; then
87 - inherit git-r3
88 - EGIT_REPO_URI="https://git.xiph.org/opus.git"
89 -else
90 - SRC_URI="https://archive.mozilla.org/pub/opus/${MY_P}.tar.gz"
91 - if [[ "${PV}" != *_alpha* ]] && [[ "${PV}" != *_beta* ]] ; then
92 - KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
93 - fi
94 -fi
95 -
96 -DESCRIPTION="Open codec designed for internet transmission of interactive speech and audio"
97 -HOMEPAGE="https://opus-codec.org/"
98 -
99 -LICENSE="BSD"
100 -SLOT="0"
101 -INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon"
102 -IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}"
103 -
104 -DEPEND="
105 - doc? (
106 - app-doc/doxygen
107 - media-gfx/graphviz
108 - )
109 -"
110 -
111 -S="${WORKDIR}/${MY_P}"
112 -
113 -multilib_src_configure() {
114 - local myeconfargs=(
115 - $(use_enable custom-modes)
116 - $(use_enable doc)
117 - $(use_enable static-libs static)
118 - )
119 - for i in ${INTRINSIC_FLAGS} ; do
120 - use ${i} && myeconfargs+=( --enable-intrinsics )
121 - done
122 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
123 -}
124 -
125 -multilib_src_install_all() {
126 - default
127 - find "${ED}" -name "*.la" -delete || die
128 -}