Compare commits

...

13 Commits
master ... f11

Author SHA1 Message Date
Fedora Release Engineering
ccf6a325b4 dist-git conversion 2010-07-28 17:12:23 +00:00
Bill Nottingham
ad317e0b92 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 02:03:47 +00:00
Bastien Nocera
39e8337b5c - Update to 0.10.25 2009-10-05 17:31:26 +00:00
Bastien Nocera
4423be1dcf - Update to 0.10.24 2009-08-05 11:44:39 +00:00
Bastien Nocera
7c51e11227 - Update to 0.10.23.4 2009-07-28 11:07:17 +00:00
Bastien Nocera
c50df4fe1a - Update to 0.10.23.3 2009-07-21 15:12:00 +00:00
Bastien Nocera
6c120121cc Fix rpm provides patch (again) 2009-07-16 14:50:49 +00:00
Bastien Nocera
05a7af5c7f Fix rpm provides patch 2009-07-16 14:41:52 +00:00
Bastien Nocera
3d49d2c07c - Update to 0.10.23.2 2009-07-16 14:32:05 +00:00
Bastien Nocera
dd4bd72d3d update patch application 2009-06-16 10:16:07 +00:00
Bastien Nocera
2b99a0517f - Update gst-inspect patch to ignore rank none plugins 2009-06-16 09:59:48 +00:00
Bastien Nocera
02a56a11f7 - Update to 0.10.23 2009-05-11 01:09:52 +00:00
Jesse Keating
0fdb3c5c8d Initialize branch F-11 for gstreamer 2009-04-15 05:47:52 +00:00
6 changed files with 53 additions and 45 deletions

View File

@ -1 +0,0 @@
gstreamer-0.10.22.tar.bz2

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
gstreamer-0.10.25.tar.bz2

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: gstreamer
# $Id: Makefile,v 1.1 2004/09/09 05:53:09 cvsdist Exp $
NAME := gstreamer
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attempt a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -1,11 +1,8 @@
Index: gst-inspect.c
===================================================================
RCS file: /cvs/gstreamer/gstreamer/tools/gst-inspect.c,v
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 *
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index a286ce8..7c4ac97 100644
--- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c
@@ -1270,9 +1270,219 @@ print_element_info (GstElementFactory * factory, gboolean print_names)
return 0;
}
@ -226,7 +223,20 @@ diff -u -p -u -p -r1.144 gst-inspect.c
{
GstPadDirection direction;
const gchar *type_name;
@@ -1325,15 +1535,19 @@ print_plugin_automatic_install_info_code
@@ -1297,6 +1507,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
return;
}
+ if (rpm_format) {
+ /* Ignore NONE ranked plugins */
+ if (GST_PLUGIN_FEATURE (factory)->rank == GST_RANK_NONE)
+ return;
+ }
+
/* decoder/demuxer sink pads should always be static and there should only
* be one, the same applies to encoders/muxers and source pads */
static_templates = gst_element_factory_get_static_pad_templates (factory);
@@ -1333,15 +1549,19 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
gst_structure_remove_field (s, "rate");
gst_structure_remove_field (s, "depth");
gst_structure_remove_field (s, "clock-rate");
@ -250,7 +260,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
{
gchar **protocols, **p;
@@ -1342,11 +1556,17 @@ print_plugin_automatic_install_info_prot
@@ -1350,11 +1570,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
switch (gst_element_factory_get_uri_type (factory)) {
case GST_URI_SINK:
for (p = protocols; *p != NULL; ++p)
@ -270,7 +280,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
break;
default:
break;
@@ -1356,7 +1576,7 @@ print_plugin_automatic_install_info_prot
@@ -1364,7 +1590,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
}
static void
@ -279,7 +289,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
{
const gchar *plugin_name;
GList *features, *l;
@@ -1376,11 +1596,12 @@ print_plugin_automatic_install_info (Gst
@@ -1384,11 +1610,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
if (g_str_equal (plugin_name, feature->plugin_name)) {
GstElementFactory *factory;
@ -295,15 +305,15 @@ diff -u -p -u -p -r1.144 gst-inspect.c
}
}
@@ -1394,6 +1615,7 @@ main (int argc, char *argv[])
@@ -1402,6 +1629,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;
#ifndef GST_DISABLE_OPTION_PARSING
GOptionEntry options[] = {
{"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
@@ -1403,6 +1625,9 @@ main (int argc, char *argv[])
@@ -1412,6 +1640,9 @@ main (int argc, char *argv[])
"provides.\n "
"Useful in connection with external automatic plugin "
"installation mechanisms"), NULL},
@ -313,7 +323,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
{"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[])
@@ -1492,7 +1723,7 @@ main (int argc, char *argv[])
/* if there is such a plugin, print out info */
if (plugin) {
if (print_aii) {
@ -322,7 +332,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
} else {
print_plugin_info (plugin);
print_plugin_features (plugin);
@@ -1491,13 +1716,16 @@ main (int argc, char *argv[])
@@ -1505,13 +1736,16 @@ main (int argc, char *argv[])
if (plugin) {
if (print_aii) {

View File

@ -5,8 +5,8 @@
%define _libxml2 2.4.0
Name: %{gstreamer}
Version: 0.10.22
Release: 4%{?dist}
Version: 0.10.25
Release: 1%{?dist}
Summary: GStreamer streaming media framework runtime
Group: Applications/Multimedia
@ -101,9 +101,7 @@ with different major/minor versions of GStreamer.
%prep
%setup -q -n gstreamer-%{version}
pushd tools/
%patch1 -p0 -b .rpm-provides
popd
%patch1 -p1 -b .rpm-provides
%build
# 0.10.0: manuals do not build due to an openjade error; disable for now
@ -213,6 +211,27 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.gstreamer
%changelog
* Mon Oct 05 2009 Bastien Nocera <bnocera@redhat.com> 0.10.25-1
- Update to 0.10.25
* Wed Aug 05 2009 Bastien Nocera <bnocera@redhat.com> 0.10.24-1
- Update to 0.10.24
* Tue Jul 28 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23.4-1
- Update to 0.10.23.4
* Tue Jul 21 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23.3-1
- Update to 0.10.23.3
* Thu Jul 16 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23.2-1
- Update to 0.10.23.2
* Tue Jun 16 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23-2
- Update gst-inspect patch to ignore rank none plugins
* Mon May 11 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23-1
- Update to 0.10.23
* Thu Feb 26 2009 Warren Togami <wtogami@redhat.com> - 0.10.22-4
- Move req on which and pkgconfig to gstreamer-tools

View File

@ -1 +1 @@
35dd8598837af4074753afe5b59e8ef2 gstreamer-0.10.22.tar.bz2
88544e034a051baf472983791d233076 gstreamer-0.10.25.tar.bz2