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/faac/
Date: Fri, 08 Jan 2021 09:52:57
Message-Id: 1610099463.e804cebc451219555e782a2bb4f52090486d808a.fordfrog@gentoo
1 commit: e804cebc451219555e782a2bb4f52090486d808a
2 Author: John Helmert III <jchelmert3 <AT> posteo <DOT> net>
3 AuthorDate: Thu Jan 7 16:57:26 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 8 09:51:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e804cebc
7
8 media-libs/faac: security cleanup (drop <1.30)
9
10 Bug: https://bugs.gentoo.org/762505
11 Package-Manager: Portage-3.0.12, Repoman-3.0.2
12 Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 media-libs/faac/Manifest | 1 -
16 media-libs/faac/faac-1.29.9.2.ebuild | 36 ------------------------------------
17 2 files changed, 37 deletions(-)
18
19 diff --git a/media-libs/faac/Manifest b/media-libs/faac/Manifest
20 index da164472f3c..d5f0aa766df 100644
21 --- a/media-libs/faac/Manifest
22 +++ b/media-libs/faac/Manifest
23 @@ -1,2 +1 @@
24 -DIST faac-1.29.9.2.tar.gz 483826 BLAKE2B f845e75ec640f2a6ac41ad10dfdf1dbc6a6ddef3cb8cc3fe63450515f888343126cb2ec1df4c4eaaefed3d7d5d56249078f14363fcb9d9484228e9b1754a8b99 SHA512 71aaf060d087e866700a3a7c7d447e85709f65709e148610c4b34f5a3e095fa4a5c19f49450610949fd7db12345422b8a116a1d061899c127ad9a1bc30e79c7c
25 DIST faac-1_30.tar.gz 241750 BLAKE2B ee3cf1ad44c14ec289036c9a6f087df3a1cf81c9b0f60b6a2121f5badba3f3cab983001437bb6051ab2306c0e5e14ee8e3c9439116bd82c370f808d912ce2c13 SHA512 8582cd580dba2a347d15dc4fab42020d7120d0552c54ab74cfaf59ba1b270abb94c67e39d42459a14cbc6e98f3fd00cbda589e1b4f0c7278e41bdef6ae7b6554
26
27 diff --git a/media-libs/faac/faac-1.29.9.2.ebuild b/media-libs/faac/faac-1.29.9.2.ebuild
28 deleted file mode 100644
29 index edc55b53c91..00000000000
30 --- a/media-libs/faac/faac-1.29.9.2.ebuild
31 +++ /dev/null
32 @@ -1,36 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit autotools multilib-minimal
39 -
40 -DESCRIPTION="Free MPEG-4 audio codecs by AudioCoding.com"
41 -HOMEPAGE="https://www.audiocoding.com"
42 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="LGPL-2.1 MPEG-4"
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 -
48 -src_prepare() {
49 - default
50 - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #466984
51 - eautoreconf
52 -}
53 -
54 -multilib_src_configure() {
55 - ECONF_SOURCE="${S}" econf --disable-static
56 -
57 - # do not build the frontend for non-native abis
58 - if ! multilib_is_native_abi; then
59 - sed -i -e 's/frontend//' Makefile || die
60 - fi
61 -}
62 -
63 -multilib_src_install_all() {
64 - einstalldocs
65 -
66 - # no static archives
67 - find "${D}" -name '*.la' -delete || die
68 -}