rpms/gstreamer/devel .cvsignore, 1.35, 1.36 gstreamer-inspect-rpm-format.patch, 1.2, 1.3 gstreamer.spec, 1.92, 1.93 sources, 1.36, 1.37 gstreamer-0.10.21-fixgnomebz555631.patch, 1.1, NONE gstreamer-fix-bison-check.patch, 1.1, NONE

Bastien Nocera hadess at fedoraproject.org
Tue Jan 20 16:13:41 UTC 2009


Author: hadess

Update of /cvs/pkgs/rpms/gstreamer/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16446

Modified Files:
	.cvsignore gstreamer-inspect-rpm-format.patch gstreamer.spec 
	sources 
Removed Files:
	gstreamer-0.10.21-fixgnomebz555631.patch 
	gstreamer-fix-bison-check.patch 
Log Message:
* Tue Jan 20 2009 - Bastien Nocera <bnocera at redhat.com> - 0.10.22-1
- Update to 0.10.22
- Remove upstreamed patches, update rpm provides patch



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/gstreamer/devel/.cvsignore,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- .cvsignore	3 Oct 2008 08:12:48 -0000	1.35
+++ .cvsignore	20 Jan 2009 16:13:10 -0000	1.36
@@ -1 +1 @@
-gstreamer-0.10.21.tar.bz2
+gstreamer-0.10.22.tar.bz2

gstreamer-inspect-rpm-format.patch:

Index: gstreamer-inspect-rpm-format.patch
===================================================================
RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer-inspect-rpm-format.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gstreamer-inspect-rpm-format.patch	11 Sep 2008 23:48:12 -0000	1.2
+++ gstreamer-inspect-rpm-format.patch	20 Jan 2009 16:13:11 -0000	1.3
@@ -1,11 +1,11 @@
 Index: gst-inspect.c
 ===================================================================
 RCS file: /cvs/gstreamer/gstreamer/tools/gst-inspect.c,v
