import gstreamer1-plugins-ugly-free-1.16.1-1.el8
This commit is contained in:
parent
8b07d2ad46
commit
8e2c36dd59
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/gst-plugins-ugly-free-1.14.0.tar.xz
|
SOURCES/gst-plugins-ugly-free-1.16.1.tar.xz
|
||||||
|
@ -1 +1 @@
|
|||||||
e1afa14dd7ab880afa494c8a6bdc3ca496337358 SOURCES/gst-plugins-ugly-free-1.14.0.tar.xz
|
404e394c06d39a1bfeae0351006232cce5fbbf64 SOURCES/gst-plugins-ugly-free-1.16.1.tar.xz
|
||||||
|
@ -4,9 +4,16 @@
|
|||||||
#global gitcommit 4ca3a22b6b33ad8be4383063e76f79c4d346535d
|
#global gitcommit 4ca3a22b6b33ad8be4383063e76f79c4d346535d
|
||||||
#global shortcommit %(c=%{gitcommit}; echo ${c:0:5})
|
#global shortcommit %(c=%{gitcommit}; echo ${c:0:5})
|
||||||
|
|
||||||
|
# Only build mpeg2dec on Fedora
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%bcond_without mpeg2
|
||||||
|
%else
|
||||||
|
%bcond_with mpeg2
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: gstreamer1-plugins-ugly-free
|
Name: gstreamer1-plugins-ugly-free
|
||||||
Version: 1.14.0
|
Version: 1.16.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: GStreamer streaming media framework "ugly" plugins
|
Summary: GStreamer streaming media framework "ugly" plugins
|
||||||
|
|
||||||
License: LGPLv2+ and LGPLv2
|
License: LGPLv2+ and LGPLv2
|
||||||
@ -36,6 +43,13 @@ BuildRequires: libcdio-devel
|
|||||||
BuildRequires: libdvdread-devel
|
BuildRequires: libdvdread-devel
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
|
%if %{with mpeg2}
|
||||||
|
BuildRequires: libmpeg2-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# when mpeg2dec was moved here from -ugly
|
||||||
|
Conflicts: gstreamer1-plugins-ugly < 1.16.0-2
|
||||||
|
|
||||||
%description
|
%description
|
||||||
GStreamer is a streaming media framework, based on graphs of elements which
|
GStreamer is a streaming media framework, based on graphs of elements which
|
||||||
operate on media data.
|
operate on media data.
|
||||||
@ -66,8 +80,12 @@ is not fully compatible with LGPL.
|
|||||||
--with-package-name="Fedora GStreamer-plugins-ugly package" \
|
--with-package-name="Fedora GStreamer-plugins-ugly package" \
|
||||||
--with-package-origin="http://download.fedoraproject.org" \
|
--with-package-origin="http://download.fedoraproject.org" \
|
||||||
--enable-debug --disable-static --enable-gtk-doc --enable-experimental \
|
--enable-debug --disable-static --enable-gtk-doc --enable-experimental \
|
||||||
--disable-amrnb --disable-amrwb \
|
%if %{with mpeg2}
|
||||||
--disable-mpeg2dec --disable-sidplay --disable-x264
|
--enable-mpeg2dec \
|
||||||
|
%else
|
||||||
|
--disable-mpeg2dec \
|
||||||
|
%endif
|
||||||
|
--disable-amrnb --disable-amrwb --disable-sidplay --disable-x264
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
@ -136,12 +154,26 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|||||||
%{_libdir}/gstreamer-%{majorminor}/libgsta52dec.so
|
%{_libdir}/gstreamer-%{majorminor}/libgsta52dec.so
|
||||||
%{_libdir}/gstreamer-%{majorminor}/libgstcdio.so
|
%{_libdir}/gstreamer-%{majorminor}/libgstcdio.so
|
||||||
%{_libdir}/gstreamer-%{majorminor}/libgstdvdread.so
|
%{_libdir}/gstreamer-%{majorminor}/libgstdvdread.so
|
||||||
|
%if %{with mpeg2}
|
||||||
|
%{_libdir}/gstreamer-%{majorminor}/libgstmpeg2dec.so
|
||||||
|
%endif
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc %{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-%{majorminor}
|
%doc %{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-%{majorminor}
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 14 2019 Wim Taymans <wtaymans@redhat.com> - 1.16.1-1
|
||||||
|
- Update to 1.16.1
|
||||||
|
- Only enable mpeg2dec on Fedora
|
||||||
|
- Resolves: rhbz#1756299
|
||||||
|
|
||||||
|
* Mon May 20 2019 Rex Dieter <rdieter@fedoraproject.org> - 1.16.0-3
|
||||||
|
- Conflicts: gstreamer1-plugins-ugly < 1.16.0-2
|
||||||
|
|
||||||
|
* Mon May 13 2019 Yaakov Selkowitz <yselkowi@redhat.com> - 1.16.0-2
|
||||||
|
- Enable mpeg2dec plugin (#1709470)
|
||||||
|
|
||||||
* Mon Aug 13 2018 Troy Dawson <tdawson@redhat.com> - 1.14.0-2
|
* Mon Aug 13 2018 Troy Dawson <tdawson@redhat.com> - 1.14.0-2
|
||||||
- Add BuildRequest python3-devel
|
- Add BuildRequest python3-devel
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user