commit eab6a8cef7f3c30f5784810e5c47cb9a22c90abf
Author: Dominik 'Rathann' Mierzejewski <dominik(a)greysector.net>
Date: Mon Jun 29 12:59:39 2020 +0200
Resurrect for legacy repo.
Revert "Fedora has dropped gstreamer from the f31 repo"
This reverts commit 4405cf25725fb29c847ac677484f479a3e44a73f.
.gitignore | 1 +
0001-fix-faad2-version-check.patch | 35 +++
dead.package | 1 -
gstreamer-plugins-bad.spec | 450 +++++++++++++++++++++++++++++++++++++
sources | 1 +
5 files changed, 487 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2d4185f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+gst-plugins-bad-0.10.23.tar.bz2
diff --git a/0001-fix-faad2-version-check.patch b/0001-fix-faad2-version-check.patch
new file mode 100644
index 0000000..ba92546
--- /dev/null
+++ b/0001-fix-faad2-version-check.patch
@@ -0,0 +1,35 @@
+From ea2cf4aae775c36793b31fa2726fa084c426d0cf Mon Sep 17 00:00:00 2001
+From: Wim Taymans <wtaymans(a)redhat.com>
+Date: Wed, 13 May 2015 16:23:26 +0200
+Subject: 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
+
+diff --git a/configure.ac b/configure.ac
+index 29b10a6..ceaf31f 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -1132,9 +1132,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
+ ])
+--
+cgit v0.10.2
+
diff --git a/gstreamer-plugins-bad.spec b/gstreamer-plugins-bad.spec
new file mode 100644
index 0000000..78812d3
--- /dev/null
+++ b/gstreamer-plugins-bad.spec
@@ -0,0 +1,450 @@
+%define majorminor 0.10
+%define gstreamer gstreamer
+
+%define gst_minver 0.10.33
+%define gstpb_minver 0.10.33
+
+# which plugins to actually build and install
+%ifarch %{ix86} x86_64
+%define gstdirs gst/dvdspu gst/real gst/siren
+%else
+%define gstdirs gst/dvdspu gst/siren
+%endif
+%define extdirs ext/dts ext/faad ext/libmms ext/mimic ext/mpeg2enc ext/mplex ext/rtmp
ext/voamrwbenc ext/xvid
+
+Summary: GStreamer streaming media framework "bad" plug-ins
+Name: gstreamer-plugins-bad
+Version: 0.10.23
+Release: 13%{?dist}
+License: LGPLv2+
+Group: Applications/Multimedia
+URL:
http://gstreamer.freedesktop.org/
+Source:
http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-%{ve...
+Patch1: 0001-fix-faad2-version-check.patch
+Requires: %{gstreamer} >= %{gst_minver}
+# Drag in the free plugins which are in Fedora now, for upgrade path
+Requires: gstreamer-plugins-bad-free >= %{version}
+BuildRequires: %{gstreamer}-devel >= %{gst_minver}
+BuildRequires: %{gstreamer}-plugins-base-devel >= %{gstpb_minver}
+BuildRequires: gcc-c++
+BuildRequires: check
+BuildRequires: gettext-devel
+BuildRequires: libXt-devel
+BuildRequireS: gtk-doc
+BuildRequires: liboil-devel
+BuildRequires: libdca-devel
+BuildRequires: faad2-devel
+BuildRequires: xvidcore-devel
+BuildRequires: libmms-devel
+BuildRequires: mjpegtools-devel >= 2.0.0
+BuildRequires: twolame-devel
+BuildRequires: libmimic-devel
+BuildRequires: librtmp-devel
+BuildRequires: vo-amrwbenc-devel
+# For autoreconf
+BuildRequires: libtool
+
+%description
+GStreamer is a streaming media framework, based on graphs of elements which
+operate on media data.
+
+This package contains plug-ins that have licensing issues, aren't tested
+well enough, or the code is not of good enough quality.
+
+
+%prep
+%setup -q -n gst-plugins-bad-%{version}
+%patch1 -p1
+# For patch1
+autoreconf -ivf
+
+
+%build
+# Note we don't bother with disabling everything which is in Fedora, that
+# is unmaintainable, instead we selectively run make in subdirs
+%configure \
+ --with-package-name="gst-plugins-bad rpmfusion rpm" \
+ --with-package-origin="http://rpmfusion.org/" \
+ --enable-debug --disable-static --enable-experimental
+# Don't use rpath!
+sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g'
libtool
+sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+for i in %{gstdirs} %{extdirs}; do
+ pushd $i
+ make %{?_smp_mflags} V=2
+ popd
+done
+
+
+%install
+for i in %{gstdirs} %{extdirs}; do
+ pushd $i
+ make install V=2 DESTDIR=$RPM_BUILD_ROOT
+ popd
+done
+
+# Clean out files that should not be part of the rpm.
+rm %{buildroot}%{_libdir}/gstreamer-%{majorminor}/*.la
+
+
+%files
+%doc AUTHORS COPYING README REQUIREMENTS
+# Take the whole dir for proper dir ownership (shared with other plugin pkgs)
+%{_datadir}/gstreamer-0.10
+
+# Plugins without external dependencies
+%{_libdir}/gstreamer-%{majorminor}/libgstdvdspu.so
+%ifarch %{ix86} x86_64
+%{_libdir}/gstreamer-%{majorminor}/libgstreal.so
+%endif
+%{_libdir}/gstreamer-%{majorminor}/libgstsiren.so
+
+# Plugins with external dependencies
+%{_libdir}/gstreamer-%{majorminor}/libgstdtsdec.so
+%{_libdir}/gstreamer-%{majorminor}/libgstfaad.so
+%{_libdir}/gstreamer-%{majorminor}/libgstmms.so
+%{_libdir}/gstreamer-%{majorminor}/libgstmimic.so
+%{_libdir}/gstreamer-%{majorminor}/libgstmpeg2enc.so
+%{_libdir}/gstreamer-%{majorminor}/libgstmplex.so
+%{_libdir}/gstreamer-%{majorminor}/libgstrtmp.so
+%{_libdir}/gstreamer-%{majorminor}/libgstvoamrwbenc.so
+%{_libdir}/gstreamer-%{majorminor}/libgstxvid.so
+
+
+%changelog
+* Fri Aug 09 2019 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> -
0.10.23-13
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Mon Mar 04 2019 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> -
0.10.23-12
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> -
0.10.23-11
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Thu Mar 01 2018 RPM Fusion Release Engineering <leigh123linux(a)googlemail.com> -
0.10.23-10
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> -
0.10.23-9
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> -
0.10.23-8
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Wed May 27 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.23-7
+- Add a patch from upstream fixing a faad2 crash (rf3664)
+
+* Mon Sep 01 2014 Sérgio Basto <sergio(a)serjux.com> - 0.10.23-6
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Tue Jan 07 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 0.10.23-5
+- Rebuilt for librtmp
+
+* Sun Nov 10 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.10.23-4
+- Rebuilt for mjpegtools update to 2.1.0
+
+* Sat Mar 2 2013 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.23-3
+- Drop no longer needed PyXML BuildRequires (rf#2572)
+
+* Sat Nov 10 2012 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.23-2
+- Add/enable vo-amrwbenc plugin
+
+* Thu Jul 12 2012 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.23-1
+- New upstream release 0.10.23 (rf#2377)
+
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.10.22-4
+- Rebuilt for c++ ABI breakage
+
+* Wed Feb 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.10.22-3
+- Rebuilt for
https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Tue Aug 2 2011 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.22-2
+- Rebuild for new mjpegtools-2.0.0 (rf#1841)
+
+* Tue May 17 2011 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.22-1
+- New upstream release 0.10.22
+
+* Thu Apr 21 2011 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.21-3
+- Rebuild for proper package kit magic provides (rhbz#695730)
+
+* Tue Mar 08 2011 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.21-2
+- Enable rtmp plugin (rf#1651)
+
+* Fri Jan 28 2011 Hans de Goede <j.w.r.degoede(a)hhs.nl> - 0.10.21-1
+- New upstream release 0.10.21
+
+* Thu Jan 20 2011 Hans de Goede <j.w.r.degoede(a)hhs.nl> - 0.10.20-3
+- Drop mux-es (moved to Fedora's gstreamer-plugins-bad-free)
+
+* Fri Oct 15 2010 Nicolas Chauvet <kwizart(a)gmail.com> - 0.10.20-2
+- Rebuilt for gcc bug
+
+* Sun Sep 12 2010 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.20-1
+- New upstream release 0.10.20
+
+* Sun Jun 13 2010 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.19-1
+- New upstream release 0.10.19
+
+* Sun Mar 14 2010 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.18-1
+- New upstream release 0.10.18
+
+* Thu Feb 4 2010 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.17-4
+- Require new gstreamer-plugins-bad-free which is now in Fedora
+- Drop all files found in gstreamer-plugins-bad-free
+- Drop all subpackages (all subpackages of gstreamer-plugins-bad-free now)
+
+* Sat Dec 19 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.17-3
+- Disable muscbrainz / trm plugin (#1001)
+
+* Fri Dec 4 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.17-2
+- Enable LADSPA plugins (#992)
+
+* Wed Nov 18 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.17-1
+- New upstream release 0.10.17
+
+* Sat Nov 7 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.16-1
+- New upstream release 0.10.16
+
+* Sun Oct 25 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-10
+- Disable faac AAC (MPEG 2 / 4 audio) encode plugin as faac was moved to
+ non free (rf 898)
+
+* Tue Oct 20 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.10.13-9
+- disable libgstneonhttpsrc
+
+* Tue Oct 20 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.10.13-8
+- rebuilt
+
+* Mon Aug 31 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-7
+- Rebuild for new libass
+
+* Tue Aug 11 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-6
+- Enable mimic plugin now that we have libmimic in RPM Fusion
+
+* Thu Aug 6 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-5
+- Re-enable siren as it also has not been added to gst-plugins-good (#749)
+
+* Tue Jul 07 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.10.13-4
+- rebuild for new directfb
+
+* Sat Jun 27 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-3
+- Disable rtpmanager as it also has been added to gstreamer-plugins-good (#689)
+
+* Tue Jun 23 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-2
+- Disable farsight plugins again, they have been added to Fedora's
+ gstreamer-plugins-good package
+
+* Fri Jun 19 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-1
+- New upstream release 0.10.13
+- Disable input-selector plugin as it has been added to Fedora's
+ gstreamer-plugins-base as rythmbox needs it
+- Enable plugins moved from farsight into -bad, as rawhide now
+ has a new gstreamer-plugins-farsight, which no longer contains them
+
+* Wed Jun 17 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.12-2
+- Rebuild for changes in the gstreamer provides script
+
+* Sun May 31 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.12-1
+- New upstream release 0.10.12
+- Resolves rf 622, rf 592
+
+* Wed Apr 15 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.11-4
+- Rebuild for new mjpegtools
+
+* Fri Apr 3 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.11-3
+- Disable mpegdemux plugin as it conflicts with
+ gstreamer-plugins-flumpegdemux (rf 474)
+
+* Sun Mar 29 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.11-2
+- Rebuild for new faad2 and x264
+- Enable libass plugin
+- Move the midi plugins to the -extras package, so that people who do not
+ need / want midi playback support do not have to download 200 MB of
+ wavetable instruments. For people who do want this the automatic gstreamer
+ plugin install should take care of installing them.
+
+* Sun Mar 22 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.11-1
+- New upstream release 0.10.11
+- Enable celt plugin (rf 380)
+- Fix broken libBPM dep (rf 412)
+- Rebuild for new soundtouch (rf 457)
+- Disable plugins moved from gst-plugins-farsight for now, until a new
+ gst-plugins-farsight release solving the conflicts is available
+- Bring back -devel and -devel-doc subdirs for new libgstphotography
+
+* Wed Jan 21 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.10-1
+- New upstream release 0.10.10
+- Drop -devel and -devel-docs subpackages now that libgstapp has moved to
+ the base plugins
+- Disable gtk-doc now that we no longer have a -devel subpackage
+- This release fixes the file conflicts with the new gstreamer-0.10.22 release
+
+* Sat Dec 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.9-3
+- Put devel docs in seperate subpackage to avoid multilib conflict (rf 276)
+
+* Wed Dec 17 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.9-2
+- Rebuild for new x264 (using patch from Rathann)
+
+* Sun Oct 26 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.9-1
+- New upstream release 0.10.9
+- Rebuild for new directfb
+
+* Sun Sep 14 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-4
+- Rebuild for new x264 and to generate new magic gstreamer provides
+
+* Sat Aug 16 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-3
+- Enable DVD navigation plugin
+
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-2
+- Release bump to keep rpmfusion version higher then livna
+
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-1
+- New upstream release 0.10.8
+- Merge changes from latest freshrpms package: enable ofa and dirac plugins
+
+* Fri Jun 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.7-2
+- Rebuild for new x264
+
+* Thu Apr 24 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.7-1
+- New upstream release 0.10.7
+- Drop many upstreamed patches
+
+* Sun Mar 9 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.6-3
+- Rebuild for new x264
+
+* Tue Feb 26 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.6-2
+- Enable dc1394 plugin
+
+* Sun Feb 24 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.6-1
+- New upstream release 0.10.6-1
+- Drop many upstreamed patches
+- Fixes conflict with the latest gstreamer-plugins-good (livna 1884)
+
+* Tue Feb 5 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-15
+- Fix compilation with gcc 4.3
+
+* Tue Feb 5 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-14
+- Add flv demuxer from CVS (livna bug 1846)
+
+* Sun Dec 9 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-13
+- Add patch fixing compilation with mjpegtools 1.9.0rc3
+
+* Sun Dec 9 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-12
+- Add patch from upstream vcs which makes mms honor your connection speed
+ settings
+- Add (painstakingly self written) patch adding support for mms / mmsh seeking!
+
+* Tue Nov 13 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-11
+- Rebuild for new faad2
+
+* Sun Nov 4 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-10
+- Rebuild for new libdca
+
+* Thu Oct 18 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-9
+- Rebuild for new (old) faad2 (livna bug 1679)
+
+* Sat Sep 29 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-8
+- Update mythtvsrc code to CVS version (livna bug 1660)
+
+* Thu Sep 27 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-7
+- No libgstreal.so on ppc / ppc64
+
+* Thu Sep 27 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-6
+- Fix detection of libdts with current livna libtds, this might need to be
+ changed back again for rpmfusion, depending on how libdts will look there
+
+* Sat Sep 22 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-5
+- Add mythtvsrc plugin (livna 1646)
+- Put some less often used plugins, which bring in also usually not installed
+ deps in a -extras package
+
+* Sat Sep 15 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.5-4
+- Merge livna spec bugfixes into freshrpms spec for rpmfusion:
+- Set release to 4 to be higher as both livna and freshrpms latest release
+- Set package name and origin to rpmfusion
+- Make mpeg2enc plugin compile with current mjpegtools
+- Make the real plugins search for the RealPlayer .so files in various
+ known possible locations instead of using only one hardcoded path to them
+- Make the wildmidi plugin work with the default Fedora timidity patch set
+- Add a couple of missing modtracker mimetypes to the modplug plugin
+- Use the system version of libmodplug
+- Fix building of the neonsrc plugin with the latest (rawhide) neon
+- Disable the ladspa plugin as this has been added to Fedora's rawhide
+ gstreamer-plugins-good
+- Don't put an rpath in the .so's on x86_64
+- Re-enable gtk-doc now that we have a -devel package again
+- Enable libtimidity plugin
+- Fix detection of (and linking with) libdca for the dtsdec plugin
+
+* Tue Aug 21 2007 Matthias Saou <
http://freshrpms.net/> 0.10.5-1
+- Update to 0.10.5.
+- Update faad2 patch : Some fixes went in, but faad2.h still produces an error.
+- Remove libgstqtdemux, libgstvideocrop and libgstwavpack, all are in good now.
+- Enable new nas, x264, wildmidi and libsndfile plugins.
+- Re-add devel package now that we have a main shared lib and header files.
+- Add check build requirement.
+
+* Fri Mar 30 2007 Matthias Saou <
http://freshrpms.net/> 0.10.4-1
+- Update to 0.10.4 for F7.
+- Disable swfdec... does anything/anyone even use it here? Once it stabilizes
+ somewhat more, maybe then it'll be worth re-enabling.
+- Re-enable wavpack, it works again now.
+- Enable libcdaudio support.
+- Enable jack support.
+- Enable ladspa support.
+- Enable mpeg2enc (mjpegtools) support.
+- Remove no longer present libgstvideo4linux2.so and add all new plugins.
+- Remove all gtk-doc references (all gone...?) and devel package too.
+
+* Tue Jan 9 2007 Matthias Saou <
http://freshrpms.net/> 0.10.3-3
+- Update faad2 patch to also update the plugin sources, not just configure.
+
+* Mon Dec 18 2006 Matthias Saou <
http://freshrpms.net/> 0.10.3-2
+- Try to rebuild against new wavpack 4.40 from Extras : Fails.
+- Try to update to 0.10.3.2 pre-release : Fails, it needs a more recent gst.
+- Try to include patch to update wavpack plugin source from 0.10.3.2
+ pre-release : Fails to find wavpack/md5.h.
+- Give up and disable wavpack support for now, sorry! Patches welcome.
+- Include patch to fix faad2 2.5 detection.
+- Add soundtouch support.
+
+* Thu Jun 1 2006 Matthias Saou <
http://freshrpms.net/> 0.10.3-1
+- Update to 0.10.3.
+- Add new translations.
+- Add libgstmodplug.so, libgstvideo4linux2.so and libgstxingheader.so.
+- Add new libmusicbrainz support.
+
+* Thu Mar 23 2006 Matthias Saou <
http://freshrpms.net/> 0.10.1-2
+- Add libmms support, thanks to Daniel S. Rogers.
+
+* Wed Feb 22 2006 Matthias Saou <
http://freshrpms.net/> 0.10.1-1
+- Update to 0.10.1.
+- Add libgstcdxaparse.so and libgstfreeze.so.
+- Enable libgstbz2.so, libgstglimagesink.so and libgstneonhttpsrc.so.
+
+* Wed Jan 25 2006 Matthias Saou <
http://freshrpms.net/> 0.10.0.1-1
+- Update to 0.10.0.1, add new plugins.
+- Spec file cleanup and rebuild for FC5.
+
+* Mon Dec 05 2005 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.10.0-0.gst.1
+- new release
+
+* Thu Dec 01 2005 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.9.7-0.gst.1
+- new release with 0.10 major/minor
+
+* Sat Nov 12 2005 Thomas Vander Stichele <thomas at apestaart dot org>
+- new release
+- remove tta patch
+- don't check for languages, no translations yet
+- added gtk-doc
+
+* Wed Oct 26 2005 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.9.4-0.gst.1
+- new release
+- added speed plugin
+
+* Mon Oct 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.9.3-0.gst.1
+- new release
+
diff --git a/sources b/sources
new file mode 100644
index 0000000..01fe7bd
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+fcb09798114461955260e4d940db5987 gst-plugins-bad-0.10.23.tar.bz2