Compare commits

...

4 Commits
master ... f15

Author SHA1 Message Date
Benjamin Otte
2ff6d2400c Update to 0.10.34 2011-05-14 17:28:42 +02:00
Benjamin Otte
cad4ae2d17 Update to 0.10.33 2011-05-11 12:00:06 +02:00
Bastien Nocera
ce5f7253f6 Adjust provides generation for rpm >= 4.9.0 2011-03-21 10:01:59 +00:00
Bastien Nocera
6001e9c8ea Make it possible to auto-install GStreamer elements by name 2011-03-21 03:00:59 +00:00
6 changed files with 48 additions and 32 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
/gstreamer-0.10.32.tar.bz2 /gstreamer-0.10.34.tar.bz2

View File

@ -1,17 +1,17 @@
From 3f3f59c66d5eaf0efd32b8d6dabb7895cba5dda6 Mon Sep 17 00:00:00 2001 From e4a4294f53d25bc3b5699cace74de4f49062a2ee Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net> From: Bastien Nocera <hadess@hadess.net>
Date: Wed, 11 Nov 2009 13:53:46 +0000 Date: Wed, 11 Nov 2009 13:53:46 +0000
Subject: [PATCH] Add RPM provides output to gst-inspect Subject: [PATCH] Add RPM provides output to gst-inspect
--- ---
tools/gst-inspect.c | 272 ++++++++++++++++++++++++++++++++++++++++++++++++--- tools/gst-inspect.c | 275 ++++++++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 257 insertions(+), 15 deletions(-) 1 files changed, 260 insertions(+), 15 deletions(-)
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index b2502f4..dfd2eb4 100644 index c86285e..80b2456 100644
--- a/tools/gst-inspect.c --- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c +++ b/tools/gst-inspect.c
@@ -1308,9 +1308,225 @@ print_element_info (GstElementFactory * factory, gboolean print_names) @@ -1408,9 +1408,225 @@ print_element_info (GstElementFactory * factory, gboolean print_names)
return 0; return 0;
} }
@ -26,9 +26,8 @@ index b2502f4..dfd2eb4 100644
+ g_string_append (s->data, field); + g_string_append (s->data, field);
+ } + }
+} +}
+
static void +static void
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
+print_gst_structure_append_field_index (GList * strings, const char *field, +print_gst_structure_append_field_index (GList * strings, const char *field,
+ guint num_items, guint offset) + guint num_items, guint offset)
+{ +{
@ -106,8 +105,9 @@ index b2502f4..dfd2eb4 100644
+ return 1; + return 1;
+ return 0; + return 0;
+} +}
+
+static void static void
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
+print_gst_structure_for_rpm (const char *type_name, GstStructure * s) +print_gst_structure_for_rpm (const char *type_name, GstStructure * s)
+{ +{
+ guint i, num_fields; + guint i, num_fields;
@ -238,7 +238,7 @@ index b2502f4..dfd2eb4 100644
{ {
GstPadDirection direction; GstPadDirection direction;
const gchar *type_name; const gchar *type_name;
@@ -1335,6 +1551,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) @@ -1435,6 +1651,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
return; return;
} }
@ -251,7 +251,7 @@ index b2502f4..dfd2eb4 100644
/* decoder/demuxer sink pads should always be static and there should only /* decoder/demuxer sink pads should always be static and there should only
* be one, the same applies to encoders/muxers and source pads */ * be one, the same applies to encoders/muxers and source pads */
static_templates = gst_element_factory_get_static_pad_templates (factory); static_templates = gst_element_factory_get_static_pad_templates (factory);
@@ -1371,15 +1593,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) @@ -1471,15 +1693,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
gst_structure_remove_field (s, "rate"); gst_structure_remove_field (s, "rate");
gst_structure_remove_field (s, "depth"); gst_structure_remove_field (s, "depth");
gst_structure_remove_field (s, "clock-rate"); gst_structure_remove_field (s, "clock-rate");
@ -276,7 +276,7 @@ index b2502f4..dfd2eb4 100644
{ {
gchar **protocols, **p; gchar **protocols, **p;
@@ -1388,11 +1615,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) @@ -1488,11 +1715,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
switch (gst_element_factory_get_uri_type (factory)) { switch (gst_element_factory_get_uri_type (factory)) {
case GST_URI_SINK: case GST_URI_SINK:
for (p = protocols; *p != NULL; ++p) for (p = protocols; *p != NULL; ++p)
@ -296,7 +296,7 @@ index b2502f4..dfd2eb4 100644
break; break;
default: default:
break; break;
@@ -1402,7 +1635,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) @@ -1502,7 +1735,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
} }
static void static void
@ -305,13 +305,16 @@ index b2502f4..dfd2eb4 100644
{ {
const gchar *plugin_name; const gchar *plugin_name;
GList *features, *l; GList *features, *l;
@@ -1422,11 +1655,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin) @@ -1522,11 +1755,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
if (g_str_equal (plugin_name, feature->plugin_name)) { if (g_str_equal (plugin_name, feature->plugin_name)) {
GstElementFactory *factory; GstElementFactory *factory;
- g_print ("element-%s\n", gst_plugin_feature_get_name (feature)); - g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
+ if (!rpm_format) + if (!rpm_format)
+ g_print ("element-%s\n", gst_plugin_feature_get_name (feature)); + g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
+ else
+ g_print ("gstreamer0.10(element-%s)\n",
+ gst_plugin_feature_get_name (feature));
factory = GST_ELEMENT_FACTORY (feature); factory = GST_ELEMENT_FACTORY (feature);
- print_plugin_automatic_install_info_protocols (factory); - print_plugin_automatic_install_info_protocols (factory);
@ -321,7 +324,7 @@ index b2502f4..dfd2eb4 100644
} }
} }
@@ -1446,7 +1680,7 @@ print_all_plugin_automatic_install_info (void) @@ -1546,7 +1783,7 @@ print_all_plugin_automatic_install_info (void)
plugin = (GstPlugin *) (plugins->data); plugin = (GstPlugin *) (plugins->data);
plugins = g_list_next (plugins); plugins = g_list_next (plugins);
@ -330,7 +333,7 @@ index b2502f4..dfd2eb4 100644
} }
gst_plugin_list_free (orig_plugins); gst_plugin_list_free (orig_plugins);
} }
@@ -1458,6 +1692,7 @@ main (int argc, char *argv[]) @@ -1558,6 +1795,7 @@ main (int argc, char *argv[])
gboolean do_print_blacklist = FALSE; gboolean do_print_blacklist = FALSE;
gboolean plugin_name = FALSE; gboolean plugin_name = FALSE;
gboolean print_aii = FALSE; gboolean print_aii = FALSE;
@ -338,7 +341,7 @@ index b2502f4..dfd2eb4 100644
gboolean uri_handlers = FALSE; gboolean uri_handlers = FALSE;
#ifndef GST_DISABLE_OPTION_PARSING #ifndef GST_DISABLE_OPTION_PARSING
GOptionEntry options[] = { GOptionEntry options[] = {
@@ -1470,6 +1705,9 @@ main (int argc, char *argv[]) @@ -1570,6 +1808,9 @@ main (int argc, char *argv[])
"or all plugins provide.\n " "or all plugins provide.\n "
"Useful in connection with external automatic plugin " "Useful in connection with external automatic plugin "
"installation mechanisms"), NULL}, "installation mechanisms"), NULL},
@ -348,7 +351,7 @@ index b2502f4..dfd2eb4 100644
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name, {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
N_("List the plugin contents"), NULL}, N_("List the plugin contents"), NULL},
{"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers, {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
@@ -1557,7 +1795,7 @@ main (int argc, char *argv[]) @@ -1658,7 +1899,7 @@ main (int argc, char *argv[])
/* if there is such a plugin, print out info */ /* if there is such a plugin, print out info */
if (plugin) { if (plugin) {
if (print_aii) { if (print_aii) {
@ -357,7 +360,7 @@ index b2502f4..dfd2eb4 100644
} else { } else {
print_plugin_info (plugin); print_plugin_info (plugin);
print_plugin_features (plugin); print_plugin_features (plugin);
@@ -1570,13 +1808,17 @@ main (int argc, char *argv[]) @@ -1671,13 +1912,17 @@ main (int argc, char *argv[])
if (plugin) { if (plugin) {
if (print_aii) { if (print_aii) {
@ -378,5 +381,5 @@ index b2502f4..dfd2eb4 100644
return -1; return -1;
} }
-- --
1.6.5.2 1.7.4.1

2
gstreamer.attr Normal file
View File

@ -0,0 +1,2 @@
%__gstreamer_provides %{_rpmconfigdir}/gstreamer.prov
%__gstreamer_path ^%{_libdir}/gstreamer-.*/.*\.so$

View File

@ -6,8 +6,8 @@
%define _gobject-introspection 0.6.3 %define _gobject-introspection 0.6.3
Name: %{gstreamer} Name: %{gstreamer}
Version: 0.10.32 Version: 0.10.34
Release: 2%{?dist} Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia Group: Applications/Multimedia
@ -38,7 +38,7 @@ BuildRequires: gcc-c++
# For the GStreamer RPM provides # For the GStreamer RPM provides
Patch1: gstreamer-inspect-rpm-format.patch Patch1: gstreamer-inspect-rpm-format.patch
Source1: gstreamer.prov Source1: gstreamer.prov
Source2: macros.gstreamer Source2: gstreamer.attr
### documentation requirements ### documentation requirements
BuildRequires: python2 BuildRequires: python2
@ -144,9 +144,9 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
# Create empty cache directory # Create empty cache directory
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/gstreamer-%{majorminor} mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/gstreamer-%{majorminor}
# Add the provides script # Add the provides script
install -m0755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_prefix}/lib/rpm/gstreamer.prov install -m0755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_rpmconfigdir}/gstreamer.prov
# Add the macros file # Add the gstreamer plugin file attribute entry (rpm >= 4.9.0)
install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/rpm/macros.gstreamer install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer.attr
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
@ -231,8 +231,8 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/gstreamer-dataprotocol-%{majorminor}.pc %{_libdir}/pkgconfig/gstreamer-dataprotocol-%{majorminor}.pc
%{_libdir}/pkgconfig/gstreamer-net-%{majorminor}.pc %{_libdir}/pkgconfig/gstreamer-net-%{majorminor}.pc
%{_prefix}/lib/rpm/gstreamer.prov %{_rpmconfigdir}/gstreamer.prov
%{_sysconfdir}/rpm/macros.gstreamer %{_rpmconfigdir}/fileattrs/gstreamer.attr
%files devel-docs %files devel-docs
%defattr(-, root, root, -) %defattr(-, root, root, -)
@ -241,6 +241,18 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor} %doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor}
%changelog %changelog
* Sat May 14 2011 Benjamin Otte <otte@redhat.com> 0.10.34-1
- Update to 0.10.34
* Wed May 11 2011 Benjamin Otte <otte@redhat.com> 0.10.33-1
- Update to 0.10.33
* Mon Mar 21 2011 Panu Matilainen <pmatilai@redhat.com> 0.10.32-4
- Adjust provides generation for rpm >= 4.9.0
* Mon Mar 21 2011 Bastien Nocera <bnocera@redhat.com> 0.10.32-3
- Make it possible to auto-install GStreamer elements by name
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.32-2 * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.32-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

View File

@ -1 +0,0 @@
%__gstreamer_provides /usr/lib/rpm/gstreamer.prov

View File

@ -1 +1 @@
442bc3d37b8511a73379143e7531d726 gstreamer-0.10.32.tar.bz2 e6938af242cd002be9f0b6441e848d83 gstreamer-0.10.34.tar.bz2