2018-03-15 08:56:17 +00:00
%global majorminor 1.0
2012-08-06 18:04:06 +00:00
2015-06-08 13:23:25 +00:00
#global gitrel 140
#global gitcommit a70055b58568f7304ba46bd8742232337013487b
#global shortcommit %(c=%{gitcommit}; echo ${c:0:5})
2015-05-05 08:53:07 +00:00
2012-08-14 23:28:44 +00:00
%global _glib2 2.32.0
2012-08-06 18:04:06 +00:00
%global _libxml2 2.4.0
%global _gobject_introspection 1.31.1
Name : gstreamer1
2018-05-21 07:42:06 +00:00
Version : 1.14.1
2018-06-06 09:48:09 +00:00
Release : 3%{?gitcommit:.git%{shortcommit} }%{?dist}
2012-08-06 18:04:06 +00:00
Summary : GStreamer streaming media framework runtime
License : LGPLv2+
URL : http://gstreamer.freedesktop.org/
2015-05-05 08:53:07 +00:00
%if 0%{?gitrel}
# git clone git://anongit.freedesktop.org/gstreamer/gstreamer
# cd gstreamer; git reset --hard %{gitcommit}; ./autogen.sh; make; make distcheck
Source0 : gstreamer-%{version} .tar.xz
%else
2012-08-06 18:04:06 +00:00
Source0 : http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version} .tar.xz
2015-05-05 08:53:07 +00:00
%endif
2012-09-09 21:43:29 +00:00
## For GStreamer RPM provides
Patch0 : gstreamer-inspect-rpm-format.patch
Source1 : gstreamer1.prov
Source2 : gstreamer1.attr
2012-08-06 18:04:06 +00:00
2018-06-06 09:48:09 +00:00
# https://bugzilla.gnome.org/show_bug.cgi?id=767255
Patch1 : 0001-WIP-buffer-caps-event-message-attempt-to-silence-com.patch
2012-08-06 18:04:06 +00:00
BuildRequires : glib2-devel >= %{_glib2}
BuildRequires : libxml2-devel >= %{_libxml2}
BuildRequires : gobject-introspection-devel >= %{_gobject_introspection}
BuildRequires : bison
BuildRequires : flex
BuildRequires : m4
BuildRequires : check-devel
BuildRequires : gtk-doc >= 1.3
BuildRequires : gettext
BuildRequires : pkgconfig
2018-02-24 22:17:44 +00:00
# ./autogen.sh deps
BuildRequires : automake gettext-devel libtool
2012-08-06 18:04:06 +00:00
BuildRequires : chrpath
### documentation requirements
BuildRequires : python2
BuildRequires : openjade
2018-03-15 08:31:53 +00:00
BuildRequires : texlive-jadetex
2012-08-06 18:04:06 +00:00
BuildRequires : libxslt
BuildRequires : docbook-style-dsssl
BuildRequires : docbook-style-xsl
BuildRequires : docbook-utils
BuildRequires : transfig
BuildRequires : netpbm-progs
2018-03-15 08:31:53 +00:00
BuildRequires : texlive-dvips
2012-08-06 18:04:06 +00:00
BuildRequires : ghostscript
2017-10-13 18:20:37 +00:00
%if 0%{?fedora} || 0%{?rhel} > 7
2013-03-27 20:01:51 +00:00
BuildRequires : xfig
%endif
2012-08-06 18:04:06 +00:00
%description
GStreamer is a streaming media framework, based on graphs of filters which
operate on media data. Applications using this library can do anything
from real-time sound processing to playing videos, and just about anything
else media-related. Its plugin-based architecture means that new data
types or processing capabilities can be added simply by installing new
plugins.
%package devel
Summary : Libraries/include files for GStreamer streaming media framework
2018-02-24 19:23:31 +00:00
Requires : %{name} %{?isa} = %{version} -%{release}
Requires : glib2-devel%{?_isa} >= %{_glib2}
Requires : libxml2-devel%{?_isa} >= %{_libxml2}
2012-08-06 18:04:06 +00:00
Requires : check-devel
2018-02-23 22:21:02 +00:00
# file /usr/include/gstreamer-1.0/gst/base/gstaggregator.h conflicts between attempted installs of gstreamer1-plugins-bad-free-devel-1.12.4-3.fc28.x86_64 and gstreamer1-devel-1.13.1-1.fc29.x86_64
Conflicts : gstreamer1-plugins-bad-free-devel < 1.13
2012-08-06 18:04:06 +00:00
%description devel
The %{name} -devel package contains libraries and header files for
developing applications that use %{name} .
%package devel-docs
Summary : Developer documentation for GStreamer streaming media framework
Requires : %{name} = %{version} -%{release}
BuildArch : noarch
%description devel-docs
This %{name} -devel-docs contains developer documentation for the
GStreamer streaming media framework.
%prep
%setup -q -n gstreamer-%{version}
2012-09-09 21:43:29 +00:00
%patch0 -p1 -b .rpm-provides
2018-06-06 09:48:09 +00:00
%patch1 -p1 -b .cast-align
2012-08-06 18:04:06 +00:00
%build
2018-02-24 22:17:44 +00:00
NOCONFIGURE=1 \
./autogen.sh
2012-08-06 18:04:06 +00:00
%configure \
--with-package-name='Fedora GStreamer package' \
--with-package-origin='http://download.fedoraproject.org' \
2012-09-19 12:16:38 +00:00
--enable-gtk-doc \
2012-08-06 18:04:06 +00:00
--enable-debug \
2018-02-24 19:23:31 +00:00
--disable-fatal-warnings \
--disable-silent-rules \
2012-08-06 18:04:06 +00:00
--disable-tests --disable-examples
2018-02-24 19:23:31 +00:00
%make_build V=1
2012-08-06 18:04:06 +00:00
%install
2018-02-24 19:23:31 +00:00
%make_install
2012-08-06 18:04:06 +00:00
%find_lang gstreamer-%{majorminor}
2012-09-09 21:43:29 +00:00
# Clean out files that should not be part of the rpm.
2018-02-24 19:23:31 +00:00
find $RPM_BUILD_ROOT -name '*.la' -exec rm -fv {} ';'
find $RPM_BUILD_ROOT -name '*.a' -exec rm -fv {} ';'
2012-09-09 21:43:29 +00:00
# Add the provides script
install -m0755 -D %{SOURCE1} $RPM_BUILD_ROOT %{_rpmconfigdir} /gstreamer1.prov
# Add the gstreamer plugin file attribute entry (rpm >= 4.9.0)
install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT %{_rpmconfigdir} /fileattrs/gstreamer1.attr
2012-08-06 18:04:06 +00:00
2018-02-24 19:23:31 +00:00
%ldconfig_scriptlets
2012-08-06 18:04:06 +00:00
%files -f gstreamer-%{majorminor}.lang
2015-09-26 07:38:12 +00:00
%license COPYING
%doc AUTHORS NEWS README RELEASE
2012-08-06 18:04:06 +00:00
%{_libdir} /libgstreamer-%{majorminor} .so.*
%{_libdir} /libgstbase-%{majorminor} .so.*
%{_libdir} /libgstcheck-%{majorminor} .so.*
%{_libdir} /libgstcontroller-%{majorminor} .so.*
%{_libdir} /libgstnet-%{majorminor} .so.*
%{_libexecdir} /gstreamer-%{majorminor} /
%dir %{_libdir} /gstreamer-%{majorminor}
%{_libdir} /gstreamer-%{majorminor} /libgstcoreelements.so
2016-01-04 10:58:34 +00:00
%{_libdir} /gstreamer-%{majorminor} /libgstcoretracers.so
2012-08-06 18:04:06 +00:00
%{_libdir} /girepository-1.0/Gst-%{majorminor} .typelib
%{_libdir} /girepository-1.0/GstBase-%{majorminor} .typelib
%{_libdir} /girepository-1.0/GstCheck-%{majorminor} .typelib
%{_libdir} /girepository-1.0/GstController-%{majorminor} .typelib
%{_libdir} /girepository-1.0/GstNet-%{majorminor} .typelib
%{_bindir} /gst-inspect-%{majorminor}
%{_bindir} /gst-launch-%{majorminor}
2016-01-04 10:58:34 +00:00
%{_bindir} /gst-stats-%{majorminor}
2012-08-06 18:04:06 +00:00
%{_bindir} /gst-typefind-%{majorminor}
2012-09-09 21:43:29 +00:00
%{_rpmconfigdir} /gstreamer1.prov
%{_rpmconfigdir} /fileattrs/gstreamer1.attr
2012-08-06 18:04:06 +00:00
%doc %{_mandir} /man1/gst-inspect-%{majorminor} .*
%doc %{_mandir} /man1/gst-launch-%{majorminor} .*
2017-06-20 13:29:45 +00:00
%doc %{_mandir} /man1/gst-stats-%{majorminor} .*
2012-08-06 18:04:06 +00:00
%doc %{_mandir} /man1/gst-typefind-%{majorminor} .*
2015-05-05 08:53:07 +00:00
%{_datadir} /bash-completion/completions/gst-inspect-1.0
%{_datadir} /bash-completion/completions/gst-launch-1.0
%{_datadir} /bash-completion/helpers/gst
2012-08-06 18:04:06 +00:00
%files devel
%dir %{_includedir} /gstreamer-%{majorminor}
%dir %{_includedir} /gstreamer-%{majorminor} /gst
%dir %{_includedir} /gstreamer-%{majorminor} /gst/base
%dir %{_includedir} /gstreamer-%{majorminor} /gst/check
%dir %{_includedir} /gstreamer-%{majorminor} /gst/controller
%dir %{_includedir} /gstreamer-%{majorminor} /gst/net
%{_includedir} /gstreamer-%{majorminor} /gst/*.h
%{_includedir} /gstreamer-%{majorminor} /gst/base/*.h
%{_includedir} /gstreamer-%{majorminor} /gst/check/*.h
%{_includedir} /gstreamer-%{majorminor} /gst/controller/*.h
%{_includedir} /gstreamer-%{majorminor} /gst/net/*.h
%{_libdir} /libgstreamer-%{majorminor} .so
%{_libdir} /libgstbase-%{majorminor} .so
%{_libdir} /libgstcheck-%{majorminor} .so
%{_libdir} /libgstcontroller-%{majorminor} .so
%{_libdir} /libgstnet-%{majorminor} .so
%{_datadir} /gir-1.0/Gst-%{majorminor} .gir
%{_datadir} /gir-1.0/GstBase-%{majorminor} .gir
%{_datadir} /gir-1.0/GstCheck-%{majorminor} .gir
%{_datadir} /gir-1.0/GstController-%{majorminor} .gir
%{_datadir} /gir-1.0/GstNet-%{majorminor} .gir
%{_datadir} /aclocal/gst-element-check-%{majorminor} .m4
%{_libdir} /pkgconfig/gstreamer-%{majorminor} .pc
%{_libdir} /pkgconfig/gstreamer-base-%{majorminor} .pc
%{_libdir} /pkgconfig/gstreamer-controller-%{majorminor} .pc
%{_libdir} /pkgconfig/gstreamer-check-%{majorminor} .pc
%{_libdir} /pkgconfig/gstreamer-net-%{majorminor} .pc
%files devel-docs
%doc %{_datadir} /gtk-doc/html/gstreamer-%{majorminor}
%doc %{_datadir} /gtk-doc/html/gstreamer-libs-%{majorminor}
%doc %{_datadir} /gtk-doc/html/gstreamer-plugins-%{majorminor}
%changelog
2018-06-06 09:48:09 +00:00
* Wed Jun 06 2018 Bastien Nocera <bnocera@redhat.com> - 1.14.1-3}
- Add test patch to shut -Wcast-align warnings
2018-05-25 08:11:26 +00:00
* Fri May 25 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.1-2
- Update gstreamer1.prov file: Only scan in plugin directories
and relax file name and type. (#1581325)
2018-05-21 07:42:06 +00:00
* Mon May 21 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.1-1
- Update to 1.14.1
2018-05-21 07:56:28 +00:00
- Remove obsolete patch
2018-05-21 07:42:06 +00:00
2018-03-20 14:02:33 +00:00
* Tue Mar 20 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.0-1
- Update to 1.14.0
2018-03-14 10:33:13 +00:00
* Wed Mar 14 2018 Wim Taymans <wtaymans@redhat.com> - 1.13.91-1
- Update to 1.13.91
2018-03-15 08:31:53 +00:00
- fix doc dependencies
2018-03-14 10:33:13 +00:00
2018-03-05 09:23:56 +00:00
* Mon Mar 05 2018 Wim Taymans <wtaymans@redhat.com> - 1.13.90-1
- Update to 1.13.90
2018-02-24 19:23:31 +00:00
* Fri Feb 23 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.13.1-3
- %%build: --disable-fatal-warnings --disable-silent-rules
- fix rpath harder
- use %%ldconfig_scriptlets, %%make_build, %%make_install
- -devel: tighten deps with %%{_isa}
2018-02-23 22:21:02 +00:00
* Fri Feb 23 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.13.1-2
- -devel: Conflicts: gstreamer1-plugins-bad-free-devel < 1.13
2018-02-22 08:11:58 +00:00
* Thu Feb 22 2018 Wim Taymans <wtaymans@redhat.com> - 1.13.1-1
- Update to 1.13.1
- Update rpm patch
2018-02-22 08:56:51 +00:00
- Fix compiler error
2018-02-22 08:11:58 +00:00
2018-02-07 15:38:29 +00:00
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-12-11 09:18:28 +00:00
* Mon Dec 11 2017 Wim Taymans <wtaymans@redhat.com> - 1.12.4-1
- Update to 1.12.4
2017-10-13 18:20:37 +00:00
* Fri Oct 13 2017 Troy Dawson <tdawson@redhat.com> - 1.12.3-2
- Cleanup spec file conditionals
2017-09-19 10:12:48 +00:00
* Tue Sep 19 2017 Wim Taymans <wtaymans@redhat.com> - 1.12.3-1
- Update to 1.12.3
2017-08-02 23:08:53 +00:00
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2017-07-26 12:11:58 +00:00
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-07-17 07:19:27 +00:00
* Mon Jul 17 2017 Wim Taymans <wtaymans@redhat.com> - 1.12.2-1
- Update to 1.12.2
2017-06-20 11:37:36 +00:00
* Tue Jun 20 2017 Wim Taymans <wtaymans@redhat.com> - 1.12.1-1
- Update to 1.12.1
2017-06-20 13:29:45 +00:00
- Add gst-stats manpage
2017-06-20 11:37:36 +00:00
2017-05-10 07:27:49 +00:00
* Wed May 10 2017 Wim Taymans <wtaymans@redhat.com> - 1.12.0-1
- Update to 1.12.0
2017-04-28 11:30:07 +00:00
* Fri Apr 28 2017 Wim Taymans <wtaymans@redhat.com> - 1.11.91-1
- Update to 1.11.91
2017-04-11 07:23:58 +00:00
* Tue Apr 11 2017 Wim Taymans <wtaymans@redhat.com> - 1.11.90-1
- Update to 1.11.90
2017-03-30 14:51:34 +00:00
* Thu Mar 30 2017 Wim Taymans <wtaymans@redhat.com> - 1.11.2-2
- rebuild for https://github.com/UnitedRPMs/packages/issues/106#issuecomment-290404434
2017-02-24 18:35:06 +00:00
* Fri Feb 24 2017 Wim Taymans <wtaymans@redhat.com> - 1.11.2-1
- Update to 1.11.2
2017-02-10 12:19:37 +00:00
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-02-20 09:59:06 +00:00
- fix build
2017-02-10 12:19:37 +00:00
2017-01-13 08:03:01 +00:00
* Fri Jan 13 2017 Wim Taymans <wtaymans@redhat.com> - 1.11.1-1
- Update to 1.11.1
- update rpm patch
2016-12-05 08:24:08 +00:00
* Mon Dec 05 2016 Wim Taymans <wtaymans@redhat.com> - 1.10.2-1
- Update to 1.10.2
2016-11-28 08:36:53 +00:00
* Mon Nov 28 2016 Wim Taymans <wtaymans@redhat.com> - 1.10.1-1
- Update to 1.10.1
2016-11-03 07:58:01 +00:00
* Thu Nov 3 2016 Wim Taymans <wtaymans@redhat.com> - 1.10.0-1
- Update to 1.10.0
2016-09-30 14:02:56 +00:00
* Fri Sep 30 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.90-1
- Update to 1.9.90
2016-09-30 15:17:30 +00:00
- remove obsolete patches
2016-09-30 14:02:56 +00:00
2016-09-08 10:17:04 +00:00
* Thu Sep 8 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1.9.2-3
- fix build on Power64
2016-09-01 12:19:37 +00:00
* Thu Sep 01 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.2-2
- fix build on s390x
2016-09-01 09:47:03 +00:00
* Thu Sep 01 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.2-1
- Update to 1.9.2
2016-09-01 10:11:56 +00:00
- gstconfig.h was moved to normal include dir
2016-09-01 09:47:03 +00:00
2016-07-07 07:04:19 +00:00
* Thu Jul 07 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.1-1
- Update to 1.9.1
2016-06-09 13:46:58 +00:00
* Thu Jun 09 2016 Wim Taymans <wtaymans@redhat.com> - 1.8.2-1
- Update to 1.8.2
2016-04-21 09:30:11 +00:00
* Thu Apr 21 2016 Wim Taymans <wtaymans@redhat.com> - 1.8.1-1
- Update to 1.8.1
2016-03-24 14:46:32 +00:00
* Thu Mar 24 2016 Wim Taymans <wtaymans@redhat.com> - 1.8.0-1
- Update to 1.8.0
2016-03-16 08:01:24 +00:00
* Wed Mar 16 2016 Wim Taymans <wtaymans@redhat.com> - 1.7.91-1
- Update to 1.7.91
2016-03-02 15:26:16 +00:00
* Wed Mar 02 2016 Wim Taymans <wtaymans@redhat.com> - 1.7.90-1
- Update to 1.7.90
2016-02-19 14:00:52 +00:00
* Fri Feb 19 2016 Wim Taymans <wtaymans@redhat.com> - 1.7.2-1
- Update to 1.7.2
2016-02-03 23:26:20 +00:00
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-04 10:58:34 +00:00
* Mon Jan 4 2016 Wim Taymans <wtaymans@redhat.com> - 1.7.1-1
- Update to 1.7.1
- update rpm inspect patch
- add gst-stats
- add core traces
2015-12-15 09:25:03 +00:00
* Tue Dec 15 2015 Wim Taymans <wtaymans@redhat.com> - 1.6.2-1
- Update to 1.6.2
2015-11-02 09:29:17 +00:00
* Mon Nov 2 2015 Wim Taymans <wtaymans@redhat.com> - 1.6.1-1
- Update to 1.6.1
2015-09-26 13:25:40 +00:00
* Sat Sep 26 2015 Kalev Lember <klember@redhat.com> - 1.6.0-2
- Remove lib64 rpaths from newly added binaries
2015-09-26 07:37:28 +00:00
* Sat Sep 26 2015 Kalev Lember <klember@redhat.com> - 1.6.0-1
- Update to 1.6.0
2015-09-26 07:38:12 +00:00
- Use license macro for COPYING
2015-09-26 07:37:28 +00:00
2015-09-21 08:11:18 +00:00
* Mon Sep 21 2015 Wim Taymans <wtaymans@redhat.com> - 1.5.91-1
- Update to 1.5.91
2015-08-19 11:57:49 +00:00
* Wed Aug 19 2015 Wim Taymans <wtaymans@redhat.com> - 1.5.90-1
- Update to 1.5.90
2015-06-25 07:55:57 +00:00
* Thu Jun 25 2015 Wim Taymans <wtaymans@redhat.com> - 1.5.2-1
- Update to 1.5.2
2015-06-17 09:56:52 +00:00
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-05-05 08:53:07 +00:00
* Tue May 5 2015 Wim Taymans <wtaymans@redhat.com> - 1.5.1-1
- Update to 1.5.1
- add new bash-completion scripts
- gstconfig.h got moved
2015-02-21 21:24:11 +00:00
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.4.5-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
2015-01-28 15:50:38 +00:00
* Wed Jan 28 2015 Bastien Nocera <bnocera@redhat.com> 1.4.5-1
- Update to 1.4.5
2014-11-14 14:11:32 +00:00
* Fri Nov 14 2014 Kalev Lember <kalevlember@gmail.com> - 1.4.4-1
- Update to 1.4.4
2014-09-22 10:01:52 +00:00
* Mon Sep 22 2014 Wim Taymans <wtaymans@redhat.com> - 1.4.2-1
- Update to 1.4.2
2014-08-29 08:07:37 +00:00
* Fri Aug 29 2014 Wim Taymans <wtaymans@redhat.com> - 1.4.1-1
- Update to 1.4.1
2014-08-16 19:21:47 +00:00
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-22 17:08:23 +00:00
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.4.0-2
- Rebuilt for gobject-introspection 1.41.4
2014-07-22 07:45:49 +00:00
* Tue Jul 22 2014 Wim Taymans <wtaymans@redhat.com> - 1.4.0-1
- Update to 1.4.0
2014-07-11 14:49:01 +00:00
* Fri Jul 11 2014 Wim Taymans <wtaymans@redhat.com> - 1.3.91-1
- Update to 1.3.91
2014-06-30 07:27:47 +00:00
* Mon Jun 30 2014 Richard Hughes <rhughes@redhat.com> - 1.3.90-1
- Update to 1.3.90
2014-06-07 19:00:11 +00:00
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-04-20 22:54:24 +00:00
* Sun Apr 20 2014 Brian Pepple <bpepple@fedoraproject.org> - 1.2.4-1
- Update to 1.2.4.
2014-02-10 13:51:09 +00:00
* Mon Feb 10 2014 Brian Pepple <bpepple@fedoraproject.org> - 1.2.3-1
- Update to 1.2.3.
2013-12-27 14:22:50 +00:00
* Fri Dec 27 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.2.2-1
- Update to 1.2.2.
2013-11-11 14:29:47 +00:00
* Mon Nov 11 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.2.1-1
- Update to 1.2.1.
2013-09-24 13:51:17 +00:00
* Tue Sep 24 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.2.0-1
- Update to 1.2.0.
2013-09-19 12:53:34 +00:00
* Thu Sep 19 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.1.90-1
- Update to 1.1.90.
2013-08-28 14:09:53 +00:00
* Wed Aug 28 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.1.4-1
- Update to 1.1.4.
2013-07-29 12:59:11 +00:00
* Mon Jul 29 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.1.3-1
- Update to 1.1.3.
2013-07-12 13:28:52 +00:00
* Fri Jul 12 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.1.2-1
- Update to 1.1.2.
2013-04-26 13:58:01 +00:00
* Fri Apr 26 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.0.7-1
- Update to 1.0.7.
2013-03-27 20:01:51 +00:00
* Wed Mar 27 2013 Adam Jackson <ajax@redhat.com>
- Tweak BRs for RHEL
2013-03-22 15:30:12 +00:00
* Fri Mar 22 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.0.6-1
- Update to 1.0.6.
2013-03-22 15:48:53 +00:00
- Remove BR on PyXML.
2013-03-22 15:30:12 +00:00
2013-02-14 00:39:39 +00:00
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-08 15:05:00 +00:00
* Tue Jan 8 2013 Brian Pepple <bpepple@fedoraproject.org> - 1.0.5-1
- Update to 1.0.5.
2012-12-19 01:17:43 +00:00
* Wed Dec 19 2012 Brian Pepple <bpepple@fedoraproject.org> - 1.0.4-1
- Update to 1.0.4
2012-11-21 15:33:54 +00:00
* Wed Nov 21 2012 Brian Pepple <bpepple@fedoraproject.org> - 1.0.3-1
- Update to 1.0.3
2012-10-25 14:08:41 +00:00
* Thu Oct 25 2012 Brian Pepple <bpepple@fedoraproject.org> - 1.0.2-1
- Update to 1.0.2.
2012-10-07 19:20:56 +00:00
* Sun Oct 7 2012 Brian Pepple <bpepple@fedoraproject.org> - 1.0.1-1
- Update to 1.0.1
2012-10-01 18:53:57 +00:00
* Mon Oct 1 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.0.0-2
- Enable verbose build
2012-09-24 16:30:22 +00:00
* Mon Sep 24 2012 Brian Pepple <bpepple@fedoraproject.org> - 1.0.0-1
- Update to 1.0.0.
2012-09-19 12:16:38 +00:00
* Wed Sep 19 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.11.99-1
- Update to 0.11.99
2012-09-14 11:43:00 +00:00
* Fri Sep 14 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.11.94-1
- Update to 0.11.94.
2012-09-09 21:43:29 +00:00
* Sat Sep 8 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.11.93-2
- Add patch to gst-inspect to generate RPM provides
- Add RPM find-provides script
2012-08-14 23:28:44 +00:00
* Tue Aug 14 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.11.93-1
- Update to 0.11.93.
- Bump minimum version of glib2 needed.
2012-08-06 18:04:06 +00:00
* Fri Aug 3 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.11.92-2
- Use %%global instead of %%define.
- Remove rpath.
* Tue Jul 17 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.11.92-1
- Initial Fedora spec file.