rpms/gstreamer08/devel gstreamer-0.7.5-nops.patch, NONE, 1.1 gstreamer-0.8.11-lib64.patch, NONE, 1.1 gstreamer-0.8.9-cast-fix.patch, NONE, 1.1 gstreamer08.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Brian Pepple (bpepple) fedora-extras-commits at redhat.com
Sun Mar 5 14:41:39 UTC 2006


Author: bpepple

Update of /cvs/extras/rpms/gstreamer08/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27687/devel

Modified Files:
	.cvsignore sources 
Added Files:
	gstreamer-0.7.5-nops.patch gstreamer-0.8.11-lib64.patch 
	gstreamer-0.8.9-cast-fix.patch gstreamer08.spec 
Log Message:
auto-import gstreamer08-0.8.12-3 on branch devel from gstreamer08-0.8.12-3.src.rpm

gstreamer-0.7.5-nops.patch:

--- NEW FILE gstreamer-0.7.5-nops.patch ---
--- gstreamer-0.7.5/docs/manuals.mak.nops	2004-02-27 08:52:16.000000000 +0100
+++ gstreamer-0.7.5/docs/manuals.mak	2004-02-27 08:52:48.000000000 +0100
@@ -42,7 +42,7 @@
 
 # can we generate PS ?
 if     DOC_PS
-PS_DAT = $(DOC).ps
+PS_DAT =
 else  #!DOC_PS
 PS_DAT =
 endif #DOC_PS
@@ -50,7 +50,7 @@
 
 # can we generate PDF ?
 if     DOC_PDF
-PDF_DAT = $(DOC).pdf
+PDF_DAT =
 else  #!DOC_PDF
 PDF_DAT =
 endif #DOC_PDF

gstreamer-0.8.11-lib64.patch:

--- NEW FILE gstreamer-0.8.11-lib64.patch ---
Index: gstreamer/tools/Makefile.am
===================================================================
--- gstreamer.orig/tools/Makefile.am
+++ gstreamer/tools/Makefile.am
@@ -2,9 +2,13 @@
 if GST_DISABLE_REGISTRY
 GST_REGISTRY_SRC = 
 GST_REGISTRY_SRC_V = 
+GST_REGISTRY_WRAPPER_SRC =
+GST_REGISTRY_WRAPPER_SRC_V =
 else
-GST_REGISTRY_SRC = gst-register
-GST_REGISTRY_SRC_V = gst-register- at GST_MAJORMINOR@
+GST_REGISTRY_SRC = gst-register- at host_cpu@
+GST_REGISTRY_SRC_V = gst-register- at host_cpu@- at GST_MAJORMINOR@
+GST_REGISTRY_WRAPPER_SRC = gst-register
+GST_REGISTRY_WRAPPER_SRC_V = gst-register- at GST_MAJORMINOR@
 endif
 
 if GST_DISABLE_LOADSAVE
@@ -34,18 +38,32 @@ GST_OTHER_SRC_V = \
 
 ### so all of the programs we want to build
 bin_PROGRAMS = \
-	$(GST_REGISTRY_SRC) $(GST_REGISTRY_SRC_V) \
 	$(GST_LOADSAVE_SRC) $(GST_LOADSAVE_SRC_V) \
 	$(GST_OTHER_SRC) $(GST_OTHER_SRC_V)
-bin_SCRIPTS = gst-feedback- at GST_MAJORMINOR@
+bin_SCRIPTS = gst-feedback- at GST_MAJORMINOR@ \
+	$(GST_REGISTRY_WRAPPER_SRC) $(GST_REGISTRY_WRAPPER_SRC_V)
+
+libexec_PROGRAMS = \
+        $(GST_REGISTRY_SRC) $(GST_REGISTRY_SRC_V)
 
 noinst_HEADERS = tools.h
 
 # make sure each versioned tool has the right source file and flags
 if !GST_DISABLE_REGISTRY
