[gstreamer-plugins-base: 58/216] - Remove the gnome-vfs plugin, and see what breaks
by Dominik Mierzejewski
commit f3d15b953c2ba4f6de93adbc0a165949cf091dd1
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Sat May 24 15:05:39 2008 +0000
- Remove the gnome-vfs plugin, and see what breaks
gstreamer-plugins-base.spec | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 8252367..a1734a6 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.19
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -25,7 +25,6 @@ BuildRequires: %{gstreamer}-devel >= %{_gst}
BuildRequires: gettext
BuildRequires: gcc-c++
-BuildRequires: gnome-vfs2-devel > 1.9.4.00
BuildRequires: libogg-devel >= 1.0
BuildRequires: libvorbis-devel >= 1.0
BuildRequires: libtheora-devel >= 1.0
@@ -135,7 +134,6 @@ rm -rf $RPM_BUILD_ROOT
# base plugins with dependencies
%{_libdir}/gstreamer-%{majorminor}/libgstalsa.so
%{_libdir}/gstreamer-%{majorminor}/libgstcdparanoia.so
-%{_libdir}/gstreamer-%{majorminor}/libgstgnomevfs.so
%{_libdir}/gstreamer-%{majorminor}/libgstlibvisual.so
%{_libdir}/gstreamer-%{majorminor}/libgstogg.so
%{_libdir}/gstreamer-%{majorminor}/libgstpango.so
@@ -249,6 +247,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Sat May 24 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.19-4
+- Remove the gnome-vfs plugin, and see what breaks
+
* Wed May 21 2008 Tom "spot" Callaway <tcallawa(a)redhat.com> - 0.10.19-3
- fix license tag
4 years, 4 months
[gstreamer-plugins-base: 57/216] fix license tag
by Dominik Mierzejewski
commit 81b8970bf31991915e3374b98259a284d7a1daf9
Author: Tom Callaway <spot(a)fedoraproject.org>
Date: Wed May 21 17:04:00 2008 +0000
fix license tag
gstreamer-plugins-base.spec | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 59e053a..8252367 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,11 +5,11 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.19
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
-License: LGPL
+License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -249,6 +249,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Wed May 21 2008 Tom "spot" Callaway <tcallawa(a)redhat.com> - 0.10.19-3
+- fix license tag
+
* Fri Apr 18 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.19-2
- Add patch to avoid sync problems in the ALSA sink when a specific
track has both playback and record flags
4 years, 4 months
[gstreamer-plugins-base: 56/216] - Add patch to avoid sync problems in the ALSA sink when a specific track has both playback and
by Dominik Mierzejewski
commit 83b4c6dd19a5df7e67f0920ab2455e518d2a2c7b
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Fri Apr 18 13:14:31 2008 +0000
- Add patch to avoid sync problems in the ALSA sink when a specific track
has both playback and record flags
....19-alsasink-mixed-record-playback-tracks.patch | 60 ++++++++++++++++++++++
gstreamer-plugins-base.spec | 9 +++-
2 files changed, 68 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer-0.10.19-alsasink-mixed-record-playback-tracks.patch b/gstreamer-0.10.19-alsasink-mixed-record-playback-tracks.patch
new file mode 100644
index 0000000..c663736
--- /dev/null
+++ b/gstreamer-0.10.19-alsasink-mixed-record-playback-tracks.patch
@@ -0,0 +1,60 @@
+diff -Nur -x '*.orig' -x '*~' gst-plugins-base0.10-0.10.18/ext/alsa/gstalsamixertrack.c gst-plugins-base0.10-0.10.18.new/ext/alsa/gstalsamixertrack.c
+--- gst-plugins-base0.10-0.10.18/ext/alsa/gstalsamixertrack.c 2008-03-03 22:29:49.000000000 +0000
++++ gst-plugins-base0.10-0.10.18.new/ext/alsa/gstalsamixertrack.c 2008-04-10 15:15:15.000000000 +0100
+@@ -75,28 +75,40 @@
+ alsa_track->alsa_flags = 0;
+ alsa_track->capture_group = -1;
+
++ /* common flags */
+ if (snd_mixer_selem_has_common_volume (alsa_track->element))
+ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_VOLUME;
+
+- if (snd_mixer_selem_has_playback_volume (alsa_track->element))
+- alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_PVOLUME;
+-
+- if (snd_mixer_selem_has_capture_volume (alsa_track->element))
+- alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_CVOLUME;
+-
+ if (snd_mixer_selem_has_common_switch (alsa_track->element))
+ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_SWITCH;
+
+- if (snd_mixer_selem_has_playback_switch (alsa_track->element))
+- alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_PSWITCH;
+-
+- if (snd_mixer_selem_has_capture_switch (alsa_track->element)) {
+- alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_CSWITCH;
+-
+- if (snd_mixer_selem_has_capture_switch_exclusive (alsa_track->element)) {
+- alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_CSWITCH_EXCL;
+- alsa_track->capture_group =
+- snd_mixer_selem_get_capture_group (alsa_track->element);
++ /* Since we create two separate mixer track objects for alsa elements that
++ * support both playback and capture, we're going to 'hide' the alsa flags
++ * that don't pertain to this mixer track from alsa_flags, otherwise
++ * gst_alsa_mixer_track_update() is going to do things we don't want */
++
++ /* playback flags */
++ if ((GST_MIXER_TRACK (alsa_track)->flags & GST_MIXER_TRACK_OUTPUT)) {
++ if (snd_mixer_selem_has_playback_volume (alsa_track->element))
++ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_PVOLUME;
++
++ if (snd_mixer_selem_has_playback_switch (alsa_track->element))
++ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_PSWITCH;
++ }
++
++ /* capture flags */
++ if ((GST_MIXER_TRACK (alsa_track)->flags & GST_MIXER_TRACK_INPUT)) {
++ if (snd_mixer_selem_has_capture_volume (alsa_track->element))
++ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_CVOLUME;
++
++ if (snd_mixer_selem_has_capture_switch (alsa_track->element)) {
++ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_CSWITCH;
++
++ if (snd_mixer_selem_has_capture_switch_exclusive (alsa_track->element)) {
++ alsa_track->alsa_flags |= GST_ALSA_MIXER_TRACK_CSWITCH_EXCL;
++ alsa_track->capture_group =
++ snd_mixer_selem_get_capture_group (alsa_track->element);
++ }
+ }
+ }
+
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 59cc22f..59e053a 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.19
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -15,6 +15,8 @@ Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Patch0: gstpb-0.10.15-cd-speed.patch
+# http://bugzilla.gnome.org/show_bug.cgi?id=518082
+Patch1: gstreamer-0.10.19-alsasink-mixed-record-playback-tracks.patch
Requires: %{gstreamer} >= %{_gst}
Requires: liboil >= 0.3.12-9
@@ -52,6 +54,7 @@ This package contains a set of well-maintained base plug-ins.
%prep
%setup -q -n gst-plugins-base-%{version}
%patch0 -p1 -b .cd-speed
+%patch1 -p1 -b .alsasink
%build
%configure \
@@ -246,6 +249,10 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Fri Apr 18 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.19-2
+- Add patch to avoid sync problems in the ALSA sink when a specific
+ track has both playback and record flags
+
* Fri Apr 04 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.19-1
- Update to 0.10.19
4 years, 4 months
[gstreamer-plugins-base: 55/216] - Update to 0.10.19
by Dominik Mierzejewski
commit 9e48e161e04b20e21478bbc05c3455c871c49a46
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Fri Apr 4 10:45:40 2008 +0000
- Update to 0.10.19
.cvsignore | 2 +-
gstreamer-plugins-base.spec | 7 +++++--
sources | 2 +-
3 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 439df7a..f943586 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gst-plugins-base-0.10.18.tar.bz2
+gst-plugins-base-0.10.19.tar.bz2
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index ec8b91b..59cc22f 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -1,10 +1,10 @@
%define gstreamer gstreamer
%define majorminor 0.10
-%define _gst 0.10.18
+%define _gst 0.10.19
Name: %{gstreamer}-plugins-base
-Version: 0.10.18
+Version: 0.10.19
Release: 1%{?dist}
Summary: GStreamer streaming media framework base plug-ins
@@ -246,6 +246,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Fri Apr 04 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.19-1
+- Update to 0.10.19
+
* Tue Mar 25 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.18-1
- Update to 0.10.18
- Re-enable the libvisual plugins
diff --git a/sources b/sources
index 89ea6af..29029ee 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-422e654b049dedef6fdbf4456f2259d1 gst-plugins-base-0.10.18.tar.bz2
+9c9614cbb6497b7fee1c954b9d5ae3b7 gst-plugins-base-0.10.19.tar.bz2
4 years, 4 months
[gstreamer-plugins-base: 54/216] - Update to 0.10.18 - Re-enable the libvisual plugins
by Dominik Mierzejewski
commit 5c7371ed815ddb2dfa5daeff0020cb5bc832436e
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Tue Mar 25 10:53:41 2008 +0000
- Update to 0.10.18
- Re-enable the libvisual plugins
.cvsignore | 2 +-
gstreamer-plugins-base.spec | 16 +++++++++-------
sources | 2 +-
3 files changed, 11 insertions(+), 9 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index f9a673b..439df7a 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gst-plugins-base-0.10.17.2.tar.bz2
+gst-plugins-base-0.10.18.tar.bz2
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 46b5b73..ec8b91b 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -1,11 +1,11 @@
%define gstreamer gstreamer
%define majorminor 0.10
-%define _gst 0.10.16
+%define _gst 0.10.18
Name: %{gstreamer}-plugins-base
-Version: 0.10.17.2
-Release: 4%{?dist}
+Version: 0.10.18
+Release: 1%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -32,8 +32,7 @@ BuildRequires: alsa-lib-devel
BuildRequires: pango-devel
BuildRequires: libXv-devel
BuildRequires: cdparanoia-devel
-# https://bugzilla.redhat.com/show_bug.cgi?id=435771
-#BuildRequires: libvisual-devel
+BuildRequires: libvisual-devel
Obsoletes: gstreamer-plugins
# documentation
@@ -134,8 +133,7 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gstreamer-%{majorminor}/libgstalsa.so
%{_libdir}/gstreamer-%{majorminor}/libgstcdparanoia.so
%{_libdir}/gstreamer-%{majorminor}/libgstgnomevfs.so
-# https://bugzilla.redhat.com/show_bug.cgi?id=435771
-#%{_libdir}/gstreamer-%{majorminor}/libgstlibvisual.so
+%{_libdir}/gstreamer-%{majorminor}/libgstlibvisual.so
%{_libdir}/gstreamer-%{majorminor}/libgstogg.so
%{_libdir}/gstreamer-%{majorminor}/libgstpango.so
%{_libdir}/gstreamer-%{majorminor}/libgsttheora.so
@@ -248,6 +246,10 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Tue Mar 25 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.18-1
+- Update to 0.10.18
+- Re-enable the libvisual plugins
+
* Sun Mar 09 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.17.2-4
- Disable libvisual for now (#435771)
diff --git a/sources b/sources
index 7be4088..89ea6af 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b106f6c4ea370d8cba299102452872b2 gst-plugins-base-0.10.17.2.tar.bz2
+422e654b049dedef6fdbf4456f2259d1 gst-plugins-base-0.10.18.tar.bz2
4 years, 4 months
[gstreamer-plugins-base: 53/216] - Disable libvisual for now (#435771)
by Dominik Mierzejewski
commit 19a122d87c182eee1e02bc271b175507cb90196b
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Sun Mar 9 12:14:37 2008 +0000
- Disable libvisual for now (#435771)
gstreamer-plugins-base.spec | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 9898605..46b5b73 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.17.2
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -32,7 +32,8 @@ BuildRequires: alsa-lib-devel
BuildRequires: pango-devel
BuildRequires: libXv-devel
BuildRequires: cdparanoia-devel
-BuildRequires: libvisual-devel
+# https://bugzilla.redhat.com/show_bug.cgi?id=435771
+#BuildRequires: libvisual-devel
Obsoletes: gstreamer-plugins
# documentation
@@ -133,7 +134,8 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gstreamer-%{majorminor}/libgstalsa.so
%{_libdir}/gstreamer-%{majorminor}/libgstcdparanoia.so
%{_libdir}/gstreamer-%{majorminor}/libgstgnomevfs.so
-%{_libdir}/gstreamer-%{majorminor}/libgstlibvisual.so
+# https://bugzilla.redhat.com/show_bug.cgi?id=435771
+#%{_libdir}/gstreamer-%{majorminor}/libgstlibvisual.so
%{_libdir}/gstreamer-%{majorminor}/libgstogg.so
%{_libdir}/gstreamer-%{majorminor}/libgstpango.so
%{_libdir}/gstreamer-%{majorminor}/libgsttheora.so
@@ -246,6 +248,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Sun Mar 09 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.17.2-4
+- Disable libvisual for now (#435771)
+
* Tue Mar 04 2008 Adam Jackson <ajax(a)redhat.com> 0.10.17.2-3
- gstpb-0.10.15-cd-speed.patch: Set default CD read speed to something
sensible. (#431178)
4 years, 4 months
[gstreamer-plugins-base: 52/216] - gstpb-0.10.15-cd-speed.patch: Set default CD read speed to something sensible. (#431178) - s/F
by Dominik Mierzejewski
commit 73a54567f209e2d278a3e8b43551a07e150f07d8
Author: Adam Jackson <ajax(a)fedoraproject.org>
Date: Tue Mar 4 21:32:04 2008 +0000
- gstpb-0.10.15-cd-speed.patch: Set default CD read speed to something
sensible. (#431178)
- s/Fedora Core/Fedora/
- Don't even bother building static libs.
gstpb-0.10.15-cd-speed.patch | 11 +++++++++++
gstreamer-plugins-base.spec | 16 +++++++++++++---
2 files changed, 24 insertions(+), 3 deletions(-)
---
diff --git a/gstpb-0.10.15-cd-speed.patch b/gstpb-0.10.15-cd-speed.patch
new file mode 100644
index 0000000..2bc4170
--- /dev/null
+++ b/gstpb-0.10.15-cd-speed.patch
@@ -0,0 +1,11 @@
+--- gst-plugins-base-0.10.15/ext/cdparanoia/gstcdparanoiasrc.c_orig 2008-02-02 21:22:47.000000000 +0100
++++ gst-plugins-base-0.10.15/ext/cdparanoia/gstcdparanoiasrc.c 2008-02-02 21:23:23.000000000 +0100
+@@ -46,7 +46,7 @@
+ PROP_GENERIC_DEVICE
+ };
+
+-#define DEFAULT_READ_SPEED -1
++#define DEFAULT_READ_SPEED 4 /* avoid mad spinning ad noise */
+ #define DEFAULT_SEARCH_OVERLAP -1
+ #define DEFAULT_PARANOIA_MODE PARANOIA_MODE_FRAGMENT
+ #define DEFAULT_GENERIC_DEVICE NULL
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 93bb572..9898605 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.17.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -14,6 +14,8 @@ URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Patch0: gstpb-0.10.15-cd-speed.patch
+
Requires: %{gstreamer} >= %{_gst}
Requires: liboil >= 0.3.12-9
BuildRequires: %{gstreamer}-devel >= %{_gst}
@@ -49,13 +51,15 @@ This package contains a set of well-maintained base plug-ins.
%prep
%setup -q -n gst-plugins-base-%{version}
+%patch0 -p1 -b .cd-speed
%build
%configure \
- --with-package-name='Fedora Core gstreamer-plugins-base package' \
+ --with-package-name='Fedora gstreamer-plugins-base package' \
--with-package-origin='http://download.fedora.redhat.com/fedora' \
--disable-gtk-doc \
- --enable-experimental
+ --enable-experimental \
+ --disable-static
make %{?_smp_mflags} ERROR_CFLAGS=""
@@ -242,6 +246,12 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Tue Mar 04 2008 Adam Jackson <ajax(a)redhat.com> 0.10.17.2-3
+- gstpb-0.10.15-cd-speed.patch: Set default CD read speed to something
+ sensible. (#431178)
+- s/Fedora Core/Fedora/
+- Don't even bother building static libs.
+
* Tue Mar 04 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.17.2-2
- Enable the GIO plugin
4 years, 4 months
[gstreamer-plugins-base: 51/216] - Enable the GIO plugin
by Dominik Mierzejewski
commit 7b95495e91d5a4f83cb8d54742aeeabfeac0dafd
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Tue Mar 4 02:55:07 2008 +0000
- Enable the GIO plugin
gstreamer-plugins-base.spec | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 1f395f2..93bb572 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.17.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -54,7 +54,8 @@ This package contains a set of well-maintained base plug-ins.
%configure \
--with-package-name='Fedora Core gstreamer-plugins-base package' \
--with-package-origin='http://download.fedora.redhat.com/fedora' \
- --disable-gtk-doc
+ --disable-gtk-doc \
+ --enable-experimental
make %{?_smp_mflags} ERROR_CFLAGS=""
@@ -122,6 +123,7 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gstreamer-%{majorminor}/libgstaudioresample.so
%{_libdir}/gstreamer-%{majorminor}/libgstgdp.so
%{_libdir}/gstreamer-%{majorminor}/libgstqueue2.so
+%{_libdir}/gstreamer-%{majorminor}/libgstgio.so
# base plugins with dependencies
%{_libdir}/gstreamer-%{majorminor}/libgstalsa.so
@@ -240,6 +242,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Tue Mar 04 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.17.2-2
+- Enable the GIO plugin
+
* Tue Mar 04 2008 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.17.2-1
- Update to 0.10.17.2 pre-release
4 years, 4 months
[gstreamer-plugins-base: 50/216] Disabled -Werror
by Dominik Mierzejewski
commit 68a5efbd3206e411aaf1b36f47f93baaa3c28d40
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Tue Mar 4 02:42:16 2008 +0000
Disabled -Werror
gstreamer-plugins-base.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 550e4e7..1f395f2 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -56,7 +56,7 @@ This package contains a set of well-maintained base plug-ins.
--with-package-origin='http://download.fedora.redhat.com/fedora' \
--disable-gtk-doc
-make %{?_smp_mflags}
+make %{?_smp_mflags} ERROR_CFLAGS=""
%install
rm -rf $RPM_BUILD_ROOT
4 years, 4 months
[gstreamer-plugins-base: 49/216] More missing sources
by Dominik Mierzejewski
commit 6189bd6fd2ee2cdfb4ca9f09a9df53ee53974717
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Tue Mar 4 02:23:24 2008 +0000
More missing sources
.cvsignore | 2 +-
sources | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 41bc44b..f9a673b 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gst-plugins-base-0.10.17.tar.bz2
+gst-plugins-base-0.10.17.2.tar.bz2
diff --git a/sources b/sources
index 34570d9..7be4088 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-151b66228e08ab0c7601713030fb1c3f gst-plugins-base-0.10.17.tar.bz2
+b106f6c4ea370d8cba299102452872b2 gst-plugins-base-0.10.17.2.tar.bz2
4 years, 4 months