-retrieving revision 1.142
-diff -u -p -r1.142 gst-inspect.c
---- gst-inspect.c	31 Jul 2008 15:20:31 -0000	1.142
-+++ gst-inspect.c	11 Sep 2008 23:47:16 -0000
-@@ -1188,9 +1188,219 @@ print_element_info (GstElementFactory * 
+retrieving revision 1.144
+diff -u -p -u -p -r1.144 gst-inspect.c
+--- gst-inspect.c	17 Nov 2008 15:48:14 -0000	1.144
++++ gst-inspect.c	20 Jan 2009 16:11:05 -0000
+@@ -1262,9 +1262,219 @@ print_element_info (GstElementFactory * 
    return 0;
  }
  
@@ -226,7 +226,7 @@
  {
    GstPadDirection direction;
    const gchar *type_name;
-@@ -1251,15 +1461,19 @@ print_plugin_automatic_install_info_code
+@@ -1325,15 +1535,19 @@ print_plugin_automatic_install_info_code
      gst_structure_remove_field (s, "rate");
      gst_structure_remove_field (s, "depth");
      gst_structure_remove_field (s, "clock-rate");
@@ -250,7 +250,7 @@
  {
    gchar **protocols, **p;
  
-@@ -1268,11 +1482,17 @@ print_plugin_automatic_install_info_prot
+@@ -1342,11 +1556,17 @@ print_plugin_automatic_install_info_prot
      switch (gst_element_factory_get_uri_type (factory)) {
        case GST_URI_SINK:
          for (p = protocols; *p != NULL; ++p)
@@ -270,7 +270,7 @@
          break;
        default:
          break;
-@@ -1282,7 +1502,7 @@ print_plugin_automatic_install_info_prot
+@@ -1356,7 +1576,7 @@ print_plugin_automatic_install_info_prot
  }
  
  static void
@@ -279,7 +279,7 @@
  {
    const gchar *plugin_name;
    GList *features, *l;
-@@ -1302,11 +1522,12 @@ print_plugin_automatic_install_info (Gst
+@@ -1376,11 +1596,12 @@ print_plugin_automatic_install_info (Gst
      if (g_str_equal (plugin_name, feature->plugin_name)) {
        GstElementFactory *factory;
  
@@ -295,25 +295,25 @@
      }
    }
  
-@@ -1319,6 +1540,7 @@ main (int argc, char *argv[])
- {
+@@ -1394,6 +1615,7 @@ main (int argc, char *argv[])
    gboolean print_all = FALSE;
+   gboolean plugin_name = FALSE;
    gboolean print_aii = FALSE;
 +  gboolean print_aii_rpm = FALSE;
+   gboolean uri_handlers = FALSE;
    GOptionEntry options[] = {
      {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
-         N_("Print all elements"), NULL},
-@@ -1327,6 +1549,9 @@ main (int argc, char *argv[])
+@@ -1403,6 +1625,9 @@ main (int argc, char *argv[])
                "provides.\n                                       "
                "Useful in connection with external automatic plugin "
                "installation mechanisms"), NULL},
 +    {"rpm", '\0', 0, G_OPTION_ARG_NONE, &print_aii_rpm,
 +       N_("Print the machine-parsable list of features of a plugin in RPM "
 +       	  "Provides compatible-format"), NULL},
-     GST_TOOLS_GOPTION_VERSION,
-     {NULL}
-   };
-@@ -1384,7 +1609,7 @@ main (int argc, char *argv[])
+     {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
+         N_("List the plugin contents"), NULL},
+     {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
+@@ -1478,7 +1703,7 @@ main (int argc, char *argv[])
        /* if there is such a plugin, print out info */
        if (plugin) {
          if (print_aii) {
@@ -322,7 +322,7 @@
          } else {
            print_plugin_info (plugin);
            print_plugin_features (plugin);
-@@ -1397,13 +1622,16 @@ main (int argc, char *argv[])
+@@ -1491,13 +1716,16 @@ main (int argc, char *argv[])
  
            if (plugin) {
              if (print_aii) {


Index: gstreamer.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer.spec,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- gstreamer.spec	5 Jan 2009 15:53:56 -0000	1.92
+++ gstreamer.spec	20 Jan 2009 16:13:11 -0000	1.93
@@ -5,8 +5,8 @@
 %define 	_libxml2	2.4.0
 
 Name: 		%{gstreamer}
-Version: 	0.10.21
-Release: 	4%{?dist}
+Version: 	0.10.22
+Release: 	1%{?dist}
 Summary: 	GStreamer streaming media framework runtime
 
 Group: 		Applications/Multimedia
@@ -38,10 +38,6 @@
 Patch1:		gstreamer-inspect-rpm-format.patch
 Source1:	gstreamer.prov
 Source2:	macros.gstreamer
-# From: http://bugzilla.gnome.org/show_bug.cgi?id=555631
-Patch2:		gstreamer-0.10.21-fixgnomebz555631.patch
-# From http://bugzilla.gnome.org/show_bug.cgi?id=564507
-Patch3:		gstreamer-fix-bison-check.patch
 
 ### documentation requirements
 BuildRequires:  python2
@@ -108,12 +104,8 @@
 pushd tools/
 %patch1 -p0 -b .rpm-provides
 popd
-%patch2 -p1 -b .gnomebz555631
-%patch3 -p0 -b .bison-check
 
 %build
-autoreconf
-libtoolize -f
 # 0.10.0: manuals do not build due to an openjade error; disable for now
 %configure \
   --with-package-name='Fedora Core gstreamer package' \
@@ -223,6 +215,10 @@
 %{_sysconfdir}/rpm/macros.gstreamer
 
 %changelog
+* Tue Jan 20 2009 - Bastien Nocera <bnocera at redhat.com> - 0.10.22-1
+- Update to 0.10.22
+- Remove upstreamed patches, update rpm provides patch
+
 * Mon Jan 05 2009 - Bastien Nocera <bnocera at redhat.com> - 0.10.21-4
 - Fix build with newer version of bison
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/gstreamer/devel/sources,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- sources	3 Oct 2008 08:12:48 -0000	1.36
+++ sources	20 Jan 2009 16:13:11 -0000	1.37
@@ -1 +1 @@
-7bad90af3fd81a1535363cf85359125c  gstreamer-0.10.21.tar.bz2
+35dd8598837af4074753afe5b59e8ef2  gstreamer-0.10.22.tar.bz2


--- gstreamer-0.10.21-fixgnomebz555631.patch DELETED ---


--- gstreamer-fix-bison-check.patch DELETED ---




More information about the fedora-extras-commits mailing list