-gst_register_ at GST_MAJORMINOR@_SOURCES = gst-register.c
-gst_register_ at GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
-gst_register_ at GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
+edit = sed -e 's, at libexecdir\@,$(libexecdir),g' -e 's, at GST_MAJORMINOR\@, at GST_MAJORMINOR@,g'
+
+gst-register- at GST_MAJORMINOR@: Makefile $(srcdir)/gst-register.in
+	rm -f gst-register- at GST_MAJORMINOR@ gst-register- at GST_MAJORMINOR@.tmp
+	$(edit) $(srcdir)/gst-register.in >gst-register- at GST_MAJORMINOR@.tmp
+	mv gst-register- at GST_MAJORMINOR@.tmp gst-register- at GST_MAJORMINOR@
+gst-register: Makefile $(srcdir)/gst-register.in
+	rm -f gst-register gst-register.tmp
+	$(edit) $(srcdir)/gst-register.in >gst-register.tmp
+	mv gst-register.tmp gst-register
+gst_register_ at host_cpu@_ at GST_MAJORMINOR@_SOURCES = gst-register.c
+gst_register_ at host_cpu@_ at GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
+gst_register_ at host_cpu@_ at GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
+
 endif
 if !GST_DISABLE_LOADSAVE
 gst_complete_ at GST_MAJORMINOR@_SOURCES = gst-complete.c
@@ -80,7 +98,7 @@ gst-feedback- at GST_MAJORMINOR@: gst-feedb
 
 # make sure each unversioned tool comes from gst-run.c
 if !GST_DISABLE_REGISTRY
-gst_register_SOURCES = gst-run.c
+gst_register_ at host_cpu@_SOURCES = gst-run.c
 endif
 if !GST_DISABLE_LOADSAVE
 gst_complete_SOURCES = gst-run.c
Index: gstreamer/tools/gst-register.in
===================================================================
--- /dev/null
+++ gstreamer/tools/gst-register.in
@@ -0,0 +1,5 @@
+#!/bin/sh
+set -e
+for x in @libexecdir@/gst-register*@GST_MAJORMINOR@; do
+  $x
+done
Index: gstreamer/docs/gst/gstreamer-sections.txt
===================================================================
--- gstreamer.orig/docs/gst/gstreamer-sections.txt
+++ gstreamer/docs/gst/gstreamer-sections.txt
@@ -1347,10 +1347,14 @@ gst_real_pad_get_type
 GstRegistry
 GLOBAL_REGISTRY_DIR
 GLOBAL_REGISTRY_FILE
+GLOBAL_ARCH_REGISTRY_FILE
 GLOBAL_REGISTRY_FILE_TMP
+GLOBAL_ARCH_REGISTRY_FILE_TMP
 LOCAL_REGISTRY_DIR
 LOCAL_REGISTRY_FILE
+LOCAL_ARCH_REGISTRY_FILE
 LOCAL_REGISTRY_FILE_TMP
+LOCAL_ARCH_REGISTRY_FILE_TMP
 REGISTRY_DIR_PERMS
 REGISTRY_TMPFILE_PERMS
 REGISTRY_FILE_PERMS
