Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/faad2/
Date: Thu, 07 Jan 2021 11:33:34
Message-Id: 1610019197.f57b480c6aab7f40309a5f897496a8afa79e66da.sam@gentoo
1 commit: f57b480c6aab7f40309a5f897496a8afa79e66da
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 11:23:38 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 11:33:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f57b480c
7
8 media-libs/faad2: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/faad2/Manifest | 1 -
14 media-libs/faad2/faad2-2.9.2.ebuild | 52 -------------------------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/media-libs/faad2/Manifest b/media-libs/faad2/Manifest
18 index 06ff36d66d3..d336c036ade 100644
19 --- a/media-libs/faad2/Manifest
20 +++ b/media-libs/faad2/Manifest
21 @@ -1,2 +1 @@
22 DIST faad2-2.10.0.tar.gz 803225 BLAKE2B 73ecbcbb3fce93e8ceb88f6f7669bb681d2329935018cc2a23929cf6672959a0678b47c830cfdcf8e716709ce5252a02178737a7af09de373f7c8b54f38f3d9d SHA512 92c8b5e79f85b7a7caac9e7954959c26d74ef148a658dcb37e2c1b303fc2fcc5a0d12f21e7bd476870498109bdd03916a56c13f578186a69d6eceb103222e771
23 -DIST faad2-2.9.2.tar.gz 803100 BLAKE2B 093c629b81d976db760f02dc7945ae8caee66e2dc6d859499696e4978d4832c9592c2868bed575a39c778fd62f0b74fe5ee3a17b6ab22ec5c148b0dbcd7946c8 SHA512 996c279a56c6abde13da964b91d4ff87ac4c611e889f1dd59882fa3898093dec68ab0714cf106db10a5e24952e2d6dddc049ec9bf4f07ff68378a705d5debee2
24
25 diff --git a/media-libs/faad2/faad2-2.9.2.ebuild b/media-libs/faad2/faad2-2.9.2.ebuild
26 deleted file mode 100644
27 index 6eabfe0fa23..00000000000
28 --- a/media-libs/faad2/faad2-2.9.2.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools multilib-minimal
37 -
38 -MY_PV="$(ver_rs 1- _)"
39 -
40 -DESCRIPTION="AAC audio decoding library"
41 -HOMEPAGE="https://www.audiocoding.com/faad2.html"
42 -SRC_URI="https://github.com/knik0/faad2/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-2+"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
47 -IUSE="digitalradio static-libs"
48 -
49 -RDEPEND=""
50 -DEPEND=""
51 -
52 -DOCS=( AUTHORS ChangeLog NEWS README TODO )
53 -
54 -S="${WORKDIR}/${PN}-${MY_PV}"
55 -
56 -src_prepare() {
57 - default
58 -
59 - sed -i -e 's:iquote :I:' libfaad/Makefile.am || die
60 -
61 - eautoreconf
62 -}
63 -
64 -multilib_src_configure() {
65 - local myconf=(
66 - --without-xmms
67 - $(use_with digitalradio drm)
68 - $(use_enable static-libs static)
69 - )
70 -
71 - ECONF_SOURCE="${S}" econf "${myconf[@]}"
72 -
73 - # do not build the frontend for non default abis
74 - if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
75 - sed -i -e 's/frontend//' Makefile || die
76 - fi
77 -}
78 -
79 -multilib_src_install_all() {
80 - find "${ED}" -type f -name '*.la' -delete || die
81 - einstalldocs
82 -}