releasing 0.9.7

Original commit message from CVS:
releasing 0.9.7
This commit is contained in:
Thomas Vander Stichele 2005-12-01 19:15:26 +00:00
parent 3e68928bdd
commit 5d781f908f
15 changed files with 35 additions and 23 deletions

View file

@ -1,3 +1,10 @@
=== release 0.9.7 ===
2005-12-01 <thomas (at) apestaart (dot) org>
* configure.ac:
releasing 0.9.7, "Mon Chien N'a Pas De Nez"
2005-12-01 Andy Wingo <wingo@pobox.com> 2005-12-01 Andy Wingo <wingo@pobox.com>
* configure.ac (GST_PLUGINS_BASE_LIBS): Check for * configure.ac (GST_PLUGINS_BASE_LIBS): Check for

12
NEWS
View file

@ -1,5 +1,13 @@
This is GStreamer Python Bindings 0.9.6, This is GStreamer Python Bindings 0.9.7,
"We'll always have Paris. We got it back last night." "Mon Chien N'a Pas De Nez."
Changes since 0.9.6:
* Updates for API changes
Bugs fixed since 0.9.6:
* 322250 : Remove *_full wrappers
Changes since 0.9.5: Changes since 0.9.5:

View file

@ -1,5 +1,5 @@
GStreamer: Release notes for GStreamer Python bindings 0.9.6 "We'll always have Paris. We got it back last night." GStreamer: Release notes for GStreamer Python bindings 0.9.7 "Mon Chien N'a Pas De Nez"
The GStreamer team is petrified to announce a new release The GStreamer team is petrified to announce a new release
@ -16,13 +16,11 @@ Features of this release
* Parallel installability with 0.8.x series * Parallel installability with 0.8.x series
* Threadsafe design and API * Threadsafe design and API
* added FractionRange * Updates for API changes
* updated for API changes
Bugs fixed in this release Bugs fixed in this release
* 318793 : check whether new date/tag API needs wrapping * 322250 : Remove *_full wrappers
* 321839 : pipeline hangs in get_state after changing trival pipeline
Download Download
@ -54,6 +52,5 @@ Contributors to this release
* Andy Wingo * Andy Wingo
* Edward Hervey * Edward Hervey
* Jan Schmidt
* Thomas Vander Stichele * Thomas Vander Stichele
   

2
common

@ -1 +1 @@
Subproject commit 54bb21c57bb86941d80c15590e0a121405173156 Subproject commit fe94837afc0b10eaf867156fc29eea0073ba45df

View file

@ -8,7 +8,7 @@ dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
AM_MAINTAINER_MODE AM_MAINTAINER_MODE
dnl when going to/from release please set the nano (fourth number) right ! dnl when going to/from release please set the nano (fourth number) right !
AS_VERSION(gst-python, PYGST_VERSION, 0, 9, 6, 1, AS_VERSION(gst-python, PYGST_VERSION, 0, 9, 7, 0,
GST_CVS="no", GST_CVS="yes") GST_CVS="no", GST_CVS="yes")
AM_INIT_AUTOMAKE($PACKAGE, $VERSION) AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
@ -27,7 +27,7 @@ dnl required versions of other packages
AC_SUBST(PYGTK_REQ, 2.6.3) AC_SUBST(PYGTK_REQ, 2.6.3)
AC_SUBST(GLIB_REQ, 2.6.0) AC_SUBST(GLIB_REQ, 2.6.0)
AC_SUBST(GTK_REQ, 2.6.0) AC_SUBST(GTK_REQ, 2.6.0)
AC_SUBST(GST_REQ, 0.9.0) AC_SUBST(GST_REQ, 0.9.7)
AC_DISABLE_STATIC AC_DISABLE_STATIC
@ -53,7 +53,7 @@ fi
AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)]) AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
dnl check for GStreamer dnl check for GStreamer
GST_MAJORMINOR=0.9 GST_MAJORMINOR=0.10
AC_SUBST(GST_MAJORMINOR) AC_SUBST(GST_MAJORMINOR)
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ) PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ)
AC_SUBST(GST_CFLAGS) AC_SUBST(GST_CFLAGS)

View file

@ -1,4 +1,4 @@
examplesdir = $(pkgdatadir)/0.9/examples examplesdir = $(pkgdatadir)/$(GST_MAJORMINOR)/examples
examples_DATA = \ examples_DATA = \
audio-controller.py \ audio-controller.py \
bps.py \ bps.py \

View file

@ -32,7 +32,7 @@ import gobject
import gtk import gtk
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst

View file

@ -27,7 +27,7 @@ from gtk import gdk
import gobject import gobject
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst
class DebugSlider(gtk.HScale): class DebugSlider(gtk.HScale):

View file

@ -26,7 +26,7 @@
import sys import sys
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst

View file

@ -17,7 +17,7 @@ import sys
import gobject import gobject
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst

View file

@ -32,7 +32,7 @@ import pango
import gobject import gobject
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst
import debugslider import debugslider

View file

@ -10,7 +10,7 @@ import sys
import gobject import gobject
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst
import gst.interfaces import gst.interfaces
import gtk import gtk

View file

@ -13,7 +13,7 @@
# messages # messages
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst
import gobject import gobject

View file

@ -30,7 +30,7 @@ import gtk
import gobject import gobject
import pygst import pygst
pygst.require('0.9') pygst.require('0.10')
import gst import gst
import fvumeter import fvumeter

View file

@ -16,7 +16,7 @@ interface_lib = interfaces.la
defs_DATA = gst-types.defs \ defs_DATA = gst-types.defs \
gst-extrafuncs.defs \ gst-extrafuncs.defs \
libs.defs libs.defs
defsdir = $(pkgdatadir)/0.9/defs defsdir = $(pkgdatadir)/$(GST_MAJORMINOR)/defs
noinst_HEADERS = common.h pygstvalue.h pygstminiobject.h pygstobject.h pygstexception.h noinst_HEADERS = common.h pygstvalue.h pygstminiobject.h pygstobject.h pygstexception.h
@ -64,7 +64,7 @@ gst.c: $(GST_DEFS) $(GST_OVERRIDES) $(GEN_FILES)
# GStreamer interfaces bindings # GStreamer interfaces bindings
interfaces_la_CFLAGS = $(common_cflags) $(GST_PLUGINS_BASE_CFLAGS) interfaces_la_CFLAGS = $(common_cflags) $(GST_PLUGINS_BASE_CFLAGS)
interfaces_la_LIBADD = $(common_libadd) -lgstinterfaces-0.9 interfaces_la_LIBADD = $(common_libadd) -lgstinterfaces-$(GST_MAJORMINOR)
interfaces_la_LDFLAGS = $(common_ldflags) -export-symbols-regex initinterface $(GST_PLUGINS_BASE_LIBS) interfaces_la_LDFLAGS = $(common_ldflags) -export-symbols-regex initinterface $(GST_PLUGINS_BASE_LIBS)
interfaces_la_SOURCES = interfacesmodule.c interfaces_la_SOURCES = interfacesmodule.c
nodist_interfaces_la_SOURCES = interfaces.c nodist_interfaces_la_SOURCES = interfaces.c