Index: gstreamer/gst/Makefile.am
===================================================================
--- gstreamer.orig/gst/Makefile.am
+++ gstreamer/gst/Makefile.am
@@ -141,6 +141,7 @@ DISTCLEANFILES = $(built_header_configur
                                                                                 
 libgstreamer_ at GST_MAJORMINOR@_la_CFLAGS =	\
 	-D_GNU_SOURCE				\
+	-DHOSTCPU=\"$(host_cpu)\"		\
 	$(GST_LIB_CFLAGS) 			\
 	-DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\" 
 libgstreamer_ at GST_MAJORMINOR@_la_LIBADD = \
Index: gstreamer/gst/gstregistry.h
===================================================================
--- gstreamer.orig/gst/gstregistry.h
+++ gstreamer/gst/gstregistry.h
@@ -29,10 +29,14 @@
 #define GLOBAL_REGISTRY_DIR      GST_CACHE_DIR
 #define GLOBAL_REGISTRY_FILE     GLOBAL_REGISTRY_DIR"/registry.xml"
 #define GLOBAL_REGISTRY_FILE_TMP GLOBAL_REGISTRY_DIR"/.registry.xml.tmp"
+#define GLOBAL_ARCH_REGISTRY_FILE     GLOBAL_REGISTRY_DIR"/registry-" HOSTCPU ".xml"
+#define GLOBAL_ARCH_REGISTRY_FILE_TMP GLOBAL_REGISTRY_DIR"/.registry-" HOSTCPU ".xml.tmp"
 
 #define LOCAL_REGISTRY_DIR       ".gstreamer-"GST_MAJORMINOR
 #define LOCAL_REGISTRY_FILE      LOCAL_REGISTRY_DIR"/registry.xml"
 #define LOCAL_REGISTRY_FILE_TMP  LOCAL_REGISTRY_DIR"/.registry.xml.tmp"
+#define LOCAL_ARCH_REGISTRY_FILE      LOCAL_REGISTRY_DIR"/registry-" HOSTCPU ".xml"
+#define LOCAL_ARCH_REGISTRY_FILE_TMP  LOCAL_REGISTRY_DIR"/.registry-" HOSTCPU ".xml.tmp"
 
 /* compatibility for pre-POSIX defines */
 #ifdef S_IRUSR
Index: gstreamer/gst/gst.c
===================================================================
--- gstreamer.orig/gst/gst.c
+++ gstreamer/gst/gst.c
@@ -497,7 +497,7 @@ init_pre (void)
     const gchar *homedir;
 
     _global_registry =
-        gst_xml_registry_new ("global_registry", GLOBAL_REGISTRY_FILE);
+      gst_xml_registry_new ("global_registry", GLOBAL_ARCH_REGISTRY_FILE);
 
 #ifdef PLUGINS_USE_BUILDDIR
     /* location libgstelements.so */
@@ -517,7 +517,7 @@ init_pre (void)
       user_reg = g_strdup (g_getenv ("GST_REGISTRY"));
     } else {
       homedir = g_get_home_dir ();
-      user_reg = g_strjoin ("/", homedir, LOCAL_REGISTRY_FILE, NULL);
+      user_reg = g_build_filename (homedir, LOCAL_ARCH_REGISTRY_FILE, NULL);
     }
     _user_registry = gst_xml_registry_new ("user_registry", user_reg);
 

gstreamer-0.8.9-cast-fix.patch:

--- NEW FILE gstreamer-0.8.9-cast-fix.patch ---
--- gstreamer-0.8.9/gst/cothreads.c.cast-fix	2005-03-03 14:55:10.000000000 -0500
+++ gstreamer-0.8.9/gst/cothreads.c	2005-03-03 14:56:53.000000000 -0500
@@ -651,10 +651,14 @@
     makecontext (&ucp, cothread_stub, 0);
     setcontext (&ucp);
 #else
-    GST_ARCH_SETUP_STACK ((char *) cothread->sp);
-    GST_ARCH_SET_SP (cothread->sp);
-    /* start it */
-    GST_ARCH_CALL (cothread_stub);
+    {
+      char *charp_sp;
+      charp_sp = (char *) cothread->sp;
+      GST_ARCH_SETUP_STACK (charp_sp);
+      GST_ARCH_SET_SP (cothread->sp);
+      /* start it */
+      GST_ARCH_CALL (cothread_stub);
+    }
 #endif
 
     GST_CAT_DEBUG (GST_CAT_COTHREADS, "exit thread ");


--- NEW FILE gstreamer08.spec ---
%define         gstreamer       gstreamer08
%define         majmin          0.8

%define         _glib2          2.3.0
%define         _libxml2        2.4.9

