[gstreamer: 131/222] - Add patch to fix download buffering in Totem
by Dominik Mierzejewski
commit 29b0a8d94480e04212ac4186e505a45919963f13
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Mon Jun 7 17:27:32 2010 +0000
- Add patch to fix download buffering in Totem
0001-queue2-don-t-wait-for-data-when-EOS.patch | 31 ++++++++++++++++++++++++++
gstreamer.spec | 9 +++++++-
2 files changed, 39 insertions(+), 1 deletion(-)
---
diff --git a/0001-queue2-don-t-wait-for-data-when-EOS.patch b/0001-queue2-don-t-wait-for-data-when-EOS.patch
new file mode 100644
index 0000000..3b1b27e
--- /dev/null
+++ b/0001-queue2-don-t-wait-for-data-when-EOS.patch
@@ -0,0 +1,31 @@
+From 15141b3954fdfb46002783463f1cace148480fe9 Mon Sep 17 00:00:00 2001
+From: Wim Taymans <wim.taymans(a)collabora.co.uk>
+Date: Mon, 7 Jun 2010 10:16:04 +0200
+Subject: [PATCH] queue2: don't wait for data when EOS
+
+When in download mode and we need to provide data for an offset that we don't
+have, also perform a seek to the requested location when we are EOS. The reason
+why we shouldn't wait for more data is because after EOS, there simply will be
+no more data and we end up waiting forever.
+
+Fixes #620500
+---
+ plugins/elements/gstqueue2.c | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/plugins/elements/gstqueue2.c b/plugins/elements/gstqueue2.c
+index d3e8e2c..df8aaea 100644
+--- a/plugins/elements/gstqueue2.c
++++ b/plugins/elements/gstqueue2.c
+@@ -1051,7 +1051,7 @@ gst_queue2_have_data (GstQueue2 * queue, guint64 offset, guint length)
+ GST_INFO_OBJECT (queue, "not found in any range");
+ /* we don't have the range, see how far away we are, FIXME, find a good
+ * threshold based on the incomming rate. */
+- if (queue->current) {
++ if (!queue->is_eos && queue->current) {
+ if (offset < queue->current->writing_pos + 200000) {
+ update_cur_pos (queue, queue->current, offset + length);
+ GST_INFO_OBJECT (queue, "wait for data");
+--
+1.7.0.1
+
diff --git a/gstreamer.spec b/gstreamer.spec
index 2596634..5da174b 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -8,7 +8,7 @@
Name: %{gstreamer}
Version: 0.10.29
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
@@ -42,6 +42,9 @@ Patch1: gstreamer-inspect-rpm-format.patch
Source1: gstreamer.prov
Source2: macros.gstreamer
+# https://bugzilla.gnome.org/show_bug.cgi?id=620500
+Patch2: 0001-queue2-don-t-wait-for-data-when-EOS.patch
+
### documentation requirements
BuildRequires: python2
BuildRequires: openjade
@@ -120,6 +123,7 @@ with different major/minor versions of GStreamer.
%setup -q -n gstreamer-%{version}
%patch1 -p1 -b .rpm-provides
+%patch2 -p1 -b .wait-eos
%build
# 0.10.0: manuals do not build due to an openjade error; disable for now
@@ -245,6 +249,9 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor}
%changelog
+* Mon Jun 07 2010 Bastien Nocera <bnocera(a)redhat.com> 0.10.29-2
+- Add patch to fix download buffering in Totem
+
* Wed Apr 28 2010 Benjamin Otte <otte(a)redhat.com> 0.10.29-1
- Update to 0.10.29
4 years, 4 months
[gstreamer: 130/222] - Update to 0.10.29
by Dominik Mierzejewski
commit edcd244016ddf4cf8573be5600b5082e3b0d80ea
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Wed Apr 28 11:53:00 2010 +0000
- Update to 0.10.29
.cvsignore | 2 +-
gstreamer.spec | 11 +++++++----
sources | 2 +-
3 files changed, 9 insertions(+), 6 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index f6f981b..71461e4 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gstreamer-0.10.28.3.tar.bz2
+gstreamer-0.10.29.tar.bz2
diff --git a/gstreamer.spec b/gstreamer.spec
index 13dc3bb..2596634 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -7,15 +7,15 @@
%define _gir-repository 0.6.5-6
Name: %{gstreamer}
-Version: 0.10.28.3
-Release: 2%{?dist}
+Version: 0.10.29
+Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
-Source: http://gstreamer.freedesktop.org/src/gstreamer/pre/gstreamer-%{version}.t...
-#Source: http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.bz2
+#Source: http://gstreamer.freedesktop.org/src/gstreamer/pre/gstreamer-%{version}.t...
+Source: http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: gstreamer-tools >= %{version}
@@ -245,6 +245,9 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor}
%changelog
+* Wed Apr 28 2010 Benjamin Otte <otte(a)redhat.com> 0.10.29-1
+- Update to 0.10.29
+
* Tue Apr 27 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28.3-2
- Make a noarch devel-docs subpackage to avoid conflicts
diff --git a/sources b/sources
index 3afb88c..d24ce9b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0d046e7ba53ce7e70d78a4d7362c5fd9 gstreamer-0.10.28.3.tar.bz2
+c92d6bce4fc65fa9d5a3ad35cdd1a466 gstreamer-0.10.29.tar.bz2
4 years, 4 months
[gstreamer: 129/222] - Make a noarch devel-docs subpackage to avoid conflicts
by Dominik Mierzejewski
commit 97c622fc7fcd4c4c222e9d5e506242f125e9d708
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Tue Apr 27 17:43:31 2010 +0000
- Make a noarch devel-docs subpackage to avoid conflicts
gstreamer.spec | 31 +++++++++++++++++++++++++------
1 file changed, 25 insertions(+), 6 deletions(-)
---
diff --git a/gstreamer.spec b/gstreamer.spec
index 1b41839..13dc3bb 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -8,7 +8,7 @@
Name: %{gstreamer}
Version: 0.10.28.3
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
@@ -83,8 +83,21 @@ types or processing capabilities can be added simply by installing new
plugins.
This package contains the libraries and includes files necessary to develop
-applications and plugins for GStreamer, as well as general and API
-documentation.
+applications and plugins for GStreamer. If you plan to develop applications
+with GStreamer, consider installing the gstreamer-devel-docs package and the
+documentation packages for any plugins you intend to use.
+
+%package devel-docs
+Summary: Developer documentation for GStreamer streaming media framework
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+# for /usr/share/gtk-doc/html
+Requires: gtk-doc
+BuildArch: noarch
+
+%description devel-docs
+This package contains developer documentation for the GStreamer streaming
+media framework.
%package -n gstreamer-tools
Summary: common tools and files for GStreamer streaming media framework
@@ -221,14 +234,20 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/gstreamer-dataprotocol-%{majorminor}.pc
%{_libdir}/pkgconfig/gstreamer-net-%{majorminor}.pc
-%doc %{_datadir}/gtk-doc/html/gstreamer-%{majorminor}
-%doc %{_datadir}/gtk-doc/html/gstreamer-libs-%{majorminor}
-%doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor}
%{_prefix}/lib/rpm/gstreamer.prov
%{_sysconfdir}/rpm/macros.gstreamer
+%files devel-docs
+%defattr(-, root, root, -)
+%doc %{_datadir}/gtk-doc/html/gstreamer-%{majorminor}
+%doc %{_datadir}/gtk-doc/html/gstreamer-libs-%{majorminor}
+%doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor}
+
%changelog
+* Tue Apr 27 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28.3-2
+- Make a noarch devel-docs subpackage to avoid conflicts
+
* Thu Apr 26 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28.3-1
- Update pre-release
4 years, 4 months
[gstreamer: 127/222] - Update pre-release
by Dominik Mierzejewski
commit b57953637e32717a4e3b58acbff9eb0e90ffb7f5
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Thu Apr 15 06:59:29 2010 +0000
- Update pre-release
.cvsignore | 2 +-
...not-ever-unload-a-plugin-after-calling-in.patch | 64 ----------------------
gstreamer.spec | 9 +--
sources | 2 +-
4 files changed, 7 insertions(+), 70 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 3310d56..3cb6c57 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gstreamer-0.10.28.tar.bz2
+gstreamer-0.10.28.2.tar.bz2
diff --git a/gstreamer.spec b/gstreamer.spec
index c61fc87..acd6218 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -7,8 +7,8 @@
%define _gir-repository 0.6.5-6
Name: %{gstreamer}
-Version: 0.10.28
-Release: 2%{?dist}
+Version: 0.10.28.2
+Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
@@ -39,7 +39,6 @@ BuildRequires: gcc-c++
# For the GStreamer RPM provides
Patch1: gstreamer-inspect-rpm-format.patch
-Patch2: 0001-plugins-Do-not-ever-unload-a-plugin-after-calling-in.patch
Source1: gstreamer.prov
Source2: macros.gstreamer
@@ -108,7 +107,6 @@ with different major/minor versions of GStreamer.
%setup -q -n gstreamer-%{version}
%patch1 -p1 -b .rpm-provides
-%patch2 -p1 -b .no-unload
%build
# 0.10.0: manuals do not build due to an openjade error; disable for now
@@ -231,6 +229,9 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
+* Thu Apr 15 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28.2-1
+- Update pre-release
+
* Mon Mar 15 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28-2
- Fix crashes when plugin init fails (#572800)
diff --git a/sources b/sources
index 6a5084d..1d80e1d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1c7accac718fe211ff91323c27d4ae02 gstreamer-0.10.28.tar.bz2
+f4d038f18f0c09c4a842d157804ad2a9 gstreamer-0.10.28.2.tar.bz2
4 years, 4 months
[gstreamer: 126/222] - Fix crashes when plugin init fails (#572800)
by Dominik Mierzejewski
commit 11535a89aaf0c34592a008286707da30798a2384
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Mon Mar 15 12:08:44 2010 +0000
- Fix crashes when plugin init fails (#572800)
...not-ever-unload-a-plugin-after-calling-in.patch | 64 ++++++++++++++++++++++
gstreamer.spec | 7 ++-
2 files changed, 70 insertions(+), 1 deletion(-)
---
diff --git a/0001-plugins-Do-not-ever-unload-a-plugin-after-calling-in.patch b/0001-plugins-Do-not-ever-unload-a-plugin-after-calling-in.patch
new file mode 100644
index 0000000..8419938
--- /dev/null
+++ b/0001-plugins-Do-not-ever-unload-a-plugin-after-calling-in.patch
@@ -0,0 +1,64 @@
+From 8fe63000de31bb2bcf346d59230dea06117997cd Mon Sep 17 00:00:00 2001
+From: Benjamin Otte <otte(a)redhat.com>
+Date: Fri, 12 Mar 2010 16:42:47 +0100
+Subject: [PATCH] plugins: Do not ever unload a plugin after calling into it
+
+This is what can happen in a plugin_init function:
+- An element based on GstBaseSink is registered
+- Other elements fail to register
+- The plugin_init function returns FALSE
+
+Now if this the plugin is the first plugin to link against
+libgstbase.so, it will have caused libgstbase.so to be loaded and static
+strings from that library will have been added to gobject while
+registering GstBaseSink.
+
+So unloading the plugin will cause those strings to go stale and the
+next plugin using GstBaseSink will crash. So we must not unload modules
+after calling into them ever.
+
+https://bugzilla.redhat.com/show_bug.cgi?id=572800
+---
+ gst/gstplugin.c | 9 ++++++---
+ 1 files changed, 6 insertions(+), 3 deletions(-)
+
+diff --git a/gst/gstplugin.c b/gst/gstplugin.c
+index 0f146ae..af62434 100644
+--- a/gst/gstplugin.c
++++ b/gst/gstplugin.c
+@@ -412,18 +412,22 @@ gst_plugin_register_func (GstPlugin * plugin, const GstPluginDesc * desc,
+
+ gst_plugin_desc_copy (&plugin->desc, desc);
+
++ /* make resident so we're really sure it never gets unloaded again.
++ * Theoretically this is not needed, but practically it doesn't hurt.
++ * And we're rather safe than sorry. */
++ if (plugin->module)
++ g_module_make_resident (plugin->module);
++
+ if (user_data) {
+ if (!(((GstPluginInitFullFunc) (desc->plugin_init)) (plugin, user_data))) {
+ if (GST_CAT_DEFAULT)
+ GST_WARNING ("plugin \"%s\" failed to initialise", plugin->filename);
+- plugin->module = NULL;
+ return NULL;
+ }
+ } else {
+ if (!((desc->plugin_init) (plugin))) {
+ if (GST_CAT_DEFAULT)
+ GST_WARNING ("plugin \"%s\" failed to initialise", plugin->filename);
+- plugin->module = NULL;
+ return NULL;
+ }
+ }
+@@ -646,7 +650,6 @@ gst_plugin_load_file (const gchar * filename, GError ** error)
+ GST_PLUGIN_ERROR_MODULE,
+ "File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
+ filename);
+- g_module_close (module);
+ goto return_error;
+ }
+
+--
+1.6.6.1
+
diff --git a/gstreamer.spec b/gstreamer.spec
index 19e744e..c61fc87 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -8,7 +8,7 @@
Name: %{gstreamer}
Version: 0.10.28
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
@@ -39,6 +39,7 @@ BuildRequires: gcc-c++
# For the GStreamer RPM provides
Patch1: gstreamer-inspect-rpm-format.patch
+Patch2: 0001-plugins-Do-not-ever-unload-a-plugin-after-calling-in.patch
Source1: gstreamer.prov
Source2: macros.gstreamer
@@ -107,6 +108,7 @@ with different major/minor versions of GStreamer.
%setup -q -n gstreamer-%{version}
%patch1 -p1 -b .rpm-provides
+%patch2 -p1 -b .no-unload
%build
# 0.10.0: manuals do not build due to an openjade error; disable for now
@@ -229,6 +231,9 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
+* Mon Mar 15 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28-2
+- Fix crashes when plugin init fails (#572800)
+
* Tue Mar 09 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28-1
- Update to 0.10.28
4 years, 4 months
[gstreamer: 125/222] - Update to 0.10.28
by Dominik Mierzejewski
commit 3f1b1b66dd11257638a7044335f299ff81cda5e2
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Tue Mar 9 08:07:48 2010 +0000
- Update to 0.10.28
.cvsignore | 2 +-
gstreamer.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 623f5a0..3310d56 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gstreamer-0.10.27.tar.bz2
+gstreamer-0.10.28.tar.bz2
diff --git a/gstreamer.spec b/gstreamer.spec
index 85ed97e..19e744e 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -7,7 +7,7 @@
%define _gir-repository 0.6.5-6
Name: %{gstreamer}
-Version: 0.10.27
+Version: 0.10.28
Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
@@ -229,6 +229,9 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
+* Tue Mar 09 2010 Benjamin Otte <otte(a)redhat.com> 0.10.28-1
+- Update to 0.10.28
+
* Sun Mar 07 2010 Benjamin Otte <otte(a)redhat.com> 0.10.27-1
- Update to 0.10.27
diff --git a/sources b/sources
index 2a11dbe..6a5084d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b1a39f93555fa66fd053c25ebba2661f gstreamer-0.10.27.tar.bz2
+1c7accac718fe211ff91323c27d4ae02 gstreamer-0.10.28.tar.bz2
4 years, 4 months
[gstreamer: 124/222] - Update to 0.10.27
by Dominik Mierzejewski
commit a8896430e6d91372ec4712c697b44dabd77e8681
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Sun Mar 7 23:02:39 2010 +0000
- Update to 0.10.27
.cvsignore | 2 +-
gstreamer.spec | 10 +++++++---
sources | 2 +-
3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 5d497fa..623f5a0 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gstreamer-0.10.26.4.tar.bz2
+gstreamer-0.10.27.tar.bz2
diff --git a/gstreamer.spec b/gstreamer.spec
index 3ecbe43..85ed97e 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -7,14 +7,15 @@
%define _gir-repository 0.6.5-6
Name: %{gstreamer}
-Version: 0.10.26.4
+Version: 0.10.27
Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
-Source: http://gstreamer.freedesktop.org/src/gstreamer/pre/gstreamer-%{version}.t...
+#Source: http://gstreamer.freedesktop.org/src/gstreamer/pre/gstreamer-%{version}.t...
+Source: http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: gstreamer-tools >= %{version}
@@ -228,7 +229,10 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
-* Thu Mar 06 2010 Benjamin Otte <otte(a)redhat.com> 0.10.26.4-1
+* Sun Mar 07 2010 Benjamin Otte <otte(a)redhat.com> 0.10.27-1
+- Update to 0.10.27
+
+* Thu Mar 04 2010 Benjamin Otte <otte(a)redhat.com> 0.10.26.4-1
- Update pre-release
- Add gobject-introspection support
diff --git a/sources b/sources
index 9ec1cbb..2a11dbe 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-816942856e887d663918c2f6dd3c42b9 gstreamer-0.10.26.4.tar.bz2
+b1a39f93555fa66fd053c25ebba2661f gstreamer-0.10.27.tar.bz2
4 years, 4 months
[gstreamer: 123/222] - Update pre-release - Add gobject-introspection support
by Dominik Mierzejewski
commit 136d75ede0fd7871f9ce1ec757c49382e4f2c318
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Thu Mar 4 16:00:59 2010 +0000
- Update pre-release
- Add gobject-introspection support
.cvsignore | 2 +-
gstreamer.spec | 26 +++++++++++++++++++++++---
sources | 2 +-
3 files changed, 25 insertions(+), 5 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 7ab59e0..5d497fa 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gstreamer-0.10.26.3.tar.bz2
+gstreamer-0.10.26.4.tar.bz2
diff --git a/gstreamer.spec b/gstreamer.spec
index c57918e..3ecbe43 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -1,11 +1,13 @@
%define gstreamer gstreamer
%define majorminor 0.10
-%define _glib2 2.8.3
-%define _libxml2 2.4.0
+%define _glib2 2.8.3
+%define _libxml2 2.4.0
+%define _gobject-introspection 0.6.3
+%define _gir-repository 0.6.5-6
Name: %{gstreamer}
-Version: 0.10.26.3
+Version: 0.10.26.4
Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
@@ -26,6 +28,8 @@ BuildRequires: check-devel
BuildRequires: gtk-doc >= 1.3
BuildRequires: gettext
BuildRequires: pkgconfig
+BuildRequires: gobject-introspection-devel >= %{_gobject_introspection}
+BuildRequires: gir-repository-devel >= %{_gir_repository}
# We need to use the system libtool or else we end up with RPATHs
BuildRequires: libtool
@@ -154,6 +158,12 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gstreamer-%{majorminor}/libgstcoreelements.so
%{_libdir}/gstreamer-%{majorminor}/libgstcoreindexers.so
+%{_libdir}/girepository-1.0/Gst-0.10.typelib
+%{_libdir}/girepository-1.0/GstBase-0.10.typelib
+%{_libdir}/girepository-1.0/GstCheck-0.10.typelib
+%{_libdir}/girepository-1.0/GstController-0.10.typelib
+%{_libdir}/girepository-1.0/GstNet-0.10.typelib
+
%{_bindir}/gst-feedback-%{majorminor}
%{_bindir}/gst-inspect-%{majorminor}
%{_bindir}/gst-launch-%{majorminor}
@@ -196,6 +206,12 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/libgstcontroller-%{majorminor}.so
%{_libdir}/libgstnet-%{majorminor}.so
+%{_datadir}/gir-1.0/Gst-0.10.gir
+%{_datadir}/gir-1.0/GstBase-0.10.gir
+%{_datadir}/gir-1.0/GstCheck-0.10.gir
+%{_datadir}/gir-1.0/GstController-0.10.gir
+%{_datadir}/gir-1.0/GstNet-0.10.gir
+
%{_datadir}/aclocal/gst-element-check-%{majorminor}.m4
%{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc
%{_libdir}/pkgconfig/gstreamer-base-%{majorminor}.pc
@@ -212,6 +228,10 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
+* Thu Mar 06 2010 Benjamin Otte <otte(a)redhat.com> 0.10.26.4-1
+- Update pre-release
+- Add gobject-introspection support
+
* Thu Feb 25 2010 Benjamin Otte <otte(a)redhat.com> 0.10.26.3-1
- Update to pre-release
diff --git a/sources b/sources
index 3affea9..9ec1cbb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-61225cc51df3b8bb0817c831dc219689 gstreamer-0.10.26.3.tar.bz2
+816942856e887d663918c2f6dd3c42b9 gstreamer-0.10.26.4.tar.bz2
4 years, 4 months
[gstreamer: 122/222] - Update to pre-release
by Dominik Mierzejewski
commit 587629b6cf63432c4ad05bd810b823f7678d0211
Author: Benjamin Otte <company(a)fedoraproject.org>
Date: Thu Feb 25 07:59:17 2010 +0000
- Update to pre-release
.cvsignore | 2 +-
gstreamer.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index d1de59a..7ab59e0 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gstreamer-0.10.26.2.tar.bz2
+gstreamer-0.10.26.3.tar.bz2
diff --git a/gstreamer.spec b/gstreamer.spec
index b3483a2..c57918e 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -5,7 +5,7 @@
%define _libxml2 2.4.0
Name: %{gstreamer}
-Version: 0.10.26.2
+Version: 0.10.26.3
Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
@@ -212,6 +212,9 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
+* Thu Feb 25 2010 Benjamin Otte <otte(a)redhat.com> 0.10.26.3-1
+- Update to pre-release
+
* Fri Feb 19 2010 Benjamin Otte <otte(a)redhat.com> 0.10.26.2-1
- Update to pre-release
diff --git a/sources b/sources
index 453c795..3affea9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-651eb7fa1d6fa2c8389654226009e8e1 gstreamer-0.10.26.2.tar.bz2
+61225cc51df3b8bb0817c831dc219689 gstreamer-0.10.26.3.tar.bz2
4 years, 4 months