[Red5commits] [1235] creating tag from trunk
seisenmann
luke at codegent.com
Tue Jul 25 11:10:13 EDT 2006
creating tag from trunk
Timestamp: 07/26/06 00:49:17 (less than one hour ago)
Change: 1235
Author: seisenmann
Files (see diff or trac for details):
debian/tags/0.5-1
Trac: http://mirror1.cvsdude.com/trac/osflash/red5/changeset/1235
Index: /debian/tags/0.5-1/control
===================================================================
--- /debian/tags/0.5-1/control (revision 776)
+++ /debian/tags/0.5-1/control (revision 776)
@@ -0,0 +1,13 @@
+Source: red5
+Section: web
+Priority: optional
+Maintainer: Simon Eisenmann <simon at struktur.de>
+Build-Depends: debhelper (>= 4.0.0), ant, /usr/bin/javac
+Standards-Version: 3.6.1
+
+Package: red5
+Architecture: any
+Depends: /usr/bin/java
+Description: Red5 flash streaming server
+ Red5 is a server that not only streams content to the Flash plugin, but it can push calls and information to the Flash client! It can also receive video/audio/data from a flash client and either save or rebroadcast that content.
+
Index: /debian/tags/0.5-1/dirs
===================================================================
--- /debian/tags/0.5-1/dirs (revision 776)
+++ /debian/tags/0.5-1/dirs (revision 776)
@@ -0,0 +1,1 @@
+usr/lib/red5
Index: /debian/tags/0.5-1/red5.init
===================================================================
--- /debian/tags/0.5-1/red5.init (revision 1176)
+++ /debian/tags/0.5-1/red5.init (revision 1176)
@@ -0,0 +1,77 @@
+#! /bin/sh
+#
+# red5 red5 initscript
+#
+# Author: Simon Eisenmann <simon at struktur.de>.
+#
+
+set -e
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+DESC="Red5 flash streaming server"
+NAME=red5
+RED5_HOME=/usr/lib/red5
+DAEMON=$RED5_HOME/$NAME.sh
+PIDFILE=/var/run/$NAME.pid
+SCRIPTNAME=/etc/init.d/$NAME
+
+# Gracefully exit if the package has been removed.
+test -x $DAEMON || exit 0
+
+# Read config file if it is present.
+if [ -r /etc/red5.conf ]
+then
+ . /etc/red5.conf
+fi
+
+#
+# Function that starts the daemon/service.
+#
+d_start() {
+ start-stop-daemon --start --pidfile $PIDFILE \
+ --chdir $RED5_HOME --background --make-pidfile \
+ --exec $DAEMON
+}
+
+#
+# Function that stops the daemon/service.
+#
+d_stop() {
+ start-stop-daemon --stop --quiet --pidfile $PIDFILE \
+ --name java
+ rm -f $PIDFILE
+}
+
+#
+# Function that sends a SIGHUP to the daemon/service.
+#
+d_reload() {
+ start-stop-daemon --stop --quiet --pidfile $PIDFILE \
+ --name $NAME --signal 1
+}
+
+case "$1" in
+ start)
+ echo -n "Starting $DESC: $NAME"
+ d_start
+ echo "."
+ ;;
+ stop)
+ echo -n "Stopping $DESC: $NAME"
+ d_stop
+ echo "."
+ ;;
+ restart|force-reload)
+ echo -n "Restarting $DESC: $NAME"
+ d_stop
+ sleep 1
+ d_start
+ echo "."
+ ;;
+ *)
+ echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0
Index: /debian/tags/0.5-1/files
===================================================================
--- /debian/tags/0.5-1/files (revision 1234)
+++ /debian/tags/0.5-1/files (revision 1234)
@@ -0,0 +1,1 @@
+red5_0.5-1_i386.deb web optional
Index: /debian/tags/0.5-1/red5.default
===================================================================
--- /debian/tags/0.5-1/red5.default (revision 776)
+++ /debian/tags/0.5-1/red5.default (revision 776)
@@ -0,0 +1,2 @@
+JAVA_HOME=/usr
+CLASSPATH=
Index: /debian/tags/0.5-1/compat
===================================================================
--- /debian/tags/0.5-1/compat (revision 776)
+++ /debian/tags/0.5-1/compat (revision 776)
@@ -0,0 +1,1 @@
+4
Index: /debian/tags/0.5-1/changelog
===================================================================
--- /debian/tags/0.5-1/changelog (revision 1234)
+++ /debian/tags/0.5-1/changelog (revision 1234)
@@ -0,0 +1,24 @@
+red5 (0.5-1) unstable; urgency=low
+
+ * Upgrade to new re5 upstream release.
+
+ -- Simon Eisenmann <simon at struktur.de> Tue, 25 Jul 2006 16:36:04 +0200
+
+red5 (0.5rc1-1) unstable; urgency=low
+
+ * Upgrade to new red5 upstream release with non svn version.
+
+ -- Simon Eisenmann <simon at struktur.de> Mon, 17 Jul 2006 15:12:23 +0200
+
+red5 (20060317) unstable; urgency=low
+
+ * Debian build files now part of subversion tree.
+ * Added Makefile.
+
+ -- Simon Eisenmann <simon at struktur.de> Fri, 17 Mar 2006 16:51:50 +0100
+
+red5 (20060316) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Simon Eisenmann <simon at struktur.de> Fri, 17 Mar 2006 10:55:36 +0100
Index: /debian/tags/0.5-1/red5-doc.install
===================================================================
--- /debian/tags/0.5-1/red5-doc.install (revision 776)
+++ /debian/tags/0.5-1/red5-doc.install (revision 776)
@@ -0,0 +1,2 @@
+#DOCS#
+
Index: /debian/tags/0.5-1/copyright
===================================================================
--- /debian/tags/0.5-1/copyright (revision 776)
+++ /debian/tags/0.5-1/copyright (revision 776)
@@ -0,0 +1,29 @@
+
+RED5 Open Source Flash Server - http://www.osflash.org/red5
+
+Copyright © 2006 by respective authors (see below). All rights reserved.
+
+This library is free software; you can redistribute it and/or modify it under the
+terms of the GNU Lesser General Public License as published by the Free Software
+Foundation; either version 2.1 of the License, or (at your option) any later
+version.
+
+This library is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License along
+with this library; if not, write to the Free Software Foundation, Inc.,
+59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+The Red5 Project (red5 at osflash.org)
+Luke Hubbard (luke at codegent.com)
+Dominick Accattato (daccattato at gmail.com)
+Chris Allen (mrchrisallen at gmail.com)
+Joachim Bauch (jojo at struktur.de)
+Mick Herres (mickherres at hotmail.com)
+John Grden (johng at acmewebworks.com)
+Grant Davies (grant at bluetube.com)
+Steven Elliott (steven.s.elliott at gmail.com)
+Jokul Tian (tianxuefeng at gmail.com)
+Steven Gong (steven.gong at gmail.com)
Index: /debian/tags/0.5-1/docs
===================================================================
--- /debian/tags/0.5-1/docs (revision 776)
+++ /debian/tags/0.5-1/docs (revision 776)
@@ -0,0 +1,1 @@
+license.txt
Index: /debian/tags/0.5-1/red5-doc.docs
===================================================================
--- /debian/tags/0.5-1/red5-doc.docs (revision 776)
+++ /debian/tags/0.5-1/red5-doc.docs (revision 776)
@@ -0,0 +1,2 @@
+#DOCS#
+
Index: /debian/tags/0.5-1/rules
===================================================================
--- /debian/tags/0.5-1/rules (revision 776)
+++ /debian/tags/0.5-1/rules (revision 776)
@@ -0,0 +1,128 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ # Add here commands to configure the package.
+
+ touch configure-stamp
+
+
+#Architecture
+build: build-arch
+
+build-arch: build-arch-stamp
+build-arch-stamp: configure-stamp
+
+ # Add here commands to compile the arch part of the package.
+ $(MAKE)
+ touch build-arch-stamp
+
+build-indep: build-indep-stamp
+build-indep-stamp: configure-stamp
+
+ # Add here commands to compile the indep part of the package.
+ #$(MAKE)
+ touch build-indep-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-arch-stamp build-indep-stamp #CONFIGURE-STAMP#
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) clean
+
+ dh_clean
+
+install: install-indep install-arch
+install-indep:
+ dh_testdir
+ dh_testroot
+ dh_clean -k -i
+ dh_installdirs -i
+
+ # Add here commands to install the indep part of the package into
+ # debian/<package>-doc.
+ #INSTALLDOC#
+
+ dh_install -i
+
+install-arch:
+ dh_testdir
+ dh_testroot
+ dh_clean -k -s
+ dh_installdirs -s
+
+ # Add here commands to install the arch part of the package into
+ # debian/tmp.
+ $(MAKE) install PREFIX=$(CURDIR)/debian/red5/usr
+
+ dh_install -s
+# Must not depend on anything. This is to be called by
+# binary-arch/binary-indep
+# in another 'make' thread.
+binary-common:
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installexamples
+# dh_installmenu
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+ dh_installinit
+# dh_installcron
+# dh_installinfo
+# dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_perl
+# dh_python
+ dh_makeshlibs
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+# Build architecture independant packages using the common target.
+binary-indep: build-indep install-indep
+ $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
+
+# Build architecture dependant packages using the common target.
+binary-arch: build-arch install-arch
+ $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
+
+binary: binary-arch
+.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure
Note:
Diffs are chopped if more than 25k.
This is to get past the limit on the mailing list.
More information about the Red5commits
mailing list