%define         po_package      gstreamer-%{majmin}

%define DOCBOOK_DTD_PATH `xmlcatalog /etc/xml/catalog "-//OASIS//DTD DocBook XML V4.2//EN" | sed -e "s#file://##g"`

Name:           %{gstreamer}
Version:        0.8.12
Release:        3
Summary:        GStreamer streaming media framework runtime

Group:          Applications/Multimedia
License:        LGPL
URL:            http://gstreamer.freedesktop.org/
Source:         http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.bz2
Patch0:         gstreamer-0.8.11-lib64.patch
# There was problems generating pdf and postscript:
Patch1:         gstreamer-0.7.5-nops.patch
Patch2:         gstreamer-0.8.9-cast-fix.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:	glib2-devel >= %_glib2
BuildRequires:	libxml2-devel >= %_libxml2
BuildRequires:	gtk-doc >= 1.1
BuildRequires:	ghostscript
BuildRequires:  gettext-devel
### documentation requirements
BuildRequires:	xfig
BuildRequires:	python2
BuildRequires:	netpbm-progs

Requires:       popt > 1.6
Requires(post):	coreutils
Requires(post):	/sbin/ldconfig
Requires(postun): /sbin/ldconfig

%description
GStreamer is a streaming-media framework, based on graphs of filters which
operate on media data. Applications using this library can do anything
from real-time sound processing to playing videos, and just about anything
else media-related.  Its plugin-based architecture means that new data
types or processing capabilities can be added simply by installing new 
plugins.

%package devel
Summary: 	Libraries/include files for GStreamer streaming media framework
Group: 		Development/Libraries

Requires: 	%{name} = %{version}-%{release}
Requires: 	glib2-devel >= %_glib2
Requires: 	libxml2-devel >= %_libxml2

%description devel
GStreamer is a streaming-media framework, based on graphs of filters which
operate on media data. Applications using this library can do anything
from real-time sound processing to playing videos, and just about anything
else media-related.  Its plugin-based architecture means that new data
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.

%prep
%setup -q -n gstreamer-%{version}
%patch0 -p1 -b .lib64
%patch1 -p1 -b .nops
%patch2 -p1 -b .cast-fix

# openjade doesn't support xml catalogs, so we have to patch in the right dtd reference
find -name "*.xml" | xargs grep -l "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" | xargs perl -pi -e 's#http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd#/usr/share/sgml/docbook/xml-dtd-4.2-1.0-30/docbookx.dtd#g'

# The nopdf patch touches automake makefile sources
NOCONFIGURE=1 ./autogen.sh

%build

## FIXME should re-enable the docs build when it works
%configure --disable-plugin-builddir --disable-tests --disable-examples \
	 --with-cachedir=%{_localstatedir}/cache/gstreamer-%{majmin}	\
	--enable-docs-build --disable-docbook --disable-static     	\
	--disable-rpath --enable-debug

make %{?_smp_mflags}

%install  
rm -rf $RPM_BUILD_ROOT

# Install doc temporarily in order to be included later by rpm
make DESTDIR=${RPM_BUILD_ROOT} docdir=/installed-doc install
mv ${RPM_BUILD_ROOT}/installed-doc $(pwd)/installed-doc

mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/gstreamer-%{majmin}

rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majmin}/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/libgstmedia-info*.so.0.0.0

# remove tools, provided by the 0.10 version now
for a in launch inspect register xmllaunch complete compprep feedback md5sum typefind xmlinspect
do
  rm $RPM_BUILD_ROOT%{_bindir}/gst-$a
done
# can't wildcard, will remove the -0.8 versions
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-i386 || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-i686 || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-x86_64 || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-ppc || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-powerpc || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-powerpc64 || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-s390 || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-s390x || true
rm $RPM_BUILD_ROOT%{_libexecdir}/gst-register-ia64 || true

%find_lang %{po_package}

%clean
rm -rf $RPM_BUILD_ROOT

