diff options
author | Mart Raudsepp <leio@gentoo.org> | 2019-06-21 00:13:48 +0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2019-06-21 00:27:48 +0300 |
commit | a889df3b2f31ca7e25669fe406c5dc110e5d202d (patch) | |
tree | 2e74ba5d74228fd9efcdfd63b36fffcd6188b93c /media-plugins/gst-plugins-faad | |
parent | media-plugins/gst-plugins-flac: remove gstreamer 0.10 (diff) | |
download | gentoo-a889df3b2f31ca7e25669fe406c5dc110e5d202d.tar.gz gentoo-a889df3b2f31ca7e25669fe406c5dc110e5d202d.tar.bz2 gentoo-a889df3b2f31ca7e25669fe406c5dc110e5d202d.zip |
media-plugins/gst-plugins-faad: remove gstreamer 0.10
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'media-plugins/gst-plugins-faad')
3 files changed, 0 insertions, 58 deletions
diff --git a/media-plugins/gst-plugins-faad/Manifest b/media-plugins/gst-plugins-faad/Manifest index 1559b3f25e1a..9fd3b6a7d640 100644 --- a/media-plugins/gst-plugins-faad/Manifest +++ b/media-plugins/gst-plugins-faad/Manifest @@ -1,2 +1 @@ -DIST gst-plugins-bad-0.10.23.tar.xz 3155044 BLAKE2B 86ed955fb5c73f2145b8f8ed2daaeffd9975362e81c3ca911be00d18f6b6d975381651071eb54514ef94a931f1fc89e673dc8c1d68e10de132bbe51accb6d165 SHA512 6437dd12707ef29651f4014b54612cf2a3a42ed4e05a1c5f4a432d80e27efd2abc0df891ebcfdc9e7b2cf9f71a15b88e48b3aa6db24a178ed6de3b1bdf4c3dc4 DIST gst-plugins-bad-1.14.3.tar.xz 4678316 BLAKE2B b37d90e04a6bdb01e4f512df67e00790979e4b71fa6730092b4c16dbaf005cf94e09a454ed6e962faa3aaef02c2b811ad1899c3c8153b4ab3bf6d9b5f62998cf SHA512 3e92b33b43181d76bf206496c2fe0f84042c486f854f4fdba7efedc3489874944cef00eb2fd9fd7056d749be17c2b237caffc32800d7063615b30bac7226fbb7 diff --git a/media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch b/media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch deleted file mode 100644 index fdcdc7554482..000000000000 --- a/media-plugins/gst-plugins-faad/files/gst-plugins-faad-1.4.5-version-check.patch +++ /dev/null @@ -1,38 +0,0 @@ -From bde0f119097117cf0256e450af4267a47782260b Mon Sep 17 00:00:00 2001 -From: Wim Taymans <wtaymans@redhat.com> -Date: Wed, 13 May 2015 16:23:26 +0200 -Subject: [PATCH] fix faad2 version check - -On fedora 22, the output of cpp inserts extra debug comments, which -makes our regexp for the faad2 version check fail. This in turn causes -it to compile with the wrong arguments passed which then causes stack -corruption and crashes. - -Fix this by only checking for the version (which should be by itself on -a single line). This is potentially less safe, it might be possible that -a similar string would appear in a later version in the header file. - -Fixes https://bugzilla.gnome.org/show_bug.cgi?id=748571 ---- - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 4e2823e..c56295e 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -2050,9 +2050,9 @@ AG_GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [ - AC_MSG_CHECKING([Checking FAAD2 version in $faad_hdr]) - for minor in 10 9 8 7 6 5 0; do - if test x$faad2_minor_version = "x"; then -- AC_EGREP_CPP([GST_CHECK_FAAD_VERSION \"2\.$minor\"], [ -+ AC_EGREP_CPP([\"2\.$minor\"$], [ - #include <$faad_hdr> -- GST_CHECK_FAAD_VERSION FAAD2_VERSION -+ FAAD2_VERSION - ], [ - faad2_minor_version=$minor - ]) --- -2.4.1 - diff --git a/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild b/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild deleted file mode 100644 index 810287e0cc73..000000000000 --- a/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.23-r2.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -GST_ORG_MODULE=gst-plugins-bad -inherit autotools eutils gstreamer - -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="" - -RDEPEND=">=media-libs/faad2-2.7-r3[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND}" - -src_prepare() { - # From upstream git, fixes corrupt build with gcc-5.1 - epatch "${FILESDIR}"/${PN}-1.4.5-version-check.patch - eautoreconf -} |