Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/gst-plugins-ugly-free-1.16.1.tar.xz
|
SOURCES/gst-plugins-ugly-free-1.22.1.tar.xz
|
||||||
|
@ -1 +1 @@
|
|||||||
404e394c06d39a1bfeae0351006232cce5fbbf64 SOURCES/gst-plugins-ugly-free-1.16.1.tar.xz
|
cbab1523989d024b880d5da79b99a2fcbae8f56d SOURCES/gst-plugins-ugly-free-1.22.1.tar.xz
|
||||||
|
@ -72,16 +72,6 @@ for subdir in gst ext; do
|
|||||||
echo "**** Removing $MODULE ****"
|
echo "**** Removing $MODULE ****"
|
||||||
echo "Removing directory $dir"
|
echo "Removing directory $dir"
|
||||||
rm -r $dir || error "Cannot remove $dir"
|
rm -r $dir || error "Cannot remove $dir"
|
||||||
if grep -q "AG_GST_CHECK_PLUGIN($MODULE)" configure.ac ; then
|
|
||||||
echo "Removing element check for $MODULE"
|
|
||||||
grep -v "AG_GST_CHECK_PLUGIN($MODULE)" configure.ac > configure.ac.new && mv configure.ac.new configure.ac
|
|
||||||
fi
|
|
||||||
echo "Removing Makefile generation for $MODULE"
|
|
||||||
grep -v "$dir/Makefile" configure.ac > configure.ac.new && mv configure.ac.new configure.ac
|
|
||||||
echo "Removing documentation for $MODULE"
|
|
||||||
if grep -q "$MODULE" docs/plugins/Makefile.am ; then
|
|
||||||
grep -v $dir docs/plugins/Makefile.am > docs/plugins/Makefile.am.new && mv docs/plugins/Makefile.am.new docs/plugins/Makefile.am
|
|
||||||
fi
|
|
||||||
echo
|
echo
|
||||||
elif test $subdir = ext || test $subdir = sys; then
|
elif test $subdir = ext || test $subdir = sys; then
|
||||||
# Ignore library or system non-blacklisted plugins
|
# Ignore library or system non-blacklisted plugins
|
||||||
@ -93,12 +83,6 @@ for subdir in gst ext; do
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Fixing up AC_CONFIG_SRCDIR"
|
|
||||||
sed -e '/AC_CONFIG_SRCDIR/s/asfdemux/xingmux/g' configure.ac > configure.ac.new && mv configure.ac.new configure.ac
|
|
||||||
|
|
||||||
echo "Fixing up docs/plugins/Makefile.am"
|
|
||||||
sed -e ':a;N;$!ba;s| *\\\n\n|\n\n|g' docs/plugins/Makefile.am > docs/plugins/Makefile.am.new && mv docs/plugins/Makefile.am.new docs/plugins/Makefile.am
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
|
|
||||||
if test "x$unknown" != "x"; then
|
if test "x$unknown" != "x"; then
|
||||||
@ -107,8 +91,6 @@ if test "x$unknown" != "x"; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
autoreconf
|
|
||||||
|
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
|
|
||||||
tar cJf $NEW_SOURCE $DIRECTORY
|
tar cJf $NEW_SOURCE $DIRECTORY
|
||||||
|
@ -4,15 +4,8 @@
|
|||||||
#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.16.1
|
Version: 1.22.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: GStreamer streaming media framework "ugly" plugins
|
Summary: GStreamer streaming media framework "ugly" plugins
|
||||||
|
|
||||||
@ -30,25 +23,22 @@ URL: http://gstreamer.freedesktop.org/
|
|||||||
Source0: gst-plugins-ugly-free-%{version}.tar.xz
|
Source0: gst-plugins-ugly-free-%{version}.tar.xz
|
||||||
Source1: gst-p-ugly-cleanup.sh
|
Source1: gst-p-ugly-cleanup.sh
|
||||||
|
|
||||||
|
BuildRequires: meson >= 0.48.0
|
||||||
|
BuildRequires: gcc
|
||||||
|
|
||||||
BuildRequires: gstreamer1-devel >= %{version}
|
BuildRequires: gstreamer1-devel >= %{version}
|
||||||
BuildRequires: gstreamer1-plugins-base-devel >= %{version}
|
BuildRequires: gstreamer1-plugins-base-devel >= %{version}
|
||||||
|
|
||||||
BuildRequires: check
|
BuildRequires: check
|
||||||
BuildRequires: gettext-devel
|
BuildRequires: gettext-devel
|
||||||
BuildRequires: gtk-doc
|
|
||||||
BuildRequires: automake autoconf libtool
|
|
||||||
|
|
||||||
BuildRequires: liba52-devel
|
BuildRequires: liba52-devel
|
||||||
BuildRequires: libcdio-devel
|
BuildRequires: libcdio-devel
|
||||||
BuildRequires: libdvdread-devel
|
BuildRequires: libdvdread-devel
|
||||||
BuildRequires: python3-devel
|
|
||||||
|
|
||||||
%if %{with mpeg2}
|
|
||||||
BuildRequires: libmpeg2-devel
|
BuildRequires: libmpeg2-devel
|
||||||
%endif
|
|
||||||
|
|
||||||
# when mpeg2dec was moved here from -ugly
|
# when amr* were moved here from -ugly
|
||||||
Conflicts: gstreamer1-plugins-ugly < 1.16.0-2
|
Conflicts: gstreamer1-plugins-ugly < 1.20.5-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
|
||||||
@ -76,21 +66,18 @@ is not fully compatible with LGPL.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
# libsidplay was removed as obsolete, not forbidden
|
# libsidplay was removed as obsolete, not forbidden
|
||||||
%configure --disable-silent-rules --disable-fatal-warnings \
|
%meson \
|
||||||
--with-package-name="Fedora GStreamer-plugins-ugly package" \
|
-D package-name="Fedora GStreamer-plugins-ugly package" \
|
||||||
--with-package-origin="http://download.fedoraproject.org" \
|
-D package-origin="http://download.fedoraproject.org" \
|
||||||
--enable-debug --disable-static --enable-gtk-doc --enable-experimental \
|
-D doc=disabled \
|
||||||
%if %{with mpeg2}
|
-D amrnb=disabled -D amrwbdec=disabled -D sidplay=disabled \
|
||||||
--enable-mpeg2dec \
|
-D x264=disabled -D asfdemux=disabled -D dvdlpcmdec=disabled \
|
||||||
%else
|
-D dvdsub=disabled -D realmedia=disabled -D gpl=enabled
|
||||||
--disable-mpeg2dec \
|
|
||||||
%endif
|
|
||||||
--disable-amrnb --disable-amrwb --disable-sidplay --disable-x264
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
|
||||||
|
%meson_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
%meson_install
|
||||||
|
|
||||||
# Register as an AppStream component to be visible in the software center
|
# Register as an AppStream component to be visible in the software center
|
||||||
#
|
#
|
||||||
@ -143,30 +130,81 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|||||||
|
|
||||||
%files -f gst-plugins-ugly-%{majorminor}.lang
|
%files -f gst-plugins-ugly-%{majorminor}.lang
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc AUTHORS README REQUIREMENTS
|
%doc AUTHORS NEWS README.md README.static-linking RELEASE REQUIREMENTS
|
||||||
|
|
||||||
%{_datadir}/appdata/*.appdata.xml
|
%{_datadir}/appdata/*.appdata.xml
|
||||||
|
|
||||||
# Plugins without external dependencies
|
# Plugins without external dependencies
|
||||||
%{_libdir}/gstreamer-%{majorminor}/libgstxingmux.so
|
|
||||||
|
|
||||||
# Plugins with external dependencies
|
# Plugins with external dependencies
|
||||||
%{_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
|
%{_libdir}/gstreamer-%{majorminor}/libgstmpeg2dec.so
|
||||||
%endif
|
|
||||||
|
|
||||||
|
%if 0
|
||||||
%files devel
|
%files devel
|
||||||
%doc %{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-%{majorminor}
|
%doc %{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-%{majorminor}
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Nov 14 2019 Wim Taymans <wtaymans@redhat.com> - 1.16.1-1
|
* Thu Apr 13 2023 Wim Taymans <wtaymans@redhat.com> - 1.22.1-1
|
||||||
|
- Update to 1.22.1
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.18.4-3
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.18.4-2
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Mar 16 2021 Wim Taymans <wtaymans@redhat.com> - 1.18.4-1
|
||||||
|
- Update to 1.18.4
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 10 2020 Wim Taymans <wtaymans@redhat.com> - 1.18.2-1
|
||||||
|
- Update to 1.18.2
|
||||||
|
|
||||||
|
* Fri Oct 30 2020 Wim Taymans <wtaymans@redhat.com> - 1.18.1-1
|
||||||
|
- Update to 1.18.1
|
||||||
|
|
||||||
|
* Sat Oct 17 2020 Dominik Mierzejewski <rpm@greysector.net> - 1.18.0-2
|
||||||
|
- rebuild for libdvdread-6.1 ABI bump
|
||||||
|
|
||||||
|
* Tue Sep 8 2020 Wim Taymans <wtaymans@redhat.com> - 1.18.0-1
|
||||||
|
- Update to 1.18.0
|
||||||
|
|
||||||
|
* Fri Aug 21 2020 Wim Taymans <wtaymans@redhat.com> - 1.17.90-1
|
||||||
|
- Update to 1.17.90
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.17.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 6 2020 Wim Taymans <wtaymans@redhat.com> - 1.17.2-1
|
||||||
|
- Update to 1.17.2
|
||||||
|
|
||||||
|
* Mon Jun 22 2020 Wim Taymans <wtaymans@redhat.com> - 1.17.1-1
|
||||||
|
- Update to 1.17.1
|
||||||
|
|
||||||
|
* Mon Mar 30 2020 Adrian Reber <adrian@lisas.de> - 1.16.2-3
|
||||||
|
- Rebuilt for new libcdio (2.1.0)
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.16.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 2 2020 Wim Taymans <wtaymans@redhat.com> - 1.16.2-1
|
||||||
|
- Update to 1.16.2
|
||||||
|
|
||||||
|
* Fri Nov 15 2019 Dominik 'Rathann' Mierzejewski <rpm@greysector.net> - 1.16.1-2
|
||||||
|
- rebuild for libdvdread ABI bump
|
||||||
|
|
||||||
|
* Tue Sep 24 2019 Wim Taymans <wtaymans@redhat.com> - 1.16.1-1
|
||||||
- Update to 1.16.1
|
- Update to 1.16.1
|
||||||
- Only enable mpeg2dec on Fedora
|
|
||||||
- Resolves: rhbz#1756299
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.16.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Mon May 20 2019 Rex Dieter <rdieter@fedoraproject.org> - 1.16.0-3
|
* Mon May 20 2019 Rex Dieter <rdieter@fedoraproject.org> - 1.16.0-3
|
||||||
- Conflicts: gstreamer1-plugins-ugly < 1.16.0-2
|
- Conflicts: gstreamer1-plugins-ugly < 1.16.0-2
|
||||||
@ -174,8 +212,38 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|||||||
* Mon May 13 2019 Yaakov Selkowitz <yselkowi@redhat.com> - 1.16.0-2
|
* Mon May 13 2019 Yaakov Selkowitz <yselkowi@redhat.com> - 1.16.0-2
|
||||||
- Enable mpeg2dec plugin (#1709470)
|
- Enable mpeg2dec plugin (#1709470)
|
||||||
|
|
||||||
* Mon Aug 13 2018 Troy Dawson <tdawson@redhat.com> - 1.14.0-2
|
* Tue Apr 23 2019 Wim Taymans <wtaymans@redhat.com> - 1.16.0-1
|
||||||
- Add BuildRequest python3-devel
|
- Update to 1.16.0
|
||||||
|
|
||||||
|
* Fri Mar 01 2019 Wim Taymans <wtaymans@redhat.com> - 1.15.2-1
|
||||||
|
- Update to 1.15.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 25 2019 Wim Taymans <wtaymans@redhat.com> - 1.15.1-1
|
||||||
|
- Update to 1.15.1
|
||||||
|
|
||||||
|
* Wed Oct 03 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.4-1
|
||||||
|
- Update to 1.14.4
|
||||||
|
|
||||||
|
* Tue Sep 18 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.3-1
|
||||||
|
- Update to 1.14.3
|
||||||
|
|
||||||
|
* Mon Jul 23 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.2-1
|
||||||
|
- Update to 1.14.2
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 25 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.1-3
|
||||||
|
- rebuild (#1581325) to update Provides
|
||||||
|
|
||||||
|
* Tue May 22 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.14.1-2
|
||||||
|
- rebuild (file)
|
||||||
|
|
||||||
|
* Mon May 21 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.1-1
|
||||||
|
- Update to 1.14.1
|
||||||
|
|
||||||
* Tue Mar 20 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.0-1
|
* Tue Mar 20 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.0-1
|
||||||
- Update to 1.14.0
|
- Update to 1.14.0
|
||||||
|
Loading…
Reference in New Issue
Block a user