[svn r939] - release 26/02/2008 - 0.7.1 trunk
authorrenatofilho
Tue Feb 26 14:10:22 2008 +0000 (2008-02-26)
branchtrunk
changeset 930bb5d61b14d41
parent 929 00536b0eb88b
child 931 e8e3219edf5f
[svn r939] - release 26/02/2008 - 0.7.1
gmyth-dbus/Makefile.am
gmyth-dbus/autogen.sh
gmyth-dbus/configure.ac
gmyth-stream/gmencoder/configure.ac
gmyth-stream/server/setup.py
gmyth-upnp/configure.ac
gmyth/autogen.sh
gmyth/configure.ac
packages/gmencoder-debian/changelog
packages/gms-debian/changelog
packages/gmyth-debian/changelog
packages/gst-debian/changelog
     1.1 --- a/gmyth-dbus/Makefile.am	Mon Feb 25 18:40:34 2008 +0000
     1.2 +++ b/gmyth-dbus/Makefile.am	Tue Feb 26 14:10:22 2008 +0000
     1.3 @@ -1,7 +1,8 @@
     1.4  SUBDIRS = src data
     1.5  
     1.6 -EXTRA_DIST = 			\
     1.7 -	ChangeLog
     1.8 -	
     1.9 -DIST_SUBDIRS = 			\
    1.10 -	src data
    1.11 +EXTRA_DIST =			\
    1.12 +	autogen.sh			\
    1.13 +	AUTHORS				\
    1.14 +	COPYING				\
    1.15 +	README
    1.16 +
     2.1 --- a/gmyth-dbus/autogen.sh	Mon Feb 25 18:40:34 2008 +0000
     2.2 +++ b/gmyth-dbus/autogen.sh	Tue Feb 26 14:10:22 2008 +0000
     2.3 @@ -16,4 +16,4 @@
     2.4      echo "You need to install gnome-common from the GNOME CVS"
     2.5      exit 1
     2.6  }
     2.7 -REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh
     2.8 +REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh -I./m4
     3.1 --- a/gmyth-dbus/configure.ac	Mon Feb 25 18:40:34 2008 +0000
     3.2 +++ b/gmyth-dbus/configure.ac	Tue Feb 26 14:10:22 2008 +0000
     3.3 @@ -1,48 +1,22 @@
     3.4 -#                                               -*- Autoconf -*-
     3.5 -# Process this file with autoconf to produce a configure script.
     3.6 +AC_INIT(gmyth-dbus,0.7.0)
     3.7 +AC_PREREQ(2.52)
     3.8 +AC_CONFIG_SRCDIR(configure.ac)
     3.9 +AC_CANONICAL_BUILD
    3.10 +AC_CANONICAL_HOST
    3.11 +AC_ISC_POSIX
    3.12  
    3.13 -AC_PREREQ(2.50)
    3.14 +AM_INIT_AUTOMAKE(1.6 dist-bzip2)
    3.15 +AM_CONFIG_HEADER(config.h)
    3.16  
    3.17 -AC_INIT([gmyth-dbus],[0.7])
    3.18 -
    3.19 -AC_CONFIG_MACRO_DIR([m4])
    3.20 -AC_CONFIG_HEADER(config.h)
    3.21 -
    3.22 -dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode
    3.23 -AM_MAINTAINER_MODE
    3.24  dnl make aclocal work in maintainer mode
    3.25  AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
    3.26  
    3.27 -AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
    3.28 -
    3.29 -# Checks for programs.
    3.30 -# check for tools
    3.31 -# Make sure CFLAGS is defined to stop AC_PROC_CC adding -g
    3.32 -CFLAGS="$CFLAGS -Wall"
    3.33 +C_PROG_CXX
    3.34  AC_PROG_CC
    3.35 -AC_PROG_LIBTOOL
    3.36 -
    3.37 -# Checks for libraries.
    3.38 -
    3.39 -# Checks for header files.
    3.40 +AM_PROG_CC_STDC
    3.41  AC_HEADER_STDC
    3.42 -
    3.43 -#Test if --disable-debug given
    3.44 -AC_ARG_ENABLE(debug,
    3.45 -    AC_HELP_STRING([--disable-debug], [enable debugging mode]))
    3.46 -if test x"$enable_debug" != xno; then
    3.47 -    CFLAGS="$CFLAGS -g -DMYTH_STREAM_USE_DEBUG"
    3.48 -else
    3.49 -    CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS"
    3.50 -fi
    3.51 -
    3.52 -
    3.53 -AS_AC_EXPAND(DATADIR, $datadir)
    3.54 -
    3.55 -DBUS_SERVICES_DIR="$DATADIR/dbus-1/services"
    3.56 -AC_SUBST(DBUS_SERVICES_DIR)
    3.57 -AC_DEFINE_UNQUOTED(DBUS_SERVICES_DIR, "$DBUS_SERVICES_DIR", [Where services dir for DBUS is])
    3.58 -
    3.59 +AC_C_BIGENDIAN
    3.60 +AC_C_CONST
    3.61  
    3.62  # Checks required packages ####################################################
    3.63  ###############################################################################
    3.64 @@ -76,15 +50,9 @@
    3.65  AC_SUBST(LDFLAGS)
    3.66  AC_SUBST(LIBS)
    3.67  
    3.68 -AC_OUTPUT([
    3.69 +AC_OUTPUT(
    3.70  Makefile
    3.71  src/Makefile
    3.72  data/Makefile
    3.73  data/br.org.indt.GMyth.service
    3.74 -])
    3.75 -
    3.76 -if test "x$enable_debug" != "xno"; then
    3.77 -    AC_MSG_NOTICE([Debug: Enabled])
    3.78 -else
    3.79 -    AC_MSG_NOTICE([Debug: Disabled])
    3.80 -fi
    3.81 +)
     4.1 --- a/gmyth-stream/gmencoder/configure.ac	Mon Feb 25 18:40:34 2008 +0000
     4.2 +++ b/gmyth-stream/gmencoder/configure.ac	Tue Feb 26 14:10:22 2008 +0000
     4.3 @@ -3,7 +3,7 @@
     4.4  
     4.5  AC_PREREQ(2.50)
     4.6  
     4.7 -AC_INIT([gmemcoder],[0.1])
     4.8 +AC_INIT([gmemcoder],[0.7.1])
     4.9  
    4.10  AC_CONFIG_MACRO_DIR([m4])
    4.11  AC_CONFIG_HEADER(config.h)
     5.1 --- a/gmyth-stream/server/setup.py	Mon Feb 25 18:40:34 2008 +0000
     5.2 +++ b/gmyth-stream/server/setup.py	Tue Feb 26 14:10:22 2008 +0000
     5.3 @@ -2,9 +2,9 @@
     5.4  from glob import glob
     5.5  
     5.6  setup(name='gms',
     5.7 -      version='0.6',
     5.8 -      description='carman rich view package',
     5.9 -      long_description='carman rich view (SDL based) package',
    5.10 +      version='0.7.1',
    5.11 +      description='GMyth Transcode server',
    5.12 +      long_description='GMyth Transcode server',
    5.13        url='http://www.indt.org.br',
    5.14        scripts=['gms.py'],
    5.15        package_dir={'lib': 'lib', 'plugins' : 'plugins','data' : 'data' },
     6.1 --- a/gmyth-upnp/configure.ac	Mon Feb 25 18:40:34 2008 +0000
     6.2 +++ b/gmyth-upnp/configure.ac	Tue Feb 26 14:10:22 2008 +0000
     6.3 @@ -1,4 +1,4 @@
     6.4 -AC_INIT(gmyth-upnp, 0.7.0)
     6.5 +AC_INIT(gmyth-upnp, 0.7.1)
     6.6  AC_PREREQ(2.52)
     6.7  AC_CONFIG_SRCDIR(configure.ac)
     6.8  AC_CANONICAL_BUILD
     7.1 --- a/gmyth/autogen.sh	Mon Feb 25 18:40:34 2008 +0000
     7.2 +++ b/gmyth/autogen.sh	Tue Feb 26 14:10:22 2008 +0000
     7.3 @@ -16,4 +16,4 @@
     7.4      echo "You need to install gnome-common from the GNOME CVS"
     7.5      exit 1
     7.6  }
     7.7 -REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh -I./m4
     7.8 +REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh
     8.1 --- a/gmyth/configure.ac	Mon Feb 25 18:40:34 2008 +0000
     8.2 +++ b/gmyth/configure.ac	Tue Feb 26 14:10:22 2008 +0000
     8.3 @@ -1,4 +1,4 @@
     8.4 -AC_INIT(gmyth, 0.7.0)
     8.5 +AC_INIT(gmyth, 0.7.1)
     8.6  AC_PREREQ(2.52)
     8.7  AC_CONFIG_SRCDIR(configure.ac)
     8.8  AC_CANONICAL_BUILD
     9.1 --- a/packages/gmencoder-debian/changelog	Mon Feb 25 18:40:34 2008 +0000
     9.2 +++ b/packages/gmencoder-debian/changelog	Tue Feb 26 14:10:22 2008 +0000
     9.3 @@ -1,3 +1,9 @@
     9.4 +gmencoder (0.7.1-indt1) gutsy; urgency=low
     9.5 +
     9.6 +  * release 02/26/2008
     9.7 +
     9.8 + -- Renato Filho <renato.filho@indt.org.br>  Fri, 26 Feb 2008 11:01:00 -0300
     9.9 +
    9.10  gmencoder (0.7-indt1) gutsy; urgency=low
    9.11  
    9.12    * Updated to same gmyth Release 0.7
    10.1 --- a/packages/gms-debian/changelog	Mon Feb 25 18:40:34 2008 +0000
    10.2 +++ b/packages/gms-debian/changelog	Tue Feb 26 14:10:22 2008 +0000
    10.3 @@ -1,3 +1,9 @@
    10.4 +gms (0.7.1-indt1) gutsy; urgency=low
    10.5 +
    10.6 +  * release 02/26/2008
    10.7 +
    10.8 + -- Renato Filho <renato.filho@indt.org.br>  Fri, 26 Feb 2008 11:04:00 -0300
    10.9 +
   10.10  gms (0.7-indt1) gutsy; urgency=low
   10.11  
   10.12    * Updated to same gmyth Release 0.7
    11.1 --- a/packages/gmyth-debian/changelog	Mon Feb 25 18:40:34 2008 +0000
    11.2 +++ b/packages/gmyth-debian/changelog	Tue Feb 26 14:10:22 2008 +0000
    11.3 @@ -1,3 +1,9 @@
    11.4 +gmyth (0.7.1-indt1) gutsy; urgency=low
    11.5 +
    11.6 +  * Release 0.7.1
    11.7 +
    11.8 + -- Renato Araujo <renato.filho@indt.org.br>  Fri,  26 Feb 2008 10:52:08 -0300
    11.9 +
   11.10  gmyth (0.7-indt1) gutsy; urgency=low
   11.11  
   11.12    * Release 0.7 
    12.1 --- a/packages/gst-debian/changelog	Mon Feb 25 18:40:34 2008 +0000
    12.2 +++ b/packages/gst-debian/changelog	Tue Feb 26 14:10:22 2008 +0000
    12.3 @@ -1,3 +1,9 @@
    12.4 +gstreamer0.10-indt-plugins (0.10.14-svn20080226) gutsy; urgency=low
    12.5 +
    12.6 +  * Relase 02/26/2007;
    12.7 +
    12.8 + -- Renato Araujo Oliveira Filho <renato.filho@indt.org.br>  Mon, 26 Feb 2008 10:57:00 -0300
    12.9 +
   12.10  gstreamer0.10-indt-plugins (0.10.14-svn20080107) gutsy; urgency=low
   12.11  
   12.12    * Relase 01/07/2007;