%post
/sbin/ldconfig
env DISPLAY= %{_bindir}/gst-register-%{majmin} 1>/dev/null 2>&1

%postun -p /sbin/ldconfig

%files -f %{po_package}.lang
%defattr(-, root, root)
%doc AUTHORS COPYING README TODO ABOUT-NLS REQUIREMENTS DOCBUILDING 
%dir %{_libdir}/gstreamer-%{majmin}
%dir %{_localstatedir}/cache/gstreamer-%{majmin}
%{_libdir}/gstreamer-%{majmin}/*.so*
%{_libdir}/*.so.*
%{_bindir}/*-%{majmin}
%{_libexecdir}/*-%{majmin}
%{_mandir}/man1/*-%{majmin}.1.gz

%files devel
%defattr(-, root, root)
%doc installed-doc/*
%dir %{_includedir}/gstreamer-%{majmin}
%{_includedir}/gstreamer-%{majmin}/*
%{_libdir}/libgstreamer-%{majmin}.so
%{_libdir}/libgstcontrol-%{majmin}.so
%{_libdir}/pkgconfig/gstreamer*.pc
%{_datadir}/aclocal/*
%{_datadir}/gtk-doc/html/*

%changelog
* Sat Mar  4 2006 Brian Pepple <bdpepple at ameritech.net> - 0.8.12-3
- Fix rpath issues (Thanks to Michael Schwendt).

* Thu Feb 23 2006 Brian Pepple <bdpepple at ameritech.net> - 0.8.12-2
- Use --disable-rpath & --disable-static.
- Drop period in devel summary.

* Thu Feb 16 2006 Brian Pepple <bdpepple at ameritech.net> - 0.8.12-1
- Use preferred buildroot.
- Update to 0.8.12.
- Drop requires for glib2 & libxml2, devel sonames pull these in.
- Remove unnecessary BR (zlib-devel, docbook-style-xsl, docbook-utils,
  cvs, docbook-dtds, openjade, docbook-style-dsssl, transfig, autoconf,
  automake, bison, flex, popt).

* Tue Jan 10 2006 Bill Nottingham <notting at redhat.com> 0.8.11-3
- requires(pre) coreutils, since we call env

* Wed Jan 04 2006 Warren Togami <wtogami at redhat.com> 0.8.11-2
- explicitly list archs to remove for gst-register
- attempt to workaround openjade problem

* Fri Dec 16 2005 Thomas Vander Stichele <thomas at apestaart dot org> 0.8.11-1
- Update to upstream 0.8.11

* Tue May 03 2005 John (J5) Palmieri <johnp at redhat.com> 0.8.10-1
- Update to upstream 0.8.10

* Thu Mar 17 2005 Colin Walters <walters at redhat.com> 0.8.9-4
- Rebuild to make it through beehive

* Wed Mar 03 2005 John (J5) Palmieri <johnp at redhat.com> 0.8.9-3
- add gstreamer-0.8.9-cast-fix.patch which casts the variable
  before sending it into the macro
- update openjade hack to refrence xml-dtd-4.2-1.0-26

* Wed Mar 03 2005 John (J5) Palmieri <johnp at redhat.com> 0.8.9-2 
- rebuild with gcc 4.0

* Wed Feb  9 2005 Matthias Clasen <mclasen at redhat.com> 0.8.9-1
- Update to 0.8.9

* Mon Jan 10 2005 Colin Walters <walters at redhat.com> 0.8.8-2
- Updated gstreamer-0.8.8-lib64.patch which does not rename
  tools such as gst-launch to e.g. gst-launch-i686.

* Mon Jan 03 2005 Colin Walters <walters at redhat.com> 0.8.8-1
- Update to 0.8.8
- Remove upstreamed escape-uris patch
- Readd redirection of register output to /dev/null

* Tue Nov 09 2004 Colin Walters <walters at redhat.com> 0.8.7-6
- Add initial lib64 patch.

* Tue Oct 26 2004 Colin Walters <walters at redhat.com> 0.8.7-5
- Do not override docdir (126860)
- Remove datadir/gstreamer-%{majmin}/doc from files list

* Wed Oct 20 2004 Colin Walters <walters at redhat.com> 0.8.7-4
- Add URI escaping patch from Ronald (136507)

* Wed Oct 13 2004 Colin Walters <walters at redhat.com> 0.8.7-3
- Quote %%configure in changelog (135412)

* Thu Oct 07 2004 Colin Walters <walters at redhat.com> 0.8.7-2
- BuildRequire gettext-devel

* Wed Oct  6 2004 Alexander Larsson <alexl at redhat.com> - 0.8.7-1
- update to 0.8.7

* Tue Oct  5 2004 Alexander Larsson <alexl at redhat.com> - 0.8.6-1
- update to 0.8.6
- Put the real lib .so symlinks in the -devel package
- Do not put .so plugins in the -devel package
- Correct docbook dtd version reference

* Tue Sep 28 2004 Colin Walters <walters at redhat.com> 0.8.5-2
- Move .so symlinks to -devel package

* Tue Aug 16 2004 Colin Walters <walters at redhat.com> 0.8.5-1
- Update to 0.8.5

* Tue Jul 26 2004 Colin Walters <walters at redhat.com> 0.8.4-1
- Update to 0.8.4

* Tue Jul 20 2004 Colin Walters <walters at redhat.com> 0.8.3.3-1
- Update

* Tue Jul 05 2004 Colin Walters <walters at redhat.com> 0.8.3-3
- Another rebuild to placate beehive!

* Tue Jul 05 2004 Colin Walters <walters at redhat.com> 0.8.3-2
- Rebuild to placate beehive

* Wed Jun 23 2004 Colin Walters <walters at redhat.com> 0.8.3-1
- Update to 0.8.3, now that I am convinced it is safe.
- Remove backported cpufix patch.
- "cvs remove" a bunch of obsoleted patches.

* Mon Jun 21 2004 Colin Walters <walters at redhat.com> 0.8.1-5
- BuildRequire gettext-devel

* Mon Jun 21 2004 Colin Walters <walters at redhat.com> 0.8.1-4
- BuildRequire ghostscript

* Mon Jun 21 2004 Colin Walters <walters at redhat.com> 0.8.1-3
- Apply register-clobbering patch from upstream CVS.

* Tue Jun 15 2004 Elliot Lee <sopwith at redhat.com> 0.8.1-2
- rebuilt

* Mon Apr 15 2004 Colin Walters <walters at redhat.com> 0.8.1-1
- Update to 0.8.1
- Delete registry patches which have been upstreamed
- COPYING.LIB is gone

* Mon Apr 05 2004 Colin Walters <walters at redhat.com> 0.8.0-4
- I have discovered that it is helpful, when adding patches
  to a package, to actually add the "%patchN" lines.

* Mon Mar 22 2004 Colin Walters <walters at redhat.com> 0.8.0-3
- Add BuildRequires on flex
- Add patch to avoid calling opendir() on files

* Mon Mar 22 2004 Colin Walters <walters at redhat.com> 0.8.0-2
- Add patch to avoid setting mtime on registry

* Tue Mar 16 2004 Alex Larsson <alexl at redhat.com> 0.8.0-1
- update to 0.8.0

* Wed Mar 10 2004 Alexander Larsson <alexl at redhat.com> 0.7.6-1
- update to 0.7.6

* Thu Mar  4 2004 Jeremy Katz <katzj at redhat.com> - 0.7.5-2
- fix plugin dir with respect to %%_lib

* Tue Mar 02 2004 Elliot Lee <sopwith at redhat.com>
- rebuilt

* Tue Feb 24 2004 Alexander Larsson <alexl at redhat.com> 0.7.5-1
- update to 0.7.5
- clean up specfile some
- enable docs

* Fri Feb 13 2004 Elliot Lee <sopwith at redhat.com>
- rebuilt

* Wed Feb  4 2004 Bill Nottingham <notting at redhat.com> 0.7.3-4
- fix %%post

* Wed Jan 28 2004 Alexander Larsson <alexl at redhat.com> 0.7.3-3
- add s390 patch

* Tue Jan 27 2004 Jonathan Blandford <jrb at redhat.com> 0.7.3-1
- new version

* Thu Sep 11 2003 Alexander Larsson <alexl at redhat.com> 0.6.3-1
- Update to 0.6.3 (gnome 2.4 final)

* Tue Aug 19 2003 Alexander Larsson <alexl at redhat.com> 0.6.2-6
- 0.6.2

* Wed Jun 04 2003 Elliot Lee <sopwith at redhat.com>
- rebuilt

* Mon Feb 17 2003 Elliot Lee <sopwith at redhat.com> 0.6.0-5
- ppc64 patch

* Wed Feb 12 2003 Bill Nottingham <notting at redhat.com> 0.6.0-4
- fix group

* Tue Feb 11 2003 Bill Nottingham <notting at redhat.com> 0.6.0-3
- prereq, not require, gstreamer-tools

* Tue Feb 11 2003 Jonathan Blandford <jrb at redhat.com> 0.6.0-2
- unset the DISPLAY when running gst-register

* Mon Feb  3 2003 Jonathan Blandford <jrb at redhat.com> 0.6.0-1
- yes it is needed.  Readding

* Sat Feb 01 2003 Florian La Roche <Florian.LaRoche at redhat.de>
- remove "tools" sub-rpm, this is not needed at all

* Thu Jan 30 2003 Jonathan Blandford <jrb at redhat.com> 0.5.2-7
- stopped using %%configure so we need to pass in all the args

* Mon Jan 27 2003 Jonathan Blandford <jrb at redhat.com>
- remove -Werror explicitly as the configure macro isn't working.

* Wed Jan 22 2003 Tim Powers <timp at redhat.com>
- rebuilt

* Thu Dec 19 2002 Elliot Lee <sopwith at redhat.com> 0.5.0-10
- Add patch1 to fix C++ plugins on ia64

* Wed Dec 18 2002 Jonathan Blandford <jrb at redhat.com>
- %post -p was wrong

* Tue Dec 17 2002 Jonathan Blandford <jrb at redhat.com> 0.5.0-7
- explicitly add %{_libdir}/libgstreamer-{majmin}.so
- explicitly add %{_libdir}/libgstcontrol-{majmin}.so

* Mon Dec 16 2002 Jonathan Blandford <jrb at redhat.com>
- bump release

* Fri Dec 13 2002 Jonathan Blandford <jrb at redhat.com>
- move .so files out of -devel

* Tue Dec 10 2002 Jonathan Blandford <jrb at redhat.com>
- new version 0.5.0
- require docbook-style-xsl
- add gstreamer-tools package too
- New patch to use the right docbook prefix.

* Tue Dec 10 2002 Jonathan Blandford <jrb at redhat.com>
- downgrade to a release candidate.  Should work better on other arches
- build without Werror

* Mon Dec  9 2002 Jonathan Blandford <jrb at redhat.com>
- update to new version.  Remove ExcludeArch

* Tue Dec  3 2002 Havoc Pennington <hp at redhat.com>
- excludearch some arches

* Mon Dec  2 2002 Havoc Pennington <hp at redhat.com>
- import into CVS and build "officially"
- use smp_mflags
- temporarily disable docs build, doesn't seem to work

* Thu Nov  7 2002 Jeremy Katz <katzj at redhat.com>
- 0.4.2

* Mon Sep 23 2002 Jeremy Katz <katzj at redhat.com>
- 0.4.1

* Sun Sep 22 2002 Jeremy Katz <katzj at redhat.com>
- minor cleanups

* Sat Jun 22 2002 Thomas Vander Stichele <thomas at apestaart.org>
- moved header location

* Mon Jun 17 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added popt
- removed .la

* Fri Jun 07 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added release of gstreamer to req of gstreamer-devel
- changed location of API docs to be in gtk-doc like other gtk-doc stuff
- reordered SPEC file

* Mon Apr 29 2002 Thomas Vander Stichele <thomas at apestaart.org>
- moved html docs to gtk-doc standard directory

* Tue Mar 5 2002 Thomas Vander Stichele <thomas at apestaart.org>
- move version defines of glib2 and libxml2 to configure.ac
- add BuildRequires for these two libs

* Sun Mar 3 2002 Thomas Vander Stichele <thomas at apestaart.org>
- put html docs in canonical place, avoiding %doc erasure
- added devhelp support, current install of it is hackish

* Sat Mar 2 2002 Christian Schaller <Uraeus at linuxrising.org>
- Added documentation to build

* Mon Feb 11 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added libgstbasicscheduler
- renamed libgst to libgstreamer

* Fri Jan 04 2002 Christian Schaller <Uraeus at linuxrising.org>
- Added configdir parameter as it seems the configdir gets weird otherwise

* Thu Jan 03 2002 Thomas Vander Stichele <thomas at apestaart.org>
- split off gstreamer-editor from core
- removed gstreamer-gnome-apps

* Sat Dec 29 2001 Rodney Dawes <dobey at free.fr>
- Cleaned up the spec file for the gstreamer core/plug-ins split
- Improve spec file

* Sat Dec 15 2001 Christian Schaller <Uraeus at linuxrising.org>
- Split of more plugins from the core and put them into their own modules
- Includes colorspace, xfree and wav
- Improved package Require lines
- Added mp3encode (lame based) to the SPEC

* Wed Dec 12 2001 Christian Schaller <Uraeus at linuxrising.org>
- Thomas merged mpeg plugins into one
* Sat Dec 08 2001 Christian Schaller <Uraeus at linuxrising.org>
- More minor cleanups including some fixed descriptions from Andrew Mitchell

* Fri Dec 07 2001 Christian Schaller <Uraeus at linuxrising.org>
- Added logging to the make statement

* Wed Dec 05 2001 Christian Schaller <Uraeus at linuxrising.org>
- Updated in preparation for 0.3.0 release

* Fri Jun 29 2001 Christian Schaller <Uraeus at linuxrising.org>
- Updated for 0.2.1 release
- Split out the GUI packages into their own RPM
- added new plugins (FLAC, festival, quicktime etc.)

* Sat Jun 09 2001 Christian Schaller <Uraeus at linuxrising.org>
- Visualisation plugins bundled out togheter
- Moved files sections up close to their respective descriptions

* Sat Jun 02 2001 Christian Schaller <Uraeus at linuxrising.org>
- Split the package into separate RPMS, 
  putting most plugins out by themselves.

* Fri Jun 01 2001 Christian Schaller <Uraeus at linuxrising.org>
- Updated with change suggestions from Dennis Bjorklund

* Tue Jan 09 2001 Erik Walthinsen <omega at cse.ogi.edu>
- updated to build -devel package as well

* Sun Jan 30 2000 Erik Walthinsen <omega at cse.ogi.edu>
- first draft of spec file



Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/gstreamer08/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	5 Mar 2006 14:40:38 -0000	1.1
+++ .cvsignore	5 Mar 2006 14:41:39 -0000	1.2
@@ -0,0 +1 @@
+gstreamer-0.8.12.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/gstreamer08/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	5 Mar 2006 14:40:38 -0000	1.1
+++ sources	5 Mar 2006 14:41:39 -0000	1.2
@@ -0,0 +1 @@
+80f3c4957ab3e254cc90016f87ba5482  gstreamer-0.8.12.tar.bz2




More information about the fedora-extras-commits mailing list