From ca925221521b63298001ff488f5dcb681362002b Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Sat, 22 Sep 2012 16:22:37 +0000 Subject: [PATCH 001/108] Setup of module gstreamer1-plugins-ugly --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 97288f428b6068f6338cef921405ccc895f29c3e Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 23 Sep 2012 14:04:20 +0000 Subject: [PATCH 002/108] Initial import of gstreamer1-plugins-ugly --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 109 +++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 111 insertions(+) create mode 100644 gstreamer1-plugins-ugly.spec diff --git a/.gitignore b/.gitignore index e69de29..e6713ae 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +gst-plugins-ugly-0.11.93.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec new file mode 100644 index 0000000..a55a9ae --- /dev/null +++ b/gstreamer1-plugins-ugly.spec @@ -0,0 +1,109 @@ +Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins +Name: gstreamer1-plugins-ugly +Version: 0.11.93 +Release: 2%{?dist} +License: LGPLv2+ +Group: Applications/Multimedia +URL: http://gstreamer.freedesktop.org/ +Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz +BuildRequires: gstreamer1-devel >= %{version} +BuildRequires: gstreamer1-plugins-base-devel >= %{version} +BuildRequires: gettext-devel gtk-doc +%if 0%{?fedora} <= 17 +BuildRequires: libsidplay-devel >= 1.36.0 +%endif +BuildRequires: a52dec-devel >= 0.7.3 +BuildRequires: libdvdread-devel >= 0.9.0 +BuildRequires: lame-devel >= 3.89 +BuildRequires: libid3tag-devel >= 0.15.0 +BuildRequires: libmad-devel >= 0.15.0 +BuildRequires: mpeg2dec-devel >= 0.4.0 +BuildRequires: orc-devel >= 0.4.5 +BuildRequires: libcdio-devel >= 0.82 +BuildRequires: twolame-devel +BuildRequires: x264-devel >= 0.0.0-0.28 +BuildRequires: opencore-amr-devel +BuildRequires: PyXML + +%description +GStreamer is a streaming media framework, based on graphs of elements which +operate on media data. + +This package contains well-written plug-ins that can't be shipped in +gstreamer-plugins-good because: +- the license is not LGPL +- the license of the library is not LGPL +- there are possible licensing issues with the code. + + +%package devel-docs +Summary: Development documentation for the GStreamer "ugly" plug-ins +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description devel-docs +GStreamer is a streaming media framework, based on graphs of elements which +operate on media data. + +This package contains the development documentation for the plug-ins that can't +be shipped in gstreamer-plugins-good because: +- the license is not LGPL +- the license of the library is not LGPL +- there are possible licensing issues with the code. + + +%prep +%setup -q -n gst-plugins-ugly-%{version} + + +%build +%configure \ + --with-package-name="gst-plugins-ugly 1.0 rpmfusion rpm" \ + --with-package-origin="http://rpmfusion.org/" \ + --enable-debug --enable-gtk-doc \ + --disable-static +make %{?_smp_mflags} + + +%install +make install DESTDIR=$RPM_BUILD_ROOT +%find_lang gst-plugins-ugly-1.0 +rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la + + +%files -f gst-plugins-ugly-1.0.lang +%doc AUTHORS COPYING README REQUIREMENTS +%{_datadir}/gstreamer-1.0 +# Plugins without external dependencies +%{_libdir}/gstreamer-1.0/libgstasf.so +%{_libdir}/gstreamer-1.0/libgstdvdlpcmdec.so +%{_libdir}/gstreamer-1.0/libgstdvdsub.so +%{_libdir}/gstreamer-1.0/libgstrmdemux.so +%{_libdir}/gstreamer-1.0/libgstxingmux.so +# Plugins with external dependencies +%{_libdir}/gstreamer-1.0/libgsta52dec.so +%{_libdir}/gstreamer-1.0/libgstamrnb.so +%{_libdir}/gstreamer-1.0/libgstamrwbdec.so +%{_libdir}/gstreamer-1.0/libgstcdio.so +%{_libdir}/gstreamer-1.0/libgstdvdread.so +%{_libdir}/gstreamer-1.0/libgstlame.so +%{_libdir}/gstreamer-1.0/libgstmad.so +%{_libdir}/gstreamer-1.0/libgstmpeg2dec.so +%if 0%{?fedora} <= 17 +%{_libdir}/gstreamer-1.0/libgstsid.so +%endif +%{_libdir}/gstreamer-1.0/libgsttwolame.so +%{_libdir}/gstreamer-1.0/libgstx264.so + +%files devel-docs +# Take the dir and everything below it for proper dir ownership +%doc %{_datadir}/gtk-doc + + +%changelog +* Sun Sep 16 2012 Hans de Goede - 0.11.93-2 +- Fix gtk-doc dir ownership (rf#2474) + +* Sun Sep 9 2012 Hans de Goede - 0.11.93-1 +- First version of gstreamer1-plugins-ugly for rpmfusion diff --git a/sources b/sources index e69de29..fa4c15e 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +62f2ff1462b295295ecda60b9decaa25 gst-plugins-ugly-0.11.93.tar.xz From d0667684a58bb1f0b21d35d11c1b997b41a93059 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 23 Sep 2012 15:44:08 +0000 Subject: [PATCH 003/108] * Sun Sep 23 2012 Hans de Goede - 0.11.99-1 - New upstream release 0.11.99 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index e6713ae..2bf83d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-0.11.93.tar.xz +gst-plugins-ugly-0.11.99.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index a55a9ae..e53e2f0 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 0.11.93 -Release: 2%{?dist} +Version: 0.11.99 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -102,6 +102,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Sep 23 2012 Hans de Goede - 0.11.99-1 +- New upstream release 0.11.99 + * Sun Sep 16 2012 Hans de Goede - 0.11.93-2 - Fix gtk-doc dir ownership (rf#2474) diff --git a/sources b/sources index fa4c15e..72ea4ac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -62f2ff1462b295295ecda60b9decaa25 gst-plugins-ugly-0.11.93.tar.xz +fc20da880285a9a746736028393daaed gst-plugins-ugly-0.11.99.tar.xz From b0ff6934fe9cc17542457ad9a3410ded5f8de214 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 28 Oct 2012 16:12:54 +0000 Subject: [PATCH 004/108] * Sun Oct 28 2012 Hans de Goede - 1.0.2-1 - New upstream release 1.0.2 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 2bf83d4..a2fe520 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-0.11.99.tar.xz +gst-plugins-ugly-1.0.2.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index e53e2f0..fc069f5 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,13 +1,13 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 0.11.99 +Version: 1.0.2 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -BuildRequires: gstreamer1-devel >= %{version} -BuildRequires: gstreamer1-plugins-base-devel >= %{version} +BuildRequires: gstreamer1-devel >= 1.0.0 +BuildRequires: gstreamer1-plugins-base-devel >= 1.0.0 BuildRequires: gettext-devel gtk-doc %if 0%{?fedora} <= 17 BuildRequires: libsidplay-devel >= 1.36.0 @@ -102,6 +102,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Oct 28 2012 Hans de Goede - 1.0.2-1 +- New upstream release 1.0.2 + * Sun Sep 23 2012 Hans de Goede - 0.11.99-1 - New upstream release 0.11.99 diff --git a/sources b/sources index 72ea4ac..0fb39de 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fc20da880285a9a746736028393daaed gst-plugins-ugly-0.11.99.tar.xz +c72d307b37742d2ba1efd4d04884f56b gst-plugins-ugly-1.0.2.tar.xz From 95e9572cc0a58ba1d5a7bfd5f5a3385d581a30fb Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 23 Nov 2012 08:18:42 +0000 Subject: [PATCH 005/108] Rebuilt --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index fc069f5..f5bbb60 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -102,6 +102,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Fri Nov 23 2012 Nicolas Chauvet - 1.0.2-2 +- Rebuilt for x264 + * Sun Oct 28 2012 Hans de Goede - 1.0.2-1 - New upstream release 1.0.2 From 37370b74d5c8ea683087fd647077660f79dc2bab Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Sun, 20 Jan 2013 22:09:18 +0000 Subject: [PATCH 006/108] Rebuilt for ffmpeg/x264 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index f5bbb60..7b7caa8 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -102,6 +102,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Jan 20 2013 Nicolas Chauvet - 1.0.2-3 +- Rebuilt for FFmpeg/x264 + * Fri Nov 23 2012 Nicolas Chauvet - 1.0.2-2 - Rebuilt for x264 From a988b62c57b2a6371c4d6a2b29cba3cb471421c5 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 2 Mar 2013 11:03:50 +0000 Subject: [PATCH 007/108] * Sat Mar 2 2013 Hans de Goede - 1.0.5-1 - New upstream release 1.0.5 - Drop no longer needed PyXML BuildRequires (rf#2572) --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index a2fe520..b44b236 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.0.2.tar.xz +gst-plugins-ugly-1.0.5.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 7b7caa8..99d3ea1 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.0.2 -Release: 3%{?dist} +Version: 1.0.5 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -23,7 +23,6 @@ BuildRequires: libcdio-devel >= 0.82 BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel -BuildRequires: PyXML %description GStreamer is a streaming media framework, based on graphs of elements which @@ -102,6 +101,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sat Mar 2 2013 Hans de Goede - 1.0.5-1 +- New upstream release 1.0.5 +- Drop no longer needed PyXML BuildRequires (rf#2572) + * Sun Jan 20 2013 Nicolas Chauvet - 1.0.2-3 - Rebuilt for FFmpeg/x264 diff --git a/sources b/sources index 0fb39de..fcf120b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c72d307b37742d2ba1efd4d04884f56b gst-plugins-ugly-1.0.2.tar.xz +cbad8e473023ef19c01a2edb744cb94a gst-plugins-ugly-1.0.5.tar.xz From 73adf153d776b5c0ad11c51f8cc239f272c8ec5f Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Mon, 25 Mar 2013 10:03:39 +0000 Subject: [PATCH 008/108] * Mon Mar 25 2013 Hans de Goede - 1.0.6-1 - New upstream release 1.0.6 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b44b236..995fce6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.0.5.tar.xz +gst-plugins-ugly-1.0.6.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 99d3ea1..2f705b8 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.0.5 +Version: 1.0.6 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Mon Mar 25 2013 Hans de Goede - 1.0.6-1 +- New upstream release 1.0.6 + * Sat Mar 2 2013 Hans de Goede - 1.0.5-1 - New upstream release 1.0.5 - Drop no longer needed PyXML BuildRequires (rf#2572) diff --git a/sources b/sources index fcf120b..7e009fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cbad8e473023ef19c01a2edb744cb94a gst-plugins-ugly-1.0.5.tar.xz +9ffee39153f419ae2329fbf54ed708e0 gst-plugins-ugly-1.0.6.tar.xz From 94482a01a2e7465f33725a3410e877230603a163 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 7 May 2013 15:13:29 +0000 Subject: [PATCH 009/108] Rebuilt --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 2f705b8..95b6e07 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Tue May 07 2013 Nicolas Chauvet - 1.0.6-2 +- Rebuilt for x264 + * Mon Mar 25 2013 Hans de Goede - 1.0.6-1 - New upstream release 1.0.6 From 8aff69cfe68a656f7026a6b26ca2342a27db9505 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 8 Aug 2013 17:59:05 +0000 Subject: [PATCH 010/108] * Wed Aug 07 2013 Hans de Goede - 1.0.9-1 - New upstream release 1.0.9 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 995fce6..b5c50f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.0.6.tar.xz +gst-plugins-ugly-1.0.9.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 95b6e07..8996ed2 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.0.6 -Release: 2%{?dist} +Version: 1.0.9 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Wed Aug 07 2013 Hans de Goede - 1.0.9-1 +- New upstream release 1.0.9 + * Tue May 07 2013 Nicolas Chauvet - 1.0.6-2 - Rebuilt for x264 diff --git a/sources b/sources index 7e009fb..584786e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9ffee39153f419ae2329fbf54ed708e0 gst-plugins-ugly-1.0.6.tar.xz +ea8b4e05ed5beb982762b45aba266720 gst-plugins-ugly-1.0.9.tar.xz From 54110f31781af412111030a4e25de5fe18189418 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 8 Aug 2013 20:10:06 +0000 Subject: [PATCH 011/108] * Thu Aug 08 2013 Hans de Goede - 1.1.3-1 - Rebase to new upstream release 1.1.3 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b5c50f7..86014b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.0.9.tar.xz +gst-plugins-ugly-1.1.3.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 8996ed2..bf9a704 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.0.9 +Version: 1.1.3 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Thu Aug 08 2013 Hans de Goede - 1.1.3-1 +- Rebase to new upstream release 1.1.3 + * Wed Aug 07 2013 Hans de Goede - 1.0.9-1 - New upstream release 1.0.9 diff --git a/sources b/sources index 584786e..1defbd0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ea8b4e05ed5beb982762b45aba266720 gst-plugins-ugly-1.0.9.tar.xz +9e05ba1bb24a43555bb2e51616241b59 gst-plugins-ugly-1.1.3.tar.xz From d49adc93eb9076a3f2af30511efe75b1ffd6405d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 13 Oct 2013 11:13:34 +0000 Subject: [PATCH 012/108] * Sun Oct 13 2013 Hans de Goede - 1.2.0-1 - Rebase to new upstream release 1.2.0 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 86014b8..c02027f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.1.3.tar.xz +gst-plugins-ugly-1.2.0.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index bf9a704..402a1cc 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.1.3 +Version: 1.2.0 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Oct 13 2013 Hans de Goede - 1.2.0-1 +- Rebase to new upstream release 1.2.0 + * Thu Aug 08 2013 Hans de Goede - 1.1.3-1 - Rebase to new upstream release 1.1.3 diff --git a/sources b/sources index 1defbd0..bc478bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9e05ba1bb24a43555bb2e51616241b59 gst-plugins-ugly-1.1.3.tar.xz +81c97981ed373bd77bb10f2ae555c166 gst-plugins-ugly-1.2.0.tar.xz From 0cff4e6f296542680807341ce69e83005b92fc64 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 22 Oct 2013 18:39:58 +0000 Subject: [PATCH 013/108] * Tue Oct 22 2013 Nicolas Chauvet - 1.2.0-2 - Rebuilt for x264 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 402a1cc..f8e008a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Tue Oct 22 2013 Nicolas Chauvet - 1.2.0-2 +- Rebuilt for x264 + * Sun Oct 13 2013 Hans de Goede - 1.2.0-1 - Rebase to new upstream release 1.2.0 From f4d6b0f8bd09c88afcfa1fe16863d467953b465c Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 5 Nov 2013 20:08:22 +0000 Subject: [PATCH 014/108] * Tue Nov 05 2013 Nicolas Chauvet - 1.2.0-3 - Rebuilt for x264/FFmpeg --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index f8e008a..726221f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Tue Nov 05 2013 Nicolas Chauvet - 1.2.0-3 +- Rebuilt for x264/FFmpeg + * Tue Oct 22 2013 Nicolas Chauvet - 1.2.0-2 - Rebuilt for x264 From d3b6107eaf84093429eb6647b8307469cdd53726 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 16 Nov 2013 20:11:56 +0000 Subject: [PATCH 015/108] * Sat Nov 16 2013 Hans de Goede - 1.2.1-1 - Rebase to new upstream release 1.2.1 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c02027f..bcb0ca4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.2.0.tar.xz +gst-plugins-ugly-1.2.1.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 726221f..cca15b7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.2.0 -Release: 3%{?dist} +Version: 1.2.1 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sat Nov 16 2013 Hans de Goede - 1.2.1-1 +- Rebase to new upstream release 1.2.1 + * Tue Nov 05 2013 Nicolas Chauvet - 1.2.0-3 - Rebuilt for x264/FFmpeg diff --git a/sources b/sources index bc478bf..93a42c3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -81c97981ed373bd77bb10f2ae555c166 gst-plugins-ugly-1.2.0.tar.xz +553332a8d5153e788a6612642a57f416 gst-plugins-ugly-1.2.1.tar.xz From cfc5f51af6df4bad35263d61d2d5ba9ae248b3b6 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 21 Feb 2014 19:58:01 +0000 Subject: [PATCH 016/108] Rebuilt --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index cca15b7..469294e 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Fri Feb 21 2014 Nicolas Chauvet - 1.2.1-2 +- Rebuilt + * Sat Nov 16 2013 Hans de Goede - 1.2.1-1 - Rebase to new upstream release 1.2.1 From 6a300cbc48ec46389702fdd2729a8856ba4da450 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 2 Mar 2014 07:33:35 +0000 Subject: [PATCH 017/108] * Sun Feb 23 2014 Hans de Goede - 1.2.3-1 - Rebase to new upstream release 1.2.3 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bcb0ca4..9d4589b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.2.1.tar.xz +gst-plugins-ugly-1.2.3.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 469294e..d9edfcd 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.2.1 -Release: 2%{?dist} +Version: 1.2.3 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Feb 23 2014 Hans de Goede - 1.2.3-1 +- Rebase to new upstream release 1.2.3 + * Fri Feb 21 2014 Nicolas Chauvet - 1.2.1-2 - Rebuilt diff --git a/sources b/sources index 93a42c3..23d182e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -553332a8d5153e788a6612642a57f416 gst-plugins-ugly-1.2.1.tar.xz +7ae60e2f759f58f32af5fcdc3c9193c4 gst-plugins-ugly-1.2.3.tar.xz From cc01fe4df74288ccf7b518a570eeef8f31b86d74 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Thu, 6 Mar 2014 09:18:52 +0000 Subject: [PATCH 018/108] * Thu Mar 06 2014 Nicolas Chauvet - 1.2.3-2 - Rebuilt for x264 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d9edfcd..b50eb19 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.2.3 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Thu Mar 06 2014 Nicolas Chauvet - 1.2.3-2 +- Rebuilt for x264 + * Sun Feb 23 2014 Hans de Goede - 1.2.3-1 - Rebase to new upstream release 1.2.3 From 0def827c61e6bb8c5a2bd3a2dc8812a608d892be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sat, 22 Mar 2014 00:12:20 +0000 Subject: [PATCH 019/108] =?UTF-8?q?*=20Sat=20Mar=2022=202014=20S=C3=A9rgio?= =?UTF-8?q?=20Basto=20=20-=201.2.3-3=20-=20Rebuilt=20fo?= =?UTF-8?q?r=20x264?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index b50eb19..064ddb7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.2.3 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sat Mar 22 2014 Sérgio Basto - 1.2.3-3 +- Rebuilt for x264 + * Thu Mar 06 2014 Nicolas Chauvet - 1.2.3-2 - Rebuilt for x264 From a43d66d3baf3458579716d3b7c6c9ac7d5f87d11 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 15 Jun 2014 10:46:15 +0000 Subject: [PATCH 020/108] * Sun Jun 15 2014 Hans de Goede - 1.2.4-1 - Rebase to new upstream release 1.2.4 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9d4589b..50573d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.2.3.tar.xz +gst-plugins-ugly-1.2.4.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 064ddb7..d996c9c 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.2.3 -Release: 3%{?dist} +Version: 1.2.4 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -101,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Jun 15 2014 Hans de Goede - 1.2.4-1 +- Rebase to new upstream release 1.2.4 + * Sat Mar 22 2014 Sérgio Basto - 1.2.3-3 - Rebuilt for x264 diff --git a/sources b/sources index 23d182e..62c0c5e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7ae60e2f759f58f32af5fcdc3c9193c4 gst-plugins-ugly-1.2.3.tar.xz +c87a27db498bb736f6c266198657ea74 gst-plugins-ugly-1.2.4.tar.xz From f37f275506d8c62c9bb6b074a371c02ad6787419 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 30 Aug 2014 11:05:23 +0000 Subject: [PATCH 021/108] * Fri Aug 29 2014 Hans de Goede - 1.4.1-1 - Rebase to new upstream release 1.4.1 (rf#3343) --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 15 ++++++--------- sources | 2 +- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 50573d7..d1e8556 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.2.4.tar.xz +gst-plugins-ugly-1.4.1.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d996c9c..a25c324 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,17 +1,14 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.2.4 +Version: 1.4.1 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -BuildRequires: gstreamer1-devel >= 1.0.0 -BuildRequires: gstreamer1-plugins-base-devel >= 1.0.0 +BuildRequires: gstreamer1-devel >= 1.4.0 +BuildRequires: gstreamer1-plugins-base-devel >= 1.4.0 BuildRequires: gettext-devel gtk-doc -%if 0%{?fedora} <= 17 -BuildRequires: libsidplay-devel >= 1.36.0 -%endif BuildRequires: a52dec-devel >= 0.7.3 BuildRequires: libdvdread-devel >= 0.9.0 BuildRequires: lame-devel >= 3.89 @@ -89,9 +86,6 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %{_libdir}/gstreamer-1.0/libgstlame.so %{_libdir}/gstreamer-1.0/libgstmad.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so -%if 0%{?fedora} <= 17 -%{_libdir}/gstreamer-1.0/libgstsid.so -%endif %{_libdir}/gstreamer-1.0/libgsttwolame.so %{_libdir}/gstreamer-1.0/libgstx264.so @@ -101,6 +95,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Fri Aug 29 2014 Hans de Goede - 1.4.1-1 +- Rebase to new upstream release 1.4.1 (rf#3343) + * Sun Jun 15 2014 Hans de Goede - 1.2.4-1 - Rebase to new upstream release 1.2.4 diff --git a/sources b/sources index 62c0c5e..3c9f2f0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c87a27db498bb736f6c266198657ea74 gst-plugins-ugly-1.2.4.tar.xz +316974af949ca4654efee704a0164076 gst-plugins-ugly-1.4.1.tar.xz From ea8009717c9a34296795d9f545baa3fa5de8cf0d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Wed, 1 Oct 2014 11:35:06 +0000 Subject: [PATCH 022/108] * Wed Oct 1 2014 Hans de Goede - 1.4.3-1 - Rebase to new upstream release 1.4.3 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d1e8556..e8ef1cc 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.4.1.tar.xz +gst-plugins-ugly-1.4.3.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index a25c324..5be264f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.4.1 +Version: 1.4.3 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -95,6 +95,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Wed Oct 1 2014 Hans de Goede - 1.4.3-1 +- Rebase to new upstream release 1.4.3 + * Fri Aug 29 2014 Hans de Goede - 1.4.1-1 - Rebase to new upstream release 1.4.1 (rf#3343) diff --git a/sources b/sources index 3c9f2f0..e0a5f18 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -316974af949ca4654efee704a0164076 gst-plugins-ugly-1.4.1.tar.xz +239f055afb4ec0cf5ff8cde5a4a5bb9b gst-plugins-ugly-1.4.3.tar.xz From 400fd79556b19a455dc708379259091e0e5e8cb0 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 16 May 2015 07:39:58 +0000 Subject: [PATCH 023/108] * Sat May 16 2015 Hans de Goede - 1.4.5-1 - Rebase to new upstream release 1.4.5 --- .gitignore | 2 +- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e8ef1cc..aa1f0a3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gst-plugins-ugly-1.4.3.tar.xz +gst-plugins-ugly-1.4.5.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 5be264f..6bf7f18 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.4.3 +Version: 1.4.5 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -95,6 +95,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sat May 16 2015 Hans de Goede - 1.4.5-1 +- Rebase to new upstream release 1.4.5 + * Wed Oct 1 2014 Hans de Goede - 1.4.3-1 - Rebase to new upstream release 1.4.3 diff --git a/sources b/sources index e0a5f18..1f4764c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -239f055afb4ec0cf5ff8cde5a4a5bb9b gst-plugins-ugly-1.4.3.tar.xz +6954beed7bb9a93e426dee543ff46393 gst-plugins-ugly-1.4.5.tar.xz From e3a52d037ac6526eaca6457d1d2f8239295e5a40 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 31 Oct 2015 11:00:16 +0100 Subject: [PATCH 024/108] Rebase to new upstream release 1.6.1 --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 12 +++++++++--- sources | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index aa1f0a3..55d9bcd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ gst-plugins-ugly-1.4.5.tar.xz +gst-plugins-ugly-1.6.1.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 6bf7f18..ec5325a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,13 +1,13 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.4.5 +Version: 1.6.1 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -BuildRequires: gstreamer1-devel >= 1.4.0 -BuildRequires: gstreamer1-plugins-base-devel >= 1.4.0 +BuildRequires: gstreamer1-devel >= 1.6.0 +BuildRequires: gstreamer1-plugins-base-devel >= 1.6.0 BuildRequires: gettext-devel gtk-doc BuildRequires: a52dec-devel >= 0.7.3 BuildRequires: libdvdread-devel >= 0.9.0 @@ -51,6 +51,9 @@ be shipped in gstreamer-plugins-good because: %prep %setup -q -n gst-plugins-ugly-%{version} +# hack to allow building against 1.6.0 as 1.6.1 is not yet in the buildroot +sed -i 's/GST_REQ=1.6.1/GST_REQ=1.6.0/' configure +sed -i 's/GSTPB_REQ=1.6.1/GSTPB_REQ=1.6.0/' configure %build @@ -95,6 +98,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sat Oct 31 2015 Hans de Goede - 1.6.1-1 +- Rebase to new upstream release 1.6.1 + * Sat May 16 2015 Hans de Goede - 1.4.5-1 - Rebase to new upstream release 1.4.5 diff --git a/sources b/sources index 1f4764c..b2c6196 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6954beed7bb9a93e426dee543ff46393 gst-plugins-ugly-1.4.5.tar.xz +2c20faa2406afb840699e97e913d8fb4 gst-plugins-ugly-1.6.1.tar.xz From ce255318239e657032367e8c212f43c22ccc8a87 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 24 Dec 2015 15:14:49 +0100 Subject: [PATCH 025/108] Rebase to new upstream release 1.6.2 --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 55d9bcd..fe47ea7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ gst-plugins-ugly-1.4.5.tar.xz gst-plugins-ugly-1.6.1.tar.xz +gst-plugins-ugly-1.6.2.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index ec5325a..90652a9 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.6.1 +Version: 1.6.2 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -98,6 +98,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Thu Dec 24 2015 Hans de Goede - 1.6.2-1 +- Rebase to new upstream release 1.6.2 + * Sat Oct 31 2015 Hans de Goede - 1.6.1-1 - Rebase to new upstream release 1.6.1 diff --git a/sources b/sources index b2c6196..7415594 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2c20faa2406afb840699e97e913d8fb4 gst-plugins-ugly-1.6.1.tar.xz +0f0e30336e3155443cd5bfec5c215d56 gst-plugins-ugly-1.6.2.tar.xz From 8b8117ef172ea554f6e54f776f774a247e0f379c Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Tue, 5 Jan 2016 11:40:48 +0100 Subject: [PATCH 026/108] Allow building against older gstreamer-1.6.x --- gstreamer1-plugins-ugly.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 90652a9..d09ddd2 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -51,9 +51,9 @@ be shipped in gstreamer-plugins-good because: %prep %setup -q -n gst-plugins-ugly-%{version} -# hack to allow building against 1.6.0 as 1.6.1 is not yet in the buildroot -sed -i 's/GST_REQ=1.6.1/GST_REQ=1.6.0/' configure -sed -i 's/GSTPB_REQ=1.6.1/GSTPB_REQ=1.6.0/' configure +# hack to allow building against 1.6.0 as 1.6.2 is not yet in the buildroot +sed -i 's/GST_REQ=1.6.2/GST_REQ=1.6.0/' configure +sed -i 's/GSTPB_REQ=1.6.2/GSTPB_REQ=1.6.0/' configure %build From 7ac4ae9d94e35b16dbf82f9c73dc22b584167933 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 23 Jan 2016 12:38:00 +0100 Subject: [PATCH 027/108] Rebase to new upstream release 1.6.3 --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index fe47ea7..fe86952 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ gst-plugins-ugly-1.4.5.tar.xz gst-plugins-ugly-1.6.1.tar.xz gst-plugins-ugly-1.6.2.tar.xz +gst-plugins-ugly-1.6.3.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d09ddd2..7689522 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.6.2 +Version: 1.6.3 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -51,9 +51,9 @@ be shipped in gstreamer-plugins-good because: %prep %setup -q -n gst-plugins-ugly-%{version} -# hack to allow building against 1.6.0 as 1.6.2 is not yet in the buildroot -sed -i 's/GST_REQ=1.6.2/GST_REQ=1.6.0/' configure -sed -i 's/GSTPB_REQ=1.6.2/GSTPB_REQ=1.6.0/' configure +# hack to allow building against 1.6.0 as 1.6.3 is not yet in the buildroot +sed -i 's/GST_REQ=1.6.3/GST_REQ=1.6.0/' configure +sed -i 's/GSTPB_REQ=1.6.3/GSTPB_REQ=1.6.0/' configure %build @@ -98,6 +98,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sat Jan 23 2016 Hans de Goede - 1.6.3-1 +- Rebase to new upstream release 1.6.3 + * Thu Dec 24 2015 Hans de Goede - 1.6.2-1 - Rebase to new upstream release 1.6.2 diff --git a/sources b/sources index 7415594..3d919bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0f0e30336e3155443cd5bfec5c215d56 gst-plugins-ugly-1.6.2.tar.xz +dbd92afb3816cbfa90ab1f197144a2e2 gst-plugins-ugly-1.6.3.tar.xz From de16a2dbf9e97247936f9b254b3eca452dfc323c Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Wed, 18 May 2016 13:56:26 +0200 Subject: [PATCH 028/108] Rebase to new upstream release 1.8.1 --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 10 ++++++++-- sources | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fe86952..617f510 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ gst-plugins-ugly-1.4.5.tar.xz gst-plugins-ugly-1.6.1.tar.xz gst-plugins-ugly-1.6.2.tar.xz gst-plugins-ugly-1.6.3.tar.xz +gst-plugins-ugly-1.8.1.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 7689522..97c1dce 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.6.3 +Version: 1.8.1 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -20,6 +20,7 @@ BuildRequires: libcdio-devel >= 0.82 BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel +BuildRequires: libmpg123-devel %description GStreamer is a streaming media framework, based on graphs of elements which @@ -72,7 +73,8 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %files -f gst-plugins-ugly-1.0.lang -%doc AUTHORS COPYING README REQUIREMENTS +%doc AUTHORS README REQUIREMENTS +%license COPYING %{_datadir}/gstreamer-1.0 # Plugins without external dependencies %{_libdir}/gstreamer-1.0/libgstasf.so @@ -89,6 +91,7 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %{_libdir}/gstreamer-1.0/libgstlame.so %{_libdir}/gstreamer-1.0/libgstmad.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so +%{_libdir}/gstreamer-1.0/libgstmpg123.so %{_libdir}/gstreamer-1.0/libgsttwolame.so %{_libdir}/gstreamer-1.0/libgstx264.so @@ -98,6 +101,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Wed May 18 2016 Hans de Goede - 1.8.1-1 +- Rebase to new upstream release 1.8.1 + * Sat Jan 23 2016 Hans de Goede - 1.6.3-1 - Rebase to new upstream release 1.6.3 diff --git a/sources b/sources index 3d919bf..a968bf5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dbd92afb3816cbfa90ab1f197144a2e2 gst-plugins-ugly-1.6.3.tar.xz +b6f47bcb3d924f7ef8a8b33ac4d037ab gst-plugins-ugly-1.8.1.tar.xz From 644ee23e87a3a0f7b230bd3d70ede2bb64f3897d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 12 Jun 2016 14:13:02 +0200 Subject: [PATCH 029/108] Rebase to new upstream release 1.8.2 --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 8 ++++---- sources | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 617f510..915790d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ gst-plugins-ugly-1.6.1.tar.xz gst-plugins-ugly-1.6.2.tar.xz gst-plugins-ugly-1.6.3.tar.xz gst-plugins-ugly-1.8.1.tar.xz +gst-plugins-ugly-1.8.2.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 97c1dce..c389be7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.8.1 +Version: 1.8.2 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -52,9 +52,6 @@ be shipped in gstreamer-plugins-good because: %prep %setup -q -n gst-plugins-ugly-%{version} -# hack to allow building against 1.6.0 as 1.6.3 is not yet in the buildroot -sed -i 's/GST_REQ=1.6.3/GST_REQ=1.6.0/' configure -sed -i 's/GSTPB_REQ=1.6.3/GSTPB_REQ=1.6.0/' configure %build @@ -101,6 +98,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Jun 12 2016 Hans de Goede - 1.8.2-1 +- Rebase to new upstream release 1.8.2 + * Wed May 18 2016 Hans de Goede - 1.8.1-1 - Rebase to new upstream release 1.8.1 diff --git a/sources b/sources index a968bf5..c477bf0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b6f47bcb3d924f7ef8a8b33ac4d037ab gst-plugins-ugly-1.8.1.tar.xz +f781790cf64b44522b01ab560f16d4de gst-plugins-ugly-1.8.2.tar.xz From 7754b706b70a5ecdbee33672e04008cf345f2b2d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Fri, 11 Nov 2016 16:04:14 +0100 Subject: [PATCH 030/108] Rebase to new upstream release 1.10.0 --- .gitignore | 1 + gstreamer1-plugins-ugly.spec | 9 +++++++-- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 915790d..78ef26b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ gst-plugins-ugly-1.6.2.tar.xz gst-plugins-ugly-1.6.3.tar.xz gst-plugins-ugly-1.8.1.tar.xz gst-plugins-ugly-1.8.2.tar.xz +/gst-plugins-ugly-1.10.0.tar.xz diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index c389be7..b44b1dc 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.8.2 +Version: 1.10.0 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -52,6 +52,8 @@ be shipped in gstreamer-plugins-good because: %prep %setup -q -n gst-plugins-ugly-%{version} +# Build against 1.9.2 as 1.10.0 is not yet in the stable Fedora repo +sed -i 's/1.10.0/1.9.2/' configure %build @@ -64,7 +66,7 @@ make %{?_smp_mflags} %install -make install DESTDIR=$RPM_BUILD_ROOT +%make_install %find_lang gst-plugins-ugly-1.0 rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la @@ -98,6 +100,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Fri Nov 11 2016 Hans de Goede - 1.10.0-1 +- Rebase to new upstream release 1.10.0 + * Sun Jun 12 2016 Hans de Goede - 1.8.2-1 - Rebase to new upstream release 1.8.2 diff --git a/sources b/sources index c477bf0..0a05c3f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f781790cf64b44522b01ab560f16d4de gst-plugins-ugly-1.8.2.tar.xz +a640a30f3b1bac2257f0dcaad283660b gst-plugins-ugly-1.10.0.tar.xz From 9d1646f9b3ea593faae5f51f6dd49b19e2500569 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 13 Nov 2016 09:26:41 +0100 Subject: [PATCH 031/108] Drop mpg123 plugin, it is in Fedora proper now --- gstreamer1-plugins-ugly.spec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index b44b1dc..7428cfb 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.10.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -20,7 +20,6 @@ BuildRequires: libcdio-devel >= 0.82 BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel -BuildRequires: libmpg123-devel %description GStreamer is a streaming media framework, based on graphs of elements which @@ -61,7 +60,7 @@ sed -i 's/1.10.0/1.9.2/' configure --with-package-name="gst-plugins-ugly 1.0 rpmfusion rpm" \ --with-package-origin="http://rpmfusion.org/" \ --enable-debug --enable-gtk-doc \ - --disable-static + --disable-static --disable-mpg123 make %{?_smp_mflags} @@ -90,7 +89,6 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %{_libdir}/gstreamer-1.0/libgstlame.so %{_libdir}/gstreamer-1.0/libgstmad.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so -%{_libdir}/gstreamer-1.0/libgstmpg123.so %{_libdir}/gstreamer-1.0/libgsttwolame.so %{_libdir}/gstreamer-1.0/libgstx264.so @@ -100,6 +98,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Nov 13 2016 Hans de Goede - 1.10.0-2 +- Drop mpg123 plugin, it is in Fedora proper now + * Fri Nov 11 2016 Hans de Goede - 1.10.0-1 - Rebase to new upstream release 1.10.0 From 400e0b96db039cec94e031c2c89698c94e2567b5 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Fri, 18 Nov 2016 11:27:41 +0100 Subject: [PATCH 032/108] Rebuilt for libcdio-0.94 --- gstreamer1-plugins-ugly.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 7428cfb..82d3d5b 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.10.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -98,8 +98,11 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Fri Nov 18 2016 Adrian Reber - 1.10.0-3 +- Rebuilt for libcdio-0.94 + * Sun Nov 13 2016 Hans de Goede - 1.10.0-2 -- Drop mpg123 plugin, it is in Fedora proper now +- Drop mpg123 plugin, it is in Fedora proper now * Fri Nov 11 2016 Hans de Goede - 1.10.0-1 - Rebase to new upstream release 1.10.0 From 840797b64da43521346e5ea9f79a6faa57f99234 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Wed, 30 Nov 2016 12:14:54 +0000 Subject: [PATCH 033/108] Update to 1.10.2 --- .gitignore | 9 ++------- gstreamer1-plugins-ugly.spec | 20 +++++++++++--------- sources | 2 +- 3 files changed, 14 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 78ef26b..2160cd2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,2 @@ -gst-plugins-ugly-1.4.5.tar.xz -gst-plugins-ugly-1.6.1.tar.xz -gst-plugins-ugly-1.6.2.tar.xz -gst-plugins-ugly-1.6.3.tar.xz -gst-plugins-ugly-1.8.1.tar.xz -gst-plugins-ugly-1.8.2.tar.xz -/gst-plugins-ugly-1.10.0.tar.xz +/gst-plugins-ugly-*.tar.xz +/gstreamer1-plugins-ugly-*.src.rpm diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 82d3d5b..423b080 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,13 +1,13 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.10.0 -Release: 3%{?dist} +Version: 1.10.2 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -BuildRequires: gstreamer1-devel >= 1.6.0 -BuildRequires: gstreamer1-plugins-base-devel >= 1.6.0 +BuildRequires: gstreamer1-devel >= 1.10.0 +BuildRequires: gstreamer1-plugins-base-devel >= 1.10.0 BuildRequires: gettext-devel gtk-doc BuildRequires: a52dec-devel >= 0.7.3 BuildRequires: libdvdread-devel >= 0.9.0 @@ -51,16 +51,15 @@ be shipped in gstreamer-plugins-good because: %prep %setup -q -n gst-plugins-ugly-%{version} -# Build against 1.9.2 as 1.10.0 is not yet in the stable Fedora repo -sed -i 's/1.10.0/1.9.2/' configure %build -%configure \ +%configure --disable-static \ --with-package-name="gst-plugins-ugly 1.0 rpmfusion rpm" \ --with-package-origin="http://rpmfusion.org/" \ - --enable-debug --enable-gtk-doc \ - --disable-static --disable-mpg123 + --enable-debug \ + --enable-gtk-doc \ + --disable-mpg123 make %{?_smp_mflags} @@ -98,6 +97,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Wed Nov 30 2016 leigh scott - 1.10.2-1 +- Update to 1.10.2 + * Fri Nov 18 2016 Adrian Reber - 1.10.0-3 - Rebuilt for libcdio-0.94 diff --git a/sources b/sources index 0a05c3f..3f38ddc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a640a30f3b1bac2257f0dcaad283660b gst-plugins-ugly-1.10.0.tar.xz +c157f3fcb87db2a0f457667f3d3e6a26 gst-plugins-ugly-1.10.2.tar.xz From fe15b437a25102c23ae4204ef4255af98e122db3 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Mon, 16 Jan 2017 11:09:08 +0000 Subject: [PATCH 034/108] Update to 1.11.1 --- gstreamer1-plugins-ugly.spec | 12 +++++++----- sources | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 423b080..39370fb 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,19 +1,18 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.10.2 +Version: 1.11.1 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -BuildRequires: gstreamer1-devel >= 1.10.0 -BuildRequires: gstreamer1-plugins-base-devel >= 1.10.0 +BuildRequires: gstreamer1-devel >= 1.11.1 +BuildRequires: gstreamer1-plugins-base-devel >= 1.11.1 BuildRequires: gettext-devel gtk-doc BuildRequires: a52dec-devel >= 0.7.3 BuildRequires: libdvdread-devel >= 0.9.0 BuildRequires: lame-devel >= 3.89 BuildRequires: libid3tag-devel >= 0.15.0 -BuildRequires: libmad-devel >= 0.15.0 BuildRequires: mpeg2dec-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 BuildRequires: libcdio-devel >= 0.82 @@ -86,7 +85,6 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %{_libdir}/gstreamer-1.0/libgstcdio.so %{_libdir}/gstreamer-1.0/libgstdvdread.so %{_libdir}/gstreamer-1.0/libgstlame.so -%{_libdir}/gstreamer-1.0/libgstmad.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so %{_libdir}/gstreamer-1.0/libgsttwolame.so %{_libdir}/gstreamer-1.0/libgstx264.so @@ -97,6 +95,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la %changelog +* Mon Jan 16 2017 Leigh Scott - 1.11.1-1 +- Update to 1.11.1 +- Remove libmad bits as mad is no longer included in the source + * Wed Nov 30 2016 leigh scott - 1.10.2-1 - Update to 1.10.2 diff --git a/sources b/sources index 3f38ddc..7131e8c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c157f3fcb87db2a0f457667f3d3e6a26 gst-plugins-ugly-1.10.2.tar.xz +0234dcf06a403691001b061346d15b7e gst-plugins-ugly-1.11.1.tar.xz From 0aac64c113a7ac3ab0c87e282750b8c617ce91ab Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Fri, 3 Feb 2017 10:05:25 +0000 Subject: [PATCH 035/108] update macros --- gstreamer1-plugins-ugly.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 39370fb..1847976 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -49,7 +49,7 @@ be shipped in gstreamer-plugins-good because: %prep -%setup -q -n gst-plugins-ugly-%{version} +%autosetup -n gst-plugins-ugly-%{version} %build @@ -59,13 +59,13 @@ be shipped in gstreamer-plugins-good because: --enable-debug \ --enable-gtk-doc \ --disable-mpg123 -make %{?_smp_mflags} +%make_build V=1 %install -%make_install +%make_install V=1 %find_lang gst-plugins-ugly-1.0 -rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/*.la +rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %files -f gst-plugins-ugly-1.0.lang From 54462c065a494fdd565ebe4bab4451464f0d49b5 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Mon, 27 Feb 2017 16:37:22 +0000 Subject: [PATCH 036/108] Use version macro for build requires --- gstreamer1-plugins-ugly.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 1847976..d32a758 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -6,8 +6,8 @@ License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -BuildRequires: gstreamer1-devel >= 1.11.1 -BuildRequires: gstreamer1-plugins-base-devel >= 1.11.1 +BuildRequires: gstreamer1-devel >= %{version} +BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel gtk-doc BuildRequires: a52dec-devel >= 0.7.3 BuildRequires: libdvdread-devel >= 0.9.0 From 63d9ae5c4f3f322697b6bd0a936b4b24187c57b7 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Mon, 27 Feb 2017 16:40:09 +0000 Subject: [PATCH 037/108] Update to 1.11.2 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d32a758..47f940f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.11.1 +Version: 1.11.2 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -95,6 +95,9 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %changelog +* Mon Feb 27 2017 Leigh Scott - 1.11.2-1 +- Update to 1.11.2 + * Mon Jan 16 2017 Leigh Scott - 1.11.1-1 - Update to 1.11.1 - Remove libmad bits as mad is no longer included in the source diff --git a/sources b/sources index 7131e8c..301b863 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0234dcf06a403691001b061346d15b7e gst-plugins-ugly-1.11.1.tar.xz +d7afd2d1df8789f918fb533bc023a467 gst-plugins-ugly-1.11.2.tar.xz From c5cdb5c97f191f41bc8c2efa0ea3673823c20ea7 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Mon, 27 Feb 2017 19:21:13 +0000 Subject: [PATCH 038/108] Add upstream gcc-7 commit --- asfdemux-Fix-compilation-with-gcc-7.patch | 31 +++++++++++++++++++++++ gstreamer1-plugins-ugly.spec | 5 +++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 asfdemux-Fix-compilation-with-gcc-7.patch diff --git a/asfdemux-Fix-compilation-with-gcc-7.patch b/asfdemux-Fix-compilation-with-gcc-7.patch new file mode 100644 index 0000000..56814e1 --- /dev/null +++ b/asfdemux-Fix-compilation-with-gcc-7.patch @@ -0,0 +1,31 @@ +From 66659f07f59ca9fcfdef7ae0531ffa681ee5b079 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= +Date: Mon, 27 Feb 2017 20:55:34 +0200 +Subject: [PATCH] asfdemux: Fix compilation with gcc 7 + +gstasfdemux.c: In function 'gst_asf_demux_parse_stream_object': +gstasfdemux.c:3001:39: error: '<<' in boolean context, did you mean '<' ? [-Werror=int-in-bool-context] + is_encrypted = ! !((flags & 0x8000) << 15); + ~~~~~~~~~~~~~~~~~~^~~~~~ + +https://bugzilla.gnome.org/show_bug.cgi?id=779329 +--- + gst/asfdemux/gstasfdemux.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gst/asfdemux/gstasfdemux.c b/gst/asfdemux/gstasfdemux.c +index b8d48ad6..5afeaabb 100644 +--- a/gst/asfdemux/gstasfdemux.c ++++ b/gst/asfdemux/gstasfdemux.c +@@ -2998,7 +2998,7 @@ gst_asf_demux_parse_stream_object (GstASFDemux * demux, guint8 * data, + + flags = gst_asf_demux_get_uint16 (&data, &size); + stream_id = flags & 0x7f; +- is_encrypted = ! !((flags & 0x8000) << 15); ++ is_encrypted = ! !(flags & 0x8000); + unknown = gst_asf_demux_get_uint32 (&data, &size); + + GST_DEBUG_OBJECT (demux, "Found stream %u, time_offset=%" GST_TIME_FORMAT, +-- +2.11.1 + diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 47f940f..92768bc 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -6,6 +6,8 @@ License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz +# Upstream fix +Patch0: asfdemux-Fix-compilation-with-gcc-7.patch BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel gtk-doc @@ -49,7 +51,7 @@ be shipped in gstreamer-plugins-good because: %prep -%autosetup -n gst-plugins-ugly-%{version} +%autosetup -p1 -n gst-plugins-ugly-%{version} %build @@ -97,6 +99,7 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %changelog * Mon Feb 27 2017 Leigh Scott - 1.11.2-1 - Update to 1.11.2 +- Add upstream gcc-7 commit * Mon Jan 16 2017 Leigh Scott - 1.11.1-1 - Update to 1.11.1 From 971577f283158c9138087f19c43adeacc27d9bc8 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Sun, 19 Mar 2017 19:34:23 +0100 Subject: [PATCH 039/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 92768bc..ee69df6 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.11.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -97,6 +97,9 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %changelog +* Sun Mar 19 2017 RPM Fusion Release Engineering - 1.11.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Mon Feb 27 2017 Leigh Scott - 1.11.2-1 - Update to 1.11.2 - Add upstream gcc-7 commit From 3551949775243b2e3a093acfeed845cf3c3f1a78 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Tue, 18 Apr 2017 11:30:57 +0100 Subject: [PATCH 040/108] Update to 1.11.90 --- asfdemux-Fix-compilation-with-gcc-7.patch | 31 ----------------------- gstreamer1-plugins-ugly.spec | 13 ++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 37 deletions(-) delete mode 100644 asfdemux-Fix-compilation-with-gcc-7.patch diff --git a/asfdemux-Fix-compilation-with-gcc-7.patch b/asfdemux-Fix-compilation-with-gcc-7.patch deleted file mode 100644 index 56814e1..0000000 --- a/asfdemux-Fix-compilation-with-gcc-7.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 66659f07f59ca9fcfdef7ae0531ffa681ee5b079 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= -Date: Mon, 27 Feb 2017 20:55:34 +0200 -Subject: [PATCH] asfdemux: Fix compilation with gcc 7 - -gstasfdemux.c: In function 'gst_asf_demux_parse_stream_object': -gstasfdemux.c:3001:39: error: '<<' in boolean context, did you mean '<' ? [-Werror=int-in-bool-context] - is_encrypted = ! !((flags & 0x8000) << 15); - ~~~~~~~~~~~~~~~~~~^~~~~~ - -https://bugzilla.gnome.org/show_bug.cgi?id=779329 ---- - gst/asfdemux/gstasfdemux.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/gst/asfdemux/gstasfdemux.c b/gst/asfdemux/gstasfdemux.c -index b8d48ad6..5afeaabb 100644 ---- a/gst/asfdemux/gstasfdemux.c -+++ b/gst/asfdemux/gstasfdemux.c -@@ -2998,7 +2998,7 @@ gst_asf_demux_parse_stream_object (GstASFDemux * demux, guint8 * data, - - flags = gst_asf_demux_get_uint16 (&data, &size); - stream_id = flags & 0x7f; -- is_encrypted = ! !((flags & 0x8000) << 15); -+ is_encrypted = ! !(flags & 0x8000); - unknown = gst_asf_demux_get_uint32 (&data, &size); - - GST_DEBUG_OBJECT (demux, "Found stream %u, time_offset=%" GST_TIME_FORMAT, --- -2.11.1 - diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index ee69df6..6a607a7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,13 +1,12 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.11.2 -Release: 2%{?dist} +Version: 1.11.90 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz -# Upstream fix -Patch0: asfdemux-Fix-compilation-with-gcc-7.patch + BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel gtk-doc @@ -78,7 +77,7 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %{_libdir}/gstreamer-1.0/libgstasf.so %{_libdir}/gstreamer-1.0/libgstdvdlpcmdec.so %{_libdir}/gstreamer-1.0/libgstdvdsub.so -%{_libdir}/gstreamer-1.0/libgstrmdemux.so +%{_libdir}/gstreamer-1.0/libgstrealmedia.so %{_libdir}/gstreamer-1.0/libgstxingmux.so # Plugins with external dependencies %{_libdir}/gstreamer-1.0/libgsta52dec.so @@ -97,6 +96,10 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %changelog +* Tue Apr 18 2017 Leigh Scott - 1.11.90-1 +- Update to 1.11.90 +- Upstream renamed libgstrmdemux.so to libgstrealmedia.so + * Sun Mar 19 2017 RPM Fusion Release Engineering - 1.11.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 301b863..408ffa1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d7afd2d1df8789f918fb533bc023a467 gst-plugins-ugly-1.11.2.tar.xz +ee77bed21e4dbe35e220675b91deca8e gst-plugins-ugly-1.11.90.tar.xz From 66c1a3599a8f3d7e29367294ec3ecb6babaf9f03 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Thu, 11 May 2017 19:18:36 +0100 Subject: [PATCH 041/108] Update to 1.12.0 --- gstreamer1-plugins-ugly.spec | 20 +++++++++++--------- sources | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 6a607a7..ccfac06 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,6 +1,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.11.90 +Version: 1.12.0 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -10,13 +10,10 @@ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugin BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel gtk-doc -BuildRequires: a52dec-devel >= 0.7.3 -BuildRequires: libdvdread-devel >= 0.9.0 BuildRequires: lame-devel >= 3.89 BuildRequires: libid3tag-devel >= 0.15.0 BuildRequires: mpeg2dec-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 -BuildRequires: libcdio-devel >= 0.82 BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel @@ -59,7 +56,11 @@ be shipped in gstreamer-plugins-good because: --with-package-origin="http://rpmfusion.org/" \ --enable-debug \ --enable-gtk-doc \ - --disable-mpg123 + --disable-mpg123 \ + --disable-cdio \ + --disable-dvdread \ + --disable-a52dec \ + --disable-xingmux %make_build V=1 @@ -78,13 +79,9 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %{_libdir}/gstreamer-1.0/libgstdvdlpcmdec.so %{_libdir}/gstreamer-1.0/libgstdvdsub.so %{_libdir}/gstreamer-1.0/libgstrealmedia.so -%{_libdir}/gstreamer-1.0/libgstxingmux.so # Plugins with external dependencies -%{_libdir}/gstreamer-1.0/libgsta52dec.so %{_libdir}/gstreamer-1.0/libgstamrnb.so %{_libdir}/gstreamer-1.0/libgstamrwbdec.so -%{_libdir}/gstreamer-1.0/libgstcdio.so -%{_libdir}/gstreamer-1.0/libgstdvdread.so %{_libdir}/gstreamer-1.0/libgstlame.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so %{_libdir}/gstreamer-1.0/libgsttwolame.so @@ -96,6 +93,11 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %changelog +* Thu May 11 2017 Leigh Scott - 1.12.0-1 +- Update to 1.12.0 +- remove a52dec, cdio, dvdread and xingmux plugins, + moved to gstreamer1-plugins-ugly-free package. + * Tue Apr 18 2017 Leigh Scott - 1.11.90-1 - Update to 1.11.90 - Upstream renamed libgstrmdemux.so to libgstrealmedia.so diff --git a/sources b/sources index 408ffa1..1813439 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ee77bed21e4dbe35e220675b91deca8e gst-plugins-ugly-1.11.90.tar.xz +30e815834819a4890eb1ef6ef67cf68d gst-plugins-ugly-1.12.0.tar.xz From 04f838669f4acb1cb51e3e1a75e497d5dc484df6 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Thu, 11 May 2017 19:38:11 +0100 Subject: [PATCH 042/108] Remove locale files --- gstreamer1-plugins-ugly.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index ccfac06..7ff551a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -18,6 +18,9 @@ BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel +# Provided locale files +Requires: gstreamer1-plugins-ugly-free%{?_isa} = %{version} + %description GStreamer is a streaming media framework, based on graphs of elements which operate on media data. @@ -66,11 +69,11 @@ be shipped in gstreamer-plugins-good because: %install %make_install V=1 -%find_lang gst-plugins-ugly-1.0 rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la +rm -rf %{buildroot}%{_datadir}/locale/ -%files -f gst-plugins-ugly-1.0.lang +%files %doc AUTHORS README REQUIREMENTS %license COPYING %{_datadir}/gstreamer-1.0 @@ -95,8 +98,8 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la %changelog * Thu May 11 2017 Leigh Scott - 1.12.0-1 - Update to 1.12.0 -- remove a52dec, cdio, dvdread and xingmux plugins, - moved to gstreamer1-plugins-ugly-free package. +- Add requires gstreamer1-plugins-ugly-free +- Remove locale files * Tue Apr 18 2017 Leigh Scott - 1.11.90-1 - Update to 1.11.90 From d029242fb357727daccebc6fdb0fc7d8f9658ee1 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Thu, 11 May 2017 22:23:48 +0100 Subject: [PATCH 043/108] edit changelog --- gstreamer1-plugins-ugly.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 7ff551a..9cb7ea1 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -18,7 +18,7 @@ BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel -# Provided locale files +# Provides locale files Requires: gstreamer1-plugins-ugly-free%{?_isa} = %{version} %description @@ -99,6 +99,8 @@ rm -rf %{buildroot}%{_datadir}/locale/ * Thu May 11 2017 Leigh Scott - 1.12.0-1 - Update to 1.12.0 - Add requires gstreamer1-plugins-ugly-free +- remove a52dec, cdio, dvdread and xingmux plugins, + moved to gstreamer1-plugins-ugly-free package. - Remove locale files * Tue Apr 18 2017 Leigh Scott - 1.11.90-1 From 25948cb86dff676d2fb7ba82d48e0db7d54911e3 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Fri, 12 May 2017 02:03:51 +0100 Subject: [PATCH 044/108] Remove lame plugin --- gstreamer1-plugins-ugly.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 9cb7ea1..caa78ee 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.12.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -10,7 +10,6 @@ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugin BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel gtk-doc -BuildRequires: lame-devel >= 3.89 BuildRequires: libid3tag-devel >= 0.15.0 BuildRequires: mpeg2dec-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 @@ -63,7 +62,8 @@ be shipped in gstreamer-plugins-good because: --disable-cdio \ --disable-dvdread \ --disable-a52dec \ - --disable-xingmux + --disable-xingmux \ + --disable-lame %make_build V=1 @@ -85,7 +85,6 @@ rm -rf %{buildroot}%{_datadir}/locale/ # Plugins with external dependencies %{_libdir}/gstreamer-1.0/libgstamrnb.so %{_libdir}/gstreamer-1.0/libgstamrwbdec.so -%{_libdir}/gstreamer-1.0/libgstlame.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so %{_libdir}/gstreamer-1.0/libgsttwolame.so %{_libdir}/gstreamer-1.0/libgstx264.so @@ -96,6 +95,9 @@ rm -rf %{buildroot}%{_datadir}/locale/ %changelog +* Fri May 12 2017 Leigh Scott - 1.12.0-2 +- Remove lame plugin + * Thu May 11 2017 Leigh Scott - 1.12.0-1 - Update to 1.12.0 - Add requires gstreamer1-plugins-ugly-free From 1a2226d625a8797ababb4f5d402005789a976734 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Fri, 23 Jun 2017 16:16:17 +0100 Subject: [PATCH 045/108] Update to 1.12.1 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index caa78ee..3b8337f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.12.0 -Release: 2%{?dist} +Version: 1.12.1 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -95,6 +95,9 @@ rm -rf %{buildroot}%{_datadir}/locale/ %changelog +* Fri Jun 23 2017 Leigh Scott - 1.12.1-1 +- Update to 1.12.1 + * Fri May 12 2017 Leigh Scott - 1.12.0-2 - Remove lame plugin diff --git a/sources b/sources index 1813439..946d872 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -30e815834819a4890eb1ef6ef67cf68d gst-plugins-ugly-1.12.0.tar.xz +101a9d1613c16889df43f00d859c954a gst-plugins-ugly-1.12.1.tar.xz From 27740da8021ace8a9f88e60ef7fe0eef5db78cad Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Sun, 9 Jul 2017 21:06:25 +0100 Subject: [PATCH 046/108] Remove conflicting file in devel-docs (rfbz #4589) --- gstreamer1-plugins-ugly.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 3b8337f..7129bb6 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.12.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://gstreamer.freedesktop.org/ @@ -71,6 +71,7 @@ be shipped in gstreamer-plugins-good because: %make_install V=1 rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la rm -rf %{buildroot}%{_datadir}/locale/ +rm %{buildroot}%{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-1.0/gst-plugins-ugly-plugins-1.0.devhelp2 %files @@ -95,6 +96,9 @@ rm -rf %{buildroot}%{_datadir}/locale/ %changelog +* Sun Jul 09 2017 Leigh Scott - 1.12.1-2 +- Remove conflicting file in devel-docs (rfbz #4589) + * Fri Jun 23 2017 Leigh Scott - 1.12.1-1 - Update to 1.12.1 From 32dc95646df51b610e34e13842369e9bbce532d2 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Sun, 9 Jul 2017 22:22:17 +0100 Subject: [PATCH 047/108] A better fix, add requires gstreamer1-plugins-ugly-free-devel (rfbz #4589) --- gstreamer1-plugins-ugly.spec | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 7129bb6..0d824bd 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,11 +1,13 @@ +%global src_name gst-plugins-ugly + Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.12.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia -URL: http://gstreamer.freedesktop.org/ -Source0: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz +URL: https://gstreamer.freedesktop.org/ +Source0: %{url}/src/gst-plugins-ugly/%{src_name}-%{version}.tar.xz BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} @@ -18,7 +20,7 @@ BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel # Provides locale files -Requires: gstreamer1-plugins-ugly-free%{?_isa} = %{version} +Requires: %{name}-free%{?_isa} = %{version} %description GStreamer is a streaming media framework, based on graphs of elements which @@ -35,6 +37,7 @@ gstreamer-plugins-good because: Summary: Development documentation for the GStreamer "ugly" plug-ins Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: %{name}-free-devel = %{version} BuildArch: noarch %description devel-docs @@ -49,7 +52,7 @@ be shipped in gstreamer-plugins-good because: %prep -%autosetup -p1 -n gst-plugins-ugly-%{version} +%autosetup -p1 -n %{src_name}-%{version} %build @@ -71,7 +74,7 @@ be shipped in gstreamer-plugins-good because: %make_install V=1 rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la rm -rf %{buildroot}%{_datadir}/locale/ -rm %{buildroot}%{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-1.0/gst-plugins-ugly-plugins-1.0.devhelp2 +rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %files @@ -92,10 +95,13 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-1.0/gst-plugins %files devel-docs # Take the dir and everything below it for proper dir ownership -%doc %{_datadir}/gtk-doc +%doc %{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/ %changelog +* Sun Jul 09 2017 Leigh Scott - 1.12.1-3 +- A better fix, add requires gstreamer1-plugins-ugly-free-devel (rfbz #4589) + * Sun Jul 09 2017 Leigh Scott - 1.12.1-2 - Remove conflicting file in devel-docs (rfbz #4589) From d757c4b75cd7f079995c6c3e25311f0a689fc616 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Mon, 10 Jul 2017 08:59:46 +0100 Subject: [PATCH 048/108] fix source mistake --- gstreamer1-plugins-ugly.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 0d824bd..f4cf933 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,7 +7,7 @@ Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ -Source0: %{url}/src/gst-plugins-ugly/%{src_name}-%{version}.tar.xz +Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} From a442537a2ad4ce4136839a1be44468f755cd201c Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Tue, 18 Jul 2017 16:02:43 +0100 Subject: [PATCH 049/108] Update to 1.12.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index f4cf933..4a7c395 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.12.1 -Release: 3%{?dist} +Version: 1.12.2 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -99,6 +99,9 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Tue Jul 18 2017 Leigh Scott - 1.12.2-1 +- Update to 1.12.2 + * Sun Jul 09 2017 Leigh Scott - 1.12.1-3 - A better fix, add requires gstreamer1-plugins-ugly-free-devel (rfbz #4589) diff --git a/sources b/sources index 946d872..2e31b43 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -101a9d1613c16889df43f00d859c954a gst-plugins-ugly-1.12.1.tar.xz +eb639021905a32cf3013ca5bac1b694d gst-plugins-ugly-1.12.2.tar.xz From 9ae2c6a8d71bcf78441742c7d05e474a7da25ab3 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Thu, 31 Aug 2017 15:57:06 +0200 Subject: [PATCH 050/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 4a7c395..415372e 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.12.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -99,6 +99,9 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu Aug 31 2017 RPM Fusion Release Engineering - 1.12.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue Jul 18 2017 Leigh Scott - 1.12.2-1 - Update to 1.12.2 From dc26ce3285d7dd4e31e3b768bd56dcfb986181ac Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Thu, 21 Sep 2017 07:28:24 +0100 Subject: [PATCH 051/108] Update to 1.12.3 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 415372e..5e7b836 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.12.2 -Release: 2%{?dist} +Version: 1.12.3 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -99,6 +99,9 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu Sep 21 2017 Leigh Scott - 1.12.3-1 +- Update to 1.12.3 + * Thu Aug 31 2017 RPM Fusion Release Engineering - 1.12.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild diff --git a/sources b/sources index 2e31b43..0c77563 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -eb639021905a32cf3013ca5bac1b694d gst-plugins-ugly-1.12.2.tar.xz +8a0ba8141b1548ee094eb97e7cf5471f gst-plugins-ugly-1.12.3.tar.xz From 529c0d016c222cc24130b33e4d54dedc538be2ef Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Mon, 11 Dec 2017 11:49:00 +0000 Subject: [PATCH 052/108] Update to 1.12.4 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 5e7b836..bcab524 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.12.3 +Version: 1.12.4 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -99,6 +99,9 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Mon Dec 11 2017 Leigh Scott - 1.12.4-1 +- Update to 1.12.4 + * Thu Sep 21 2017 Leigh Scott - 1.12.3-1 - Update to 1.12.3 diff --git a/sources b/sources index 0c77563..1d64d95 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8a0ba8141b1548ee094eb97e7cf5471f gst-plugins-ugly-1.12.3.tar.xz +e2b836fb2747f6ae3a1a6f33a9d8c952 gst-plugins-ugly-1.12.4.tar.xz From be9cd851867dc9123db9cb6b8f215719d032eb17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sat, 30 Dec 2017 23:40:32 +0000 Subject: [PATCH 053/108] Mass rebuild for x264 and x265 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index bcab524..0bc0ab3 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.12.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -99,6 +99,9 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Sat Dec 30 2017 Sérgio Basto - 1.12.4-2 +- Mass rebuild for x264 and x265 + * Mon Dec 11 2017 Leigh Scott - 1.12.4-1 - Update to 1.12.4 From 9363dc3416e016eebe24c17fb9bcc71f9a664b2c Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Wed, 17 Jan 2018 20:03:22 +0000 Subject: [PATCH 054/108] remove twolame (rfbz#4766) --- gstreamer1-plugins-ugly.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 0bc0ab3..e89903a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.12.4 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -15,7 +15,6 @@ BuildRequires: gettext-devel gtk-doc BuildRequires: libid3tag-devel >= 0.15.0 BuildRequires: mpeg2dec-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 -BuildRequires: twolame-devel BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel @@ -66,7 +65,8 @@ be shipped in gstreamer-plugins-good because: --disable-dvdread \ --disable-a52dec \ --disable-xingmux \ - --disable-lame + --disable-lame \ + --disable-twolame %make_build V=1 @@ -90,7 +90,6 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %{_libdir}/gstreamer-1.0/libgstamrnb.so %{_libdir}/gstreamer-1.0/libgstamrwbdec.so %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so -%{_libdir}/gstreamer-1.0/libgsttwolame.so %{_libdir}/gstreamer-1.0/libgstx264.so %files devel-docs @@ -99,6 +98,9 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Wed Jan 17 2018 Leigh Scott - 1.12.4-3 +- remove twolame (rfbz#4766) + * Sat Dec 30 2017 Sérgio Basto - 1.12.4-2 - Mass rebuild for x264 and x265 From f80cf9e2d381a8a1f79c33920674ae2aec78a8cf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 28 Feb 2018 15:28:57 -0600 Subject: [PATCH 055/108] 1.13.1 --- gstreamer1-plugins-ugly.spec | 29 +++++++++++++++++++---------- sources | 2 +- 2 files changed, 20 insertions(+), 11 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index e89903a..6ff3ac8 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.12.4 -Release: 3%{?dist} +Version: 1.13.1 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -11,7 +11,7 @@ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} -BuildRequires: gettext-devel gtk-doc +BuildRequires: gettext-devel BuildRequires: libid3tag-devel >= 0.15.0 BuildRequires: mpeg2dec-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 @@ -21,6 +21,9 @@ BuildRequires: opencore-amr-devel # Provides locale files Requires: %{name}-free%{?_isa} = %{version} +# Subpkg is empty, so no point -- rex +Obsoletes: %{name}-devel-docs < 1.13 + %description GStreamer is a streaming media framework, based on graphs of elements which operate on media data. @@ -34,7 +37,6 @@ gstreamer-plugins-good because: %package devel-docs Summary: Development documentation for the GStreamer "ugly" plug-ins -Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: %{name}-free-devel = %{version} BuildArch: noarch @@ -55,11 +57,13 @@ be shipped in gstreamer-plugins-good because: %build -%configure --disable-static \ +%configure \ + --disable-silent-rules --disable-fatal-warnings \ --with-package-name="gst-plugins-ugly 1.0 rpmfusion rpm" \ --with-package-origin="http://rpmfusion.org/" \ + --disable-static \ --enable-debug \ - --enable-gtk-doc \ + --disable-gtk-doc \ --disable-mpg123 \ --disable-cdio \ --disable-dvdread \ @@ -67,14 +71,16 @@ be shipped in gstreamer-plugins-good because: --disable-xingmux \ --disable-lame \ --disable-twolame + %make_build V=1 %install %make_install V=1 -rm %{buildroot}%{_libdir}/gstreamer-1.0/*.la + +rm -fv %{buildroot}%{_libdir}/gstreamer-1.0/*.la rm -rf %{buildroot}%{_datadir}/locale/ -rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* +rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %files @@ -92,12 +98,15 @@ rm %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so %{_libdir}/gstreamer-1.0/libgstx264.so -%files devel-docs +#files devel-docs # Take the dir and everything below it for proper dir ownership -%doc %{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/ +#doc %{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/ %changelog +* Wed Feb 28 2018 Rex Dieter - 1.13.1-1 +- 1.13.1 + * Wed Jan 17 2018 Leigh Scott - 1.12.4-3 - remove twolame (rfbz#4766) diff --git a/sources b/sources index 1d64d95..880178a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e2b836fb2747f6ae3a1a6f33a9d8c952 gst-plugins-ugly-1.12.4.tar.xz +55595432f3aeb8f04c3e9d556ac6776c gst-plugins-ugly-1.13.1.tar.xz From a789a88b8a8370aa2014bc65955007d603e0d661 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 23 Mar 2018 15:28:50 -0500 Subject: [PATCH 056/108] 1.14.0 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 6ff3ac8..6ea4928 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.13.1 +Version: 1.14.0 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -104,6 +104,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Fri Mar 23 2018 Rex Dieter - 1.14.0-1 +- 1.14.0 + * Wed Feb 28 2018 Rex Dieter - 1.13.1-1 - 1.13.1 diff --git a/sources b/sources index 880178a..445fef0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -55595432f3aeb8f04c3e9d556ac6776c gst-plugins-ugly-1.13.1.tar.xz +bcb1f8d9339176aee2b5da2a9cb2df88 gst-plugins-ugly-1.14.0.tar.xz From 21ab1924cd827ce24a654e92c2e630dc3e57ff88 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 31 May 2018 08:08:01 -0500 Subject: [PATCH 057/108] 1.14.1 --- gstreamer1-plugins-ugly.spec | 8 ++++++-- sources | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 6ea4928..752e14a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.14.0 +Version: 1.14.1 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -19,7 +19,8 @@ BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel # Provides locale files -Requires: %{name}-free%{?_isa} = %{version} +# relax dep to >= to make fedora/rpmfusion upgrades easier +Requires: %{name}-free%{?_isa} >= %{version} # Subpkg is empty, so no point -- rex Obsoletes: %{name}-devel-docs < 1.13 @@ -104,6 +105,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu May 31 2018 Rex Dieter - 1.14.1-1 +- 1.14.1 + * Fri Mar 23 2018 Rex Dieter - 1.14.0-1 - 1.14.0 diff --git a/sources b/sources index 445fef0..1f39afe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bcb1f8d9339176aee2b5da2a9cb2df88 gst-plugins-ugly-1.14.0.tar.xz +d1563f5dc0508afc6f8b261324d765d9 gst-plugins-ugly-1.14.1.tar.xz From 796ae165ac4cfa54ca389b04fca42493a02f84ae Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 31 May 2018 08:29:41 -0500 Subject: [PATCH 058/108] BR: s/mpeg2dec-devel/libmpeg2-devel/ --- gstreamer1-plugins-ugly.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 752e14a..b468772 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.14.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -13,7 +13,7 @@ BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel BuildRequires: libid3tag-devel >= 0.15.0 -BuildRequires: mpeg2dec-devel >= 0.4.0 +BuildRequires: libmpeg2-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel @@ -105,6 +105,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu May 31 2018 Rex Dieter - 1.14.1-2 +- BR: s/mpeg2dec-devel/libmpeg2-devel/ + * Thu May 31 2018 Rex Dieter - 1.14.1-1 - 1.14.1 From f80a5da58d255dc52a1301f9f89c509850fb4d67 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Thu, 26 Jul 2018 22:13:51 +0100 Subject: [PATCH 059/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: leigh123linux --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index b468772..e7526e1 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.14.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -105,6 +105,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu Jul 26 2018 RPM Fusion Release Engineering - 1.14.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu May 31 2018 Rex Dieter - 1.14.1-2 - BR: s/mpeg2dec-devel/libmpeg2-devel/ From 89ee461dfcfdd13c77cb9c66d9cce4f547450e21 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 18 Aug 2018 08:48:57 -0500 Subject: [PATCH 060/108] 1.14.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index e7526e1..fc1bc0a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.14.1 -Release: 3%{?dist} +Version: 1.14.2 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -105,6 +105,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Sat Aug 18 2018 Rex Dieter - 1.14.2-1 +- 1.14.2 + * Thu Jul 26 2018 RPM Fusion Release Engineering - 1.14.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 1f39afe..4244f6f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d1563f5dc0508afc6f8b261324d765d9 gst-plugins-ugly-1.14.1.tar.xz +ea0a800c6421c3c3cdbed3d040b8ffd3 gst-plugins-ugly-1.14.2.tar.xz From c81d0e3d5627d7fd242090b649c18bbbaafa9114 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Tue, 18 Sep 2018 11:14:22 +0100 Subject: [PATCH 061/108] 1.14.3 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index fc1bc0a..f62ea79 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.14.2 +Version: 1.14.3 Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia @@ -105,6 +105,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Tue Sep 18 2018 Leigh Scott - 1.14.3-1 +- 1.14.3 + * Sat Aug 18 2018 Rex Dieter - 1.14.2-1 - 1.14.2 diff --git a/sources b/sources index 4244f6f..a060e93 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ea0a800c6421c3c3cdbed3d040b8ffd3 gst-plugins-ugly-1.14.2.tar.xz +4b23a9a9675ff62c83b117b519f10951 gst-plugins-ugly-1.14.3.tar.xz From 0fc314a05eb7125dca0e8332969807a4d04b55f6 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Tue, 18 Sep 2018 11:21:00 +0100 Subject: [PATCH 062/108] Add BuildRequires: gcc --- gstreamer1-plugins-ugly.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index f62ea79..84c3733 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -9,6 +9,7 @@ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz +BuildRequires: gcc BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel From ec237b8cb05b64e0930e5ac1d44953cbaeef11fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Thu, 4 Oct 2018 17:47:08 +0100 Subject: [PATCH 063/108] Mass rebuild for x264 and/or x265 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 84c3733..99b3712 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.14.3 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -106,6 +106,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu Oct 04 2018 Sérgio Basto - 1.14.3-2 +- Mass rebuild for x264 and/or x265 + * Tue Sep 18 2018 Leigh Scott - 1.14.3-1 - 1.14.3 From 2ff7a2b48b8272b091c5d796c6c89a15dff6dde9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Oct 2018 15:20:28 -0500 Subject: [PATCH 064/108] 1.14.4 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 99b3712..a325b3a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.14.3 -Release: 2%{?dist} +Version: 1.14.4 +Release: 1%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -106,6 +106,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Tue Oct 09 2018 Rex Dieter - 1.14.4-1 +- 1.14.4 + * Thu Oct 04 2018 Sérgio Basto - 1.14.3-2 - Mass rebuild for x264 and/or x265 diff --git a/sources b/sources index a060e93..e4d276c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4b23a9a9675ff62c83b117b519f10951 gst-plugins-ugly-1.14.3.tar.xz +90768a0074db071175ce980064d9a1ac gst-plugins-ugly-1.14.4.tar.xz From 043a19edc0d189079422874fb8e666305f9cd24f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Nov 2018 14:13:32 -0600 Subject: [PATCH 065/108] rebuild for x264 (rf#5071) --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index a325b3a..0d643b2 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.14.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ @@ -106,6 +106,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Wed Nov 07 2018 Rex Dieter - 1.14.4-2 +- rebuild for x264 (rf#5071) + * Tue Oct 09 2018 Rex Dieter - 1.14.4-1 - 1.14.4 From d78d4488a9d71802eeaa3c6a4e49ac0eb562f54f Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 9 Feb 2019 15:23:46 +0000 Subject: [PATCH 066/108] 1.15.1 --- gstreamer1-plugins-ugly.spec | 32 +++++++------------------------- sources | 2 +- 2 files changed, 8 insertions(+), 26 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 0d643b2..b6de766 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,10 +2,9 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.14.4 -Release: 2%{?dist} +Version: 1.15.1 +Release: 1%{?dist} License: LGPLv2+ -Group: Applications/Multimedia URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -36,24 +35,6 @@ gstreamer-plugins-good because: - the license of the library is not LGPL - there are possible licensing issues with the code. - -%package devel-docs -Summary: Development documentation for the GStreamer "ugly" plug-ins -Requires: %{name} = %{version}-%{release} -Requires: %{name}-free-devel = %{version} -BuildArch: noarch - -%description devel-docs -GStreamer is a streaming media framework, based on graphs of elements which -operate on media data. - -This package contains the development documentation for the plug-ins that can't -be shipped in gstreamer-plugins-good because: -- the license is not LGPL -- the license of the library is not LGPL -- there are possible licensing issues with the code. - - %prep %autosetup -p1 -n %{src_name}-%{version} @@ -76,6 +57,7 @@ be shipped in gstreamer-plugins-good because: %make_build V=1 +gst-plugins-ugly-1.15.1.tar.xz %install %make_install V=1 @@ -100,12 +82,12 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %{_libdir}/gstreamer-1.0/libgstmpeg2dec.so %{_libdir}/gstreamer-1.0/libgstx264.so -#files devel-docs -# Take the dir and everything below it for proper dir ownership -#doc %{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/ - %changelog +* Sat Feb 09 2019 Leigh Scott - 1.15.1-1 +- 1.15.1 +- clean spec + * Wed Nov 07 2018 Rex Dieter - 1.14.4-2 - rebuild for x264 (rf#5071) diff --git a/sources b/sources index e4d276c..01e2f21 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -90768a0074db071175ce980064d9a1ac gst-plugins-ugly-1.14.4.tar.xz +142530d07aae02f326c1a0af85fe8941 gst-plugins-ugly-1.15.1.tar.xz From c81b62862fdc614708d5026a8780d6761e6c46d9 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 9 Feb 2019 15:29:16 +0000 Subject: [PATCH 067/108] fix --- gstreamer1-plugins-ugly.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index b6de766..a1f9d80 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -57,8 +57,6 @@ gstreamer-plugins-good because: %make_build V=1 -gst-plugins-ugly-1.15.1.tar.xz - %install %make_install V=1 From baf01f301e51a5bea27ffc8e025815609a18d5f8 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 4 Mar 2019 12:14:33 +0000 Subject: [PATCH 068/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Leigh Scott --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index a1f9d80..97c1435 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.15.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -82,6 +82,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Mon Mar 04 2019 RPM Fusion Release Engineering - 1.15.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Feb 09 2019 Leigh Scott - 1.15.1-1 - 1.15.1 - clean spec From b937a9ff7657f4817c49f03f895d9a164e91258b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Tue, 12 Mar 2019 03:34:16 +0000 Subject: [PATCH 069/108] Mass rebuild for x264 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 97c1435..d2e1c94 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.15.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -82,6 +82,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Tue Mar 12 2019 Sérgio Basto - 1.15.1-3 +- Mass rebuild for x264 + * Mon Mar 04 2019 RPM Fusion Release Engineering - 1.15.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 0474af6326af8a91438a6f5dcc8b4348c1807183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Mon, 18 Mar 2019 03:16:58 +0000 Subject: [PATCH 070/108] Update to 1.15.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d2e1c94..a06d47f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.15.1 -Release: 3%{?dist} +Version: 1.15.2 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -82,6 +82,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Mon Mar 18 2019 Sérgio Basto - 1.15.2-1 +- Update to 1.15.2 + * Tue Mar 12 2019 Sérgio Basto - 1.15.1-3 - Mass rebuild for x264 diff --git a/sources b/sources index 01e2f21..e8608ec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -142530d07aae02f326c1a0af85fe8941 gst-plugins-ugly-1.15.1.tar.xz +20750a9c79ec0f63a23271c02dfd1cea gst-plugins-ugly-1.15.2.tar.xz From d4edf9eb21d85633dd8263c6d8ed67c120095c14 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 24 Apr 2019 17:48:15 +0100 Subject: [PATCH 071/108] 1.16.0 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index a06d47f..80e5c2f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.15.2 +Version: 1.16.0 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -82,6 +82,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Wed Apr 24 2019 Leigh Scott - 1.16.0-1 +- 1.16.0 + * Mon Mar 18 2019 Sérgio Basto - 1.15.2-1 - Update to 1.15.2 diff --git a/sources b/sources index e8608ec..2d8cd48 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -20750a9c79ec0f63a23271c02dfd1cea gst-plugins-ugly-1.15.2.tar.xz +1ec343c58d4b17d682f7befa8453c11c gst-plugins-ugly-1.16.0.tar.xz From 98e98c11c4f2bcb7afb5adf89c6b5233fdd8e54d Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Thu, 16 May 2019 16:54:10 +0100 Subject: [PATCH 072/108] Disable mpeg2dec, it's been moved to the fedora package --- gstreamer1-plugins-ugly.spec | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 80e5c2f..d186b22 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -13,7 +13,6 @@ BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} BuildRequires: gettext-devel BuildRequires: libid3tag-devel >= 0.15.0 -BuildRequires: libmpeg2-devel >= 0.4.0 BuildRequires: orc-devel >= 0.4.5 BuildRequires: x264-devel >= 0.0.0-0.28 BuildRequires: opencore-amr-devel @@ -53,7 +52,8 @@ gstreamer-plugins-good because: --disable-a52dec \ --disable-xingmux \ --disable-lame \ - --disable-twolame + --disable-twolame \ + --disable-mpeg2dec %make_build V=1 @@ -77,7 +77,6 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* # Plugins with external dependencies %{_libdir}/gstreamer-1.0/libgstamrnb.so %{_libdir}/gstreamer-1.0/libgstamrwbdec.so -%{_libdir}/gstreamer-1.0/libgstmpeg2dec.so %{_libdir}/gstreamer-1.0/libgstx264.so From b168b9b5c325e1e8fe59fe89ffd257e6c2d75231 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Thu, 16 May 2019 16:55:29 +0100 Subject: [PATCH 073/108] update changelog --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d186b22..18c51ee 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.16.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu May 16 2019 Leigh Scott - 1.16.0-2 +- Disable mpeg2dec, it's been moved to the fedora package + * Wed Apr 24 2019 Leigh Scott - 1.16.0-1 - 1.16.0 From ae71247cf8ffe5a8cd49d134d52011defb70beca Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Fri, 9 Aug 2019 17:46:44 +0100 Subject: [PATCH 074/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Leigh Scott --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 18c51ee..cbb13c6 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.16.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Fri Aug 09 2019 RPM Fusion Release Engineering - 1.16.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu May 16 2019 Leigh Scott - 1.16.0-2 - Disable mpeg2dec, it's been moved to the fedora package From 6db9b9bcac99755b19237b9f9f0e24a5acece8a1 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 25 Sep 2019 09:42:38 +0100 Subject: [PATCH 075/108] 1.16.1 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index cbb13c6..1f2d19d 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.16.0 -Release: 3%{?dist} +Version: 1.16.1 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Wed Sep 25 2019 Leigh Scott - 1.16.1-1 +- 1.16.1 + * Fri Aug 09 2019 RPM Fusion Release Engineering - 1.16.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 2d8cd48..f5b6829 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1ec343c58d4b17d682f7befa8453c11c gst-plugins-ugly-1.16.0.tar.xz +SHA512 (gst-plugins-ugly-1.16.1.tar.xz) = 43a5c5b29dcd0968ccf7049c0d866510ca42f72bc0882c5e2b36ee6feb7074fdb32d858c284f8a650e28c47ef20f03fb376e0da1a0c01650ee4453068502700f From 21dfdb55d635f4d8aca20c2d10a0402bcf1edf23 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 17 Dec 2019 12:22:21 +0000 Subject: [PATCH 076/108] Mass rebuild for x264 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 1f2d19d..c2b2509 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.16.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Tue Dec 17 2019 Leigh Scott - 1.16.1-2 +- Mass rebuild for x264 + * Wed Sep 25 2019 Leigh Scott - 1.16.1-1 - 1.16.1 From 5ae297cd5f12143b2405828d4bffae149b47f715 Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Sat, 1 Feb 2020 10:24:52 +0000 Subject: [PATCH 077/108] 1.16.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index c2b2509..39dcb65 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.16.1 -Release: 2%{?dist} +Version: 1.16.2 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Sat Feb 01 2020 Leigh Scott - 1.16.2-1 +- 1.16.2 + * Tue Dec 17 2019 Leigh Scott - 1.16.1-2 - Mass rebuild for x264 diff --git a/sources b/sources index f5b6829..6db0821 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.16.1.tar.xz) = 43a5c5b29dcd0968ccf7049c0d866510ca42f72bc0882c5e2b36ee6feb7074fdb32d858c284f8a650e28c47ef20f03fb376e0da1a0c01650ee4453068502700f +SHA512 (gst-plugins-ugly-1.16.2.tar.xz) = 9f393043f51b12b376607e68b3b86437af86e321e3a3566e59c7f3507ed26622211df87e30a23bcc927f37bc11f53ca3b29f1b12bf58e623ce18edc88a9cdee3 From f104bbac9bceff6406f101f9c0f05bf5b727e8ea Mon Sep 17 00:00:00 2001 From: leigh123linux Date: Tue, 4 Feb 2020 19:31:00 +0000 Subject: [PATCH 078/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: leigh123linux --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 39dcb65..5eae8d7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.16.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Tue Feb 04 2020 RPM Fusion Release Engineering - 1.16.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Feb 01 2020 Leigh Scott - 1.16.2-1 - 1.16.2 From 1ad95ea2b4f0b555499cf2d4cf84403425ab7303 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Thu, 12 Mar 2020 17:50:41 +0000 Subject: [PATCH 079/108] Rebuilt for i686 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 5eae8d7..4dcf86d 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.16.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -81,6 +81,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Thu Mar 12 2020 Leigh Scott - 1.16.2-3 +- Rebuilt for i686 + * Tue Feb 04 2020 RPM Fusion Release Engineering - 1.16.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 904b458ba1f21d26c9afb64af75202e8b057c4d2 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 22 Jun 2020 14:29:23 +0100 Subject: [PATCH 080/108] 1.17.1 --- gstreamer1-plugins-ugly.spec | 48 ++++++++++++++++-------------------- sources | 2 +- 2 files changed, 22 insertions(+), 28 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 4dcf86d..986ca9b 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.16.2 -Release: 3%{?dist} +Version: 1.17.1 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -11,11 +11,11 @@ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz BuildRequires: gcc BuildRequires: gstreamer1-devel >= %{version} BuildRequires: gstreamer1-plugins-base-devel >= %{version} -BuildRequires: gettext-devel BuildRequires: libid3tag-devel >= 0.15.0 +BuildRequires: meson +BuildRequires: opencore-amr-devel BuildRequires: orc-devel >= 0.4.5 BuildRequires: x264-devel >= 0.0.0-0.28 -BuildRequires: opencore-amr-devel # Provides locale files # relax dep to >= to make fedora/rpmfusion upgrades easier @@ -39,31 +39,22 @@ gstreamer-plugins-good because: %build -%configure \ - --disable-silent-rules --disable-fatal-warnings \ - --with-package-name="gst-plugins-ugly 1.0 rpmfusion rpm" \ - --with-package-origin="http://rpmfusion.org/" \ - --disable-static \ - --enable-debug \ - --disable-gtk-doc \ - --disable-mpg123 \ - --disable-cdio \ - --disable-dvdread \ - --disable-a52dec \ - --disable-xingmux \ - --disable-lame \ - --disable-twolame \ - --disable-mpeg2dec - -%make_build V=1 +%meson \ + -D package-name='gst-plugins-ugly 1.0 rpmfusion rpm' \ + -D package-origin='http://rpmfusion.org/' \ + -D doc=disabled \ + -D cdio=disabled \ + -D dvdread=disabled \ + -D a52dec=disabled \ + -D sidplay=disabled \ + -D xingmux=disabled \ + -D mpeg2dec=disabled \ + -D nls=disabled + +%meson_build %install -%make_install V=1 - -rm -fv %{buildroot}%{_libdir}/gstreamer-1.0/*.la -rm -rf %{buildroot}%{_datadir}/locale/ -rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* - +%meson_install %files %doc AUTHORS README REQUIREMENTS @@ -81,6 +72,9 @@ rm -fv %{buildroot}%{_datadir}/gtk-doc/html/%{src_name}-plugins-1.0/* %changelog +* Mon Jun 22 2020 Leigh Scott - 1.17.1-1 +- 1.17.1 + * Thu Mar 12 2020 Leigh Scott - 1.16.2-3 - Rebuilt for i686 diff --git a/sources b/sources index 6db0821..b836c4d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.16.2.tar.xz) = 9f393043f51b12b376607e68b3b86437af86e321e3a3566e59c7f3507ed26622211df87e30a23bcc927f37bc11f53ca3b29f1b12bf58e623ce18edc88a9cdee3 +SHA512 (gst-plugins-ugly-1.17.1.tar.xz) = bdf67b2c20b5c40e433c84d1522c323c17e12d05235a73301b607f6ab5113b97bfb35b0d7b7f6d0d8a230d1026bddd692c782f5c55c649f3b14ccca549c56589 From 473ad6fdfc4717e504bd3fce5cd04d67388a4ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Tue, 7 Jul 2020 03:57:24 +0100 Subject: [PATCH 081/108] Mass rebuild for x264 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 986ca9b..5b117ae 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.17.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Tue Jul 07 2020 Sérgio Basto - 1.17.1-2 +- Mass rebuild for x264 + * Mon Jun 22 2020 Leigh Scott - 1.17.1-1 - 1.17.1 From 11e13001037b52ba371361d57296d5ac6df465b7 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 8 Jul 2020 10:04:41 +0100 Subject: [PATCH 082/108] 1.17.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 5b117ae..ea5f004 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.17.1 -Release: 2%{?dist} +Version: 1.17.2 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Wed Jul 08 2020 Leigh Scott - 1.17.2-1 +- 1.17.2 + * Tue Jul 07 2020 Sérgio Basto - 1.17.1-2 - Mass rebuild for x264 diff --git a/sources b/sources index b836c4d..4480994 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.17.1.tar.xz) = bdf67b2c20b5c40e433c84d1522c323c17e12d05235a73301b607f6ab5113b97bfb35b0d7b7f6d0d8a230d1026bddd692c782f5c55c649f3b14ccca549c56589 +SHA512 (gst-plugins-ugly-1.17.2.tar.xz) = 0c659f2469941449f90f5075c3f75b8777ae96588cce2f7d4614f82b632489af61242c0ac95f601c9c91518c9459e794ffa1e1e95aeb6cbf2ab821e18da0fd7c From 23feb80f9adfafc685364084bd6ce6f0472d9c1a Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 18 Aug 2020 09:49:26 +0100 Subject: [PATCH 083/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Leigh Scott --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index ea5f004..85a3a38 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.17.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Tue Aug 18 2020 RPM Fusion Release Engineering - 1.17.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jul 08 2020 Leigh Scott - 1.17.2-1 - 1.17.2 From fda55b21ad58c1a06ba354823953bfcb330f5095 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sun, 23 Aug 2020 14:50:35 +0100 Subject: [PATCH 084/108] 1.17.90 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 85a3a38..951d9ce 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.17.2 -Release: 2%{?dist} +Version: 1.17.90 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Sun Aug 23 2020 Leigh Scott - 1.17.90-1 +- 1.17.90 + * Tue Aug 18 2020 RPM Fusion Release Engineering - 1.17.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 4480994..819ef13 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.17.2.tar.xz) = 0c659f2469941449f90f5075c3f75b8777ae96588cce2f7d4614f82b632489af61242c0ac95f601c9c91518c9459e794ffa1e1e95aeb6cbf2ab821e18da0fd7c +SHA512 (gst-plugins-ugly-1.17.90.tar.xz) = f2414939540b293c18fad32a2b69040d49630c890bc3b042da0137dde05b5191e294eb1f15f9383310e0aafb397a51f7f3aaec26caed1544e4968b2676b737d6 From 42062f78db438a73de1e00b0b03ab1c39a360b45 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 9 Sep 2020 19:16:19 +0100 Subject: [PATCH 085/108] 1.18.0 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 951d9ce..cce7b8c 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.17.90 +Version: 1.18.0 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Wed Sep 9 2020 Leigh Scott - 1.18.0-1 +- 1.18.0 + * Sun Aug 23 2020 Leigh Scott - 1.17.90-1 - 1.17.90 diff --git a/sources b/sources index 819ef13..74e6eae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.17.90.tar.xz) = f2414939540b293c18fad32a2b69040d49630c890bc3b042da0137dde05b5191e294eb1f15f9383310e0aafb397a51f7f3aaec26caed1544e4968b2676b737d6 +SHA512 (gst-plugins-ugly-1.18.0.tar.xz) = 3b8e3bf6514e8e9d8670edbd3b1c2ddb2ae21a0ef02bc35faf684715ee9010426bc3396f65eddf491f3b96d91e6d48309afcb57cbfa46c04d938067bb1a1194b From a4b1561e92574305e73a6614845f5dc2544cb603 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sun, 1 Nov 2020 23:39:52 +0000 Subject: [PATCH 086/108] 1.18.1 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index cce7b8c..47b4eb8 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.18.0 +Version: 1.18.1 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Sun Nov 1 2020 Leigh Scott - 1.18.1-1 +- 1.18.1 + * Wed Sep 9 2020 Leigh Scott - 1.18.0-1 - 1.18.0 diff --git a/sources b/sources index 74e6eae..75620fa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.18.0.tar.xz) = 3b8e3bf6514e8e9d8670edbd3b1c2ddb2ae21a0ef02bc35faf684715ee9010426bc3396f65eddf491f3b96d91e6d48309afcb57cbfa46c04d938067bb1a1194b +SHA512 (gst-plugins-ugly-1.18.1.tar.xz) = d7cc705d0703c9f7739d9e227bf2bb6968b4833fd628c5bef45af009d31323b4e3ca0657d7ed6ca1cca701af13b01b7c739a323cfc91c152c5808ba88fa4d666 From 9721b467d614b8da1fb99ebd47ad6b45a887eda5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Fri, 27 Nov 2020 10:16:49 +0000 Subject: [PATCH 087/108] Mass rebuild for x264-0.161 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 47b4eb8..f90e3ac 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.18.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Fri Nov 27 2020 Sérgio Basto - 1.18.1-2 +- Mass rebuild for x264-0.161 + * Sun Nov 1 2020 Leigh Scott - 1.18.1-1 - 1.18.1 From 381b1db3bbc6045f4eef267df1ad72bf75610361 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sun, 13 Dec 2020 12:40:54 +0000 Subject: [PATCH 088/108] 1.18.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index f90e3ac..9882fd4 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.18.1 -Release: 2%{?dist} +Version: 1.18.2 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Sun Dec 13 2020 Leigh Scott - 1.18.2-1 +- 1.18.2 + * Fri Nov 27 2020 Sérgio Basto - 1.18.1-2 - Mass rebuild for x264-0.161 From c237da58918b8be3ac1cb1dd57d2a35eeaa67170 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sun, 13 Dec 2020 12:47:34 +0000 Subject: [PATCH 089/108] Upload source --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index 75620fa..73e0ae4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.18.1.tar.xz) = d7cc705d0703c9f7739d9e227bf2bb6968b4833fd628c5bef45af009d31323b4e3ca0657d7ed6ca1cca701af13b01b7c739a323cfc91c152c5808ba88fa4d666 +SHA512 (gst-plugins-ugly-1.18.2.tar.xz) = 09f841bf0c03ca70af37427acfcefbb92ee720ad9d8e2667474b518af0da186b63f0d965fc19a265771f13326d5322dea7fc3773e1ac2df161ae8acdb50cde41 From 35838da49073d798212542099340e2cdcc6864c1 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 3 Feb 2021 11:41:22 +0000 Subject: [PATCH 090/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Leigh Scott --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 9882fd4..31e2ca4 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -3,7 +3,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Version: 1.18.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Wed Feb 03 2021 RPM Fusion Release Engineering - 1.18.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sun Dec 13 2020 Leigh Scott - 1.18.2-1 - 1.18.2 From 7ae4f62bcf116570126e0a96852e38d5c92da3f7 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 17 Mar 2021 12:39:17 +0000 Subject: [PATCH 091/108] 1.18.4 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 31e2ca4..43eb1e7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,8 +2,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.18.2 -Release: 2%{?dist} +Version: 1.18.4 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Wed Mar 17 2021 Leigh Scott - 1.18.4-1 +- 1.18.4 + * Wed Feb 03 2021 RPM Fusion Release Engineering - 1.18.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 73e0ae4..fa8075c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.18.2.tar.xz) = 09f841bf0c03ca70af37427acfcefbb92ee720ad9d8e2667474b518af0da186b63f0d965fc19a265771f13326d5322dea7fc3773e1ac2df161ae8acdb50cde41 +SHA512 (gst-plugins-ugly-1.18.4.tar.xz) = eac02000ac3e0a54a953fe1531cb29bc6bc9913a707d1508905bf64fe0a4ef92f7d01b196259fc217fac8a344f0b2d683dd6d32210ce6b8c0acab08cb3b1322a From 215b9b57b2e38b2ad3ab9c2ae018e952110d3e73 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 8 Jun 2021 14:09:33 +0100 Subject: [PATCH 092/108] Update --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 43eb1e7..13905bb 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.18.4 +Version: 1.19.1 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -72,6 +72,9 @@ gstreamer-plugins-good because: %changelog +* Tue Jun 08 2021 Leigh Scott - 1.19.1-1 +- Update + * Wed Mar 17 2021 Leigh Scott - 1.18.4-1 - 1.18.4 diff --git a/sources b/sources index fa8075c..0f05583 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.18.4.tar.xz) = eac02000ac3e0a54a953fe1531cb29bc6bc9913a707d1508905bf64fe0a4ef92f7d01b196259fc217fac8a344f0b2d683dd6d32210ce6b8c0acab08cb3b1322a +SHA512 (gst-plugins-ugly-1.19.1.tar.xz) = 834f15084fb9d627d2a683a6e0a63b5de3aff289c4954e4fae6d26789c90d34b4e6993dd99429aae72e665508d917cb247e785e6f62a4b804466ec01d215291e From de1ca055588257d0cbd2c03b6f6506ed9c7e4f65 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Fri, 25 Jun 2021 16:18:07 +0100 Subject: [PATCH 093/108] Add epoch --- gstreamer1-plugins-ugly.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 13905bb..e26b7ac 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,6 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly +Epoch: 1 Version: 1.19.1 Release: 1%{?dist} License: LGPLv2+ From 7c6cb5e5d5827f4e4ca609546a3b55bdfab5d196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sat, 10 Jul 2021 21:57:02 +0100 Subject: [PATCH 094/108] Mass rebuild for x264-0.163 --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index e26b7ac..ff6f06a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -4,7 +4,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 Version: 1.19.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -73,6 +73,9 @@ gstreamer-plugins-good because: %changelog +* Sat Jul 10 2021 Sérgio Basto - 1:1.19.1-2 +- Mass rebuild for x264-0.163 + * Tue Jun 08 2021 Leigh Scott - 1.19.1-1 - Update From 4a5c669a6f55365367643c6a03d39bab6cd4e7fa Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 2 Aug 2021 15:20:07 +0100 Subject: [PATCH 095/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Leigh Scott --- gstreamer1-plugins-ugly.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index ff6f06a..d8e511f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -4,7 +4,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 Version: 1.19.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -73,6 +73,9 @@ gstreamer-plugins-good because: %changelog +* Mon Aug 02 2021 RPM Fusion Release Engineering - 1:1.19.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Sat Jul 10 2021 Sérgio Basto - 1:1.19.1-2 - Mass rebuild for x264-0.163 From 13eb93de9c812e6ad7f1d1e780da21932a2f9015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sat, 9 Oct 2021 14:41:50 +0100 Subject: [PATCH 096/108] gstreamer1.prov is broken and hangs the build, workarround it --- gstreamer1-plugins-ugly.spec | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d8e511f..fc0a22e 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,3 +1,7 @@ +# gstreamer1.prov is broken and hangs, workarround it +%global __gstreamer1_provides %{nil} + + %global src_name gst-plugins-ugly Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins @@ -75,6 +79,8 @@ gstreamer-plugins-good because: %changelog * Mon Aug 02 2021 RPM Fusion Release Engineering - 1:1.19.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild +- gstreamer1.prov is broken and hangs the build, workarround it + * Sat Jul 10 2021 Sérgio Basto - 1:1.19.1-2 - Mass rebuild for x264-0.163 From 5f018fce32cf75c57bdb5ba5b391b33910a88d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sat, 9 Oct 2021 20:04:42 +0100 Subject: [PATCH 097/108] Update gstreamer1-plugins-ugly to 1.19.2 --- gstreamer1-plugins-ugly.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index fc0a22e..adb00ca 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,8 +7,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 -Version: 1.19.1 -Release: 3%{?dist} +Version: 1.19.2 +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -77,6 +77,9 @@ gstreamer-plugins-good because: %changelog +* Sat Oct 09 2021 Sérgio Basto - 1:1.19.2-1 +- Update gstreamer1-plugins-ugly to 1.19.2 + * Mon Aug 02 2021 RPM Fusion Release Engineering - 1:1.19.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - gstreamer1.prov is broken and hangs the build, workarround it diff --git a/sources b/sources index 0f05583..6462c47 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.19.1.tar.xz) = 834f15084fb9d627d2a683a6e0a63b5de3aff289c4954e4fae6d26789c90d34b4e6993dd99429aae72e665508d917cb247e785e6f62a4b804466ec01d215291e +SHA512 (gst-plugins-ugly-1.19.2.tar.xz) = ca7c2bcbf212f4b768e39bc59347de28b8655b54bbd8f81ed79f5275470951c49c0f83209ebf76507e12df22a27ba1265bf2bf72abeb6ac1a52aa799ce3ee8b2 From cf7b03906a69924a5e8b1842c1d970251e6184fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Mon, 15 Nov 2021 15:03:59 +0000 Subject: [PATCH 098/108] Update gstreamer1-plugins-ugly to 1.19.3 --- gstreamer1-plugins-ugly.spec | 6 +++++- sources | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index adb00ca..2ce8442 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,7 +7,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 -Version: 1.19.2 +Version: 1.19.3 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -54,6 +54,7 @@ gstreamer-plugins-good because: -D sidplay=disabled \ -D xingmux=disabled \ -D mpeg2dec=disabled \ + -D gpl=enabled \ -D nls=disabled %meson_build @@ -77,6 +78,9 @@ gstreamer-plugins-good because: %changelog +* Mon Nov 15 2021 Sérgio Basto - 1:1.19.3-1 +- Update gstreamer1-plugins-ugly to 1.19.3 + * Sat Oct 09 2021 Sérgio Basto - 1:1.19.2-1 - Update gstreamer1-plugins-ugly to 1.19.2 diff --git a/sources b/sources index 6462c47..ebe49ce 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.19.2.tar.xz) = ca7c2bcbf212f4b768e39bc59347de28b8655b54bbd8f81ed79f5275470951c49c0f83209ebf76507e12df22a27ba1265bf2bf72abeb6ac1a52aa799ce3ee8b2 +SHA512 (gst-plugins-ugly-1.19.3.tar.xz) = 2a716a9786aa692d8d13acaf54757c1f45560c9d199847f639b2a9a3e339f9dd5e480c358c6dccfd1f529919f4852117a425e1c6bc19f2add950fca064ab818b From 5ca62384660fdfd599181ff8c87d3ee1b2e348f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= Date: Sun, 6 Feb 2022 18:06:17 +0000 Subject: [PATCH 099/108] Update gstreamer1-plugins-ugly to 1.20.0 --- gstreamer1-plugins-ugly.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 2ce8442..a28eb08 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,7 +7,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 -Version: 1.19.3 +Version: 1.20.0 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -78,6 +78,9 @@ gstreamer-plugins-good because: %changelog +* Sun Feb 06 2022 Sérgio Basto - 1:1.20.0-1 +- Update gstreamer1-plugins-ugly to 1.20.0 + * Mon Nov 15 2021 Sérgio Basto - 1:1.19.3-1 - Update gstreamer1-plugins-ugly to 1.19.3 diff --git a/sources b/sources index ebe49ce..22af0d2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.19.3.tar.xz) = 2a716a9786aa692d8d13acaf54757c1f45560c9d199847f639b2a9a3e339f9dd5e480c358c6dccfd1f529919f4852117a425e1c6bc19f2add950fca064ab818b +SHA512 (gst-plugins-ugly-1.20.0.tar.xz) = a5da400fb59733ec3433ebe40e1fd33e81429d24fbf00dc81c17b7e03e6ca0ce385782b0d3af8d7860c7780b7110872ddcdf0f3f55e60121bcded53d6acdc90d From a409b4310fc3c30105120c972371b40c09fb2b78 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:45 +0100 Subject: [PATCH 100/108] Revert "Update gstreamer1-plugins-ugly to 1.20.0" This reverts commit 5ca62384660fdfd599181ff8c87d3ee1b2e348f7. --- gstreamer1-plugins-ugly.spec | 5 +---- sources | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index a28eb08..2ce8442 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,7 +7,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 -Version: 1.20.0 +Version: 1.19.3 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -78,9 +78,6 @@ gstreamer-plugins-good because: %changelog -* Sun Feb 06 2022 Sérgio Basto - 1:1.20.0-1 -- Update gstreamer1-plugins-ugly to 1.20.0 - * Mon Nov 15 2021 Sérgio Basto - 1:1.19.3-1 - Update gstreamer1-plugins-ugly to 1.19.3 diff --git a/sources b/sources index 22af0d2..ebe49ce 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.20.0.tar.xz) = a5da400fb59733ec3433ebe40e1fd33e81429d24fbf00dc81c17b7e03e6ca0ce385782b0d3af8d7860c7780b7110872ddcdf0f3f55e60121bcded53d6acdc90d +SHA512 (gst-plugins-ugly-1.19.3.tar.xz) = 2a716a9786aa692d8d13acaf54757c1f45560c9d199847f639b2a9a3e339f9dd5e480c358c6dccfd1f529919f4852117a425e1c6bc19f2add950fca064ab818b From 3db77819a7c78f2f4054c72e08936e60012f46ae Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:51 +0100 Subject: [PATCH 101/108] Revert "Update gstreamer1-plugins-ugly to 1.19.3" This reverts commit cf7b03906a69924a5e8b1842c1d970251e6184fc. --- gstreamer1-plugins-ugly.spec | 6 +----- sources | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 2ce8442..adb00ca 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,7 +7,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 -Version: 1.19.3 +Version: 1.19.2 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -54,7 +54,6 @@ gstreamer-plugins-good because: -D sidplay=disabled \ -D xingmux=disabled \ -D mpeg2dec=disabled \ - -D gpl=enabled \ -D nls=disabled %meson_build @@ -78,9 +77,6 @@ gstreamer-plugins-good because: %changelog -* Mon Nov 15 2021 Sérgio Basto - 1:1.19.3-1 -- Update gstreamer1-plugins-ugly to 1.19.3 - * Sat Oct 09 2021 Sérgio Basto - 1:1.19.2-1 - Update gstreamer1-plugins-ugly to 1.19.2 diff --git a/sources b/sources index ebe49ce..6462c47 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.19.3.tar.xz) = 2a716a9786aa692d8d13acaf54757c1f45560c9d199847f639b2a9a3e339f9dd5e480c358c6dccfd1f529919f4852117a425e1c6bc19f2add950fca064ab818b +SHA512 (gst-plugins-ugly-1.19.2.tar.xz) = ca7c2bcbf212f4b768e39bc59347de28b8655b54bbd8f81ed79f5275470951c49c0f83209ebf76507e12df22a27ba1265bf2bf72abeb6ac1a52aa799ce3ee8b2 From e72c865a841006ba60d109e7ad6fc8d4c5e74d74 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:52 +0100 Subject: [PATCH 102/108] Revert "Update gstreamer1-plugins-ugly to 1.19.2" This reverts commit 5f018fce32cf75c57bdb5ba5b391b33910a88d02. --- gstreamer1-plugins-ugly.spec | 7 ++----- sources | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index adb00ca..fc0a22e 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -7,8 +7,8 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 -Version: 1.19.2 -Release: 1%{?dist} +Version: 1.19.1 +Release: 3%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -77,9 +77,6 @@ gstreamer-plugins-good because: %changelog -* Sat Oct 09 2021 Sérgio Basto - 1:1.19.2-1 -- Update gstreamer1-plugins-ugly to 1.19.2 - * Mon Aug 02 2021 RPM Fusion Release Engineering - 1:1.19.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - gstreamer1.prov is broken and hangs the build, workarround it diff --git a/sources b/sources index 6462c47..0f05583 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.19.2.tar.xz) = ca7c2bcbf212f4b768e39bc59347de28b8655b54bbd8f81ed79f5275470951c49c0f83209ebf76507e12df22a27ba1265bf2bf72abeb6ac1a52aa799ce3ee8b2 +SHA512 (gst-plugins-ugly-1.19.1.tar.xz) = 834f15084fb9d627d2a683a6e0a63b5de3aff289c4954e4fae6d26789c90d34b4e6993dd99429aae72e665508d917cb247e785e6f62a4b804466ec01d215291e From b7251011ebc758177280c7796c419b3ca858497d Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:53 +0100 Subject: [PATCH 103/108] Revert "gstreamer1.prov is broken and hangs the build, workarround it" This reverts commit 13eb93de9c812e6ad7f1d1e780da21932a2f9015. --- gstreamer1-plugins-ugly.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index fc0a22e..d8e511f 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -1,7 +1,3 @@ -# gstreamer1.prov is broken and hangs, workarround it -%global __gstreamer1_provides %{nil} - - %global src_name gst-plugins-ugly Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins @@ -79,8 +75,6 @@ gstreamer-plugins-good because: %changelog * Mon Aug 02 2021 RPM Fusion Release Engineering - 1:1.19.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild -- gstreamer1.prov is broken and hangs the build, workarround it - * Sat Jul 10 2021 Sérgio Basto - 1:1.19.1-2 - Mass rebuild for x264-0.163 From 4a90e18b148519db1b21ac4f3a567bd3bddeb3fd Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:54 +0100 Subject: [PATCH 104/108] Revert "- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild" This reverts commit 4a5c669a6f55365367643c6a03d39bab6cd4e7fa. --- gstreamer1-plugins-ugly.spec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index d8e511f..ff6f06a 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -4,7 +4,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 Version: 1.19.1 -Release: 3%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -73,9 +73,6 @@ gstreamer-plugins-good because: %changelog -* Mon Aug 02 2021 RPM Fusion Release Engineering - 1:1.19.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - * Sat Jul 10 2021 Sérgio Basto - 1:1.19.1-2 - Mass rebuild for x264-0.163 From bd74355ef71f4133fca3108d60e100b4364a1a79 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:55 +0100 Subject: [PATCH 105/108] Revert "Mass rebuild for x264-0.163" This reverts commit 7c6cb5e5d5827f4e4ca609546a3b55bdfab5d196. --- gstreamer1-plugins-ugly.spec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index ff6f06a..e26b7ac 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -4,7 +4,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly Epoch: 1 Version: 1.19.1 -Release: 2%{?dist} +Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ Source0: %{url}/src/%{src_name}/%{src_name}-%{version}.tar.xz @@ -73,9 +73,6 @@ gstreamer-plugins-good because: %changelog -* Sat Jul 10 2021 Sérgio Basto - 1:1.19.1-2 -- Mass rebuild for x264-0.163 - * Tue Jun 08 2021 Leigh Scott - 1.19.1-1 - Update From 50e841eab3da99a928f0242c7820e414af255f0c Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:56 +0100 Subject: [PATCH 106/108] Revert "Add epoch" This reverts commit de1ca055588257d0cbd2c03b6f6506ed9c7e4f65. --- gstreamer1-plugins-ugly.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index e26b7ac..13905bb 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,6 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Epoch: 1 Version: 1.19.1 Release: 1%{?dist} License: LGPLv2+ From b351d27c30451d1daea03e0958dbfdfc45c583e6 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 6 Jul 2022 17:40:57 +0100 Subject: [PATCH 107/108] Revert "Update" This reverts commit 215b9b57b2e38b2ad3ab9c2ae018e952110d3e73. --- gstreamer1-plugins-ugly.spec | 5 +---- sources | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/gstreamer1-plugins-ugly.spec b/gstreamer1-plugins-ugly.spec index 13905bb..43eb1e7 100644 --- a/gstreamer1-plugins-ugly.spec +++ b/gstreamer1-plugins-ugly.spec @@ -2,7 +2,7 @@ Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins Name: gstreamer1-plugins-ugly -Version: 1.19.1 +Version: 1.18.4 Release: 1%{?dist} License: LGPLv2+ URL: https://gstreamer.freedesktop.org/ @@ -72,9 +72,6 @@ gstreamer-plugins-good because: %changelog -* Tue Jun 08 2021 Leigh Scott - 1.19.1-1 -- Update - * Wed Mar 17 2021 Leigh Scott - 1.18.4-1 - 1.18.4 diff --git a/sources b/sources index 0f05583..fa8075c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gst-plugins-ugly-1.19.1.tar.xz) = 834f15084fb9d627d2a683a6e0a63b5de3aff289c4954e4fae6d26789c90d34b4e6993dd99429aae72e665508d917cb247e785e6f62a4b804466ec01d215291e +SHA512 (gst-plugins-ugly-1.18.4.tar.xz) = eac02000ac3e0a54a953fe1531cb29bc6bc9913a707d1508905bf64fe0a4ef92f7d01b196259fc217fac8a344f0b2d683dd6d32210ce6b8c0acab08cb3b1322a From 6ebdbd83e5ac4667005c23f47e809433b71ca0c4 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:20:31 +0300 Subject: [PATCH 108/108] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index fa8075c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (gst-plugins-ugly-1.18.4.tar.xz) = eac02000ac3e0a54a953fe1531cb29bc6bc9913a707d1508905bf64fe0a4ef92f7d01b196259fc217fac8a344f0b2d683dd6d32210ce6b8c0acab08cb3b1322a