[Pkg-voip-commits] r1137 - in stun/tags: . 0.96-1/debian 0.96-1/debian/patches

Kilian Krause kilian at costa.debian.org
Fri Jan 6 00:26:13 UTC 2006


Author: kilian
Date: 2006-01-06 00:26:12 +0000 (Fri, 06 Jan 2006)
New Revision: 1137

Added:
   stun/tags/0.96-1/
   stun/tags/0.96-1/debian/control
   stun/tags/0.96-1/debian/dirs
   stun/tags/0.96-1/debian/init.d
   stun/tags/0.96-1/debian/patches/00list
   stun/tags/0.96-1/debian/patches/daemon_noverbose.dpatch
   stun/tags/0.96-1/debian/rules
   stun/tags/0.96-1/debian/stun.default
Removed:
   stun/tags/0.96-1/debian/control
   stun/tags/0.96-1/debian/dirs
   stun/tags/0.96-1/debian/init.d
   stun/tags/0.96-1/debian/patches/00list
   stun/tags/0.96-1/debian/rules
Log:
tagging as uploaded.


Copied: stun/tags/0.96-1 (from rev 1134, stun/trunk)

Deleted: stun/tags/0.96-1/debian/control
===================================================================
--- stun/trunk/debian/control	2006-01-04 13:35:37 UTC (rev 1134)
+++ stun/tags/0.96-1/debian/control	2006-01-06 00:26:12 UTC (rev 1137)
@@ -1,17 +0,0 @@
-Source: stun
-Section: net
-Priority: optional
-Maintainer: Debian VoIP Team <pkg-voip-maintainers at lists.alioth.debian.org>
-Uploaders: Kilian Krause <kilian at debian.org>, Jose Carlos Garcia Sogo <jsogo at debian.org>, Mark Purcell <msp at debian.org>, Santiago Garcia Mantinan <manty at debian.org>
-Build-Depends: debhelper (>= 4.0.0), dpatch
-Standards-Version: 3.6.1
-
-Package: stun
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Server daemon and test client for STUN
- The STUN protocol (Simple Traversal of UDP through NATs) is described in the
- IETF RFC 3489, available at http://www.ietf.org/rfc/rfc3489.txt.  It's used to
- help clients behind NAT to tunnel incoming calls through. This server is the
- counterpart to help the client identify the NAT and have it open the proper
- ports for it.

Copied: stun/tags/0.96-1/debian/control (from rev 1135, stun/trunk/debian/control)

Deleted: stun/tags/0.96-1/debian/dirs
===================================================================
--- stun/trunk/debian/dirs	2006-01-04 13:35:37 UTC (rev 1134)
+++ stun/tags/0.96-1/debian/dirs	2006-01-06 00:26:12 UTC (rev 1137)
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin

Copied: stun/tags/0.96-1/debian/dirs (from rev 1135, stun/trunk/debian/dirs)

Deleted: stun/tags/0.96-1/debian/init.d
===================================================================
--- stun/trunk/debian/init.d	2006-01-04 13:35:37 UTC (rev 1134)
+++ stun/tags/0.96-1/debian/init.d	2006-01-06 00:26:12 UTC (rev 1137)
@@ -1,95 +0,0 @@
-#! /bin/sh
-#
-# skeleton	example file to build /etc/init.d/ scripts.
-#		This file should be used to construct scripts for /etc/init.d.
-#
-#		Written by Miquel van Smoorenburg <miquels at cistron.nl>.
-#		Modified for Debian 
-#		by Ian Murdock <imurdock at gnu.ai.mit.edu>.
-#
-# Version:	@(#)skeleton  1.9  26-Feb-2001  miquels at cistron.nl
-#
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/stun
-NAME=stun
-DESC=stun
-
-test -x $DAEMON || exit 0
-
-# Include stun defaults if available
-if [ -f /etc/default/stun ] ; then
-	. /etc/default/stun
-	if [ -z $PRIMARY_IP ];then
-		echo "No primary IP given. Exiting."
-		exit 1
-	fi
-	if [ -z $SECONDARY_IP ];then
-		echo "No secondary IP given. Exiting."
-		exit 1
-	fi
-	if [ -z $PRIMARY_PORT ];then
-		echo "No primary port given. Using default."
-		PRIMARY_PORT=3478
-	fi
-	if [ -z $SECONDARY_PORT ];then
-		echo "No secondary port given. Using default."
-		SECONDARY_PORT=3479
-	fi
-	if [ -z $DAEMON_USER ];then
-		DAEMON_USER=nobody
-	fi
-fi
-
-DAEMON_OPTS += "-b -h $PRIMARY_IP -a $SECONDARY_IP -p $PRIMARY_PORT -o $SECONDARY_PORT"
-
-set -e
-
-case "$1" in
-  start)
-	echo -n "Starting $DESC: "
-	start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
-		--user $DAMEON_USER --exec $DAEMON -- $DAEMON_OPTS
-	echo "$NAME."
-	;;
-  stop)
-	echo -n "Stopping $DESC: "
-	start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
-		--user $DAEMON_USER --exec $DAEMON
-	echo "$NAME."
-	;;
-  #reload)
-	#
-	#	If the daemon can reload its config files on the fly
-	#	for example by sending it SIGHUP, do it here.
-	#
-	#	If the daemon responds to changes in its config file
-	#	directly anyway, make this a do-nothing entry.
-	#
-	# echo "Reloading $DESC configuration files."
-	# start-stop-daemon --stop --signal 1 --quiet --pidfile \
-	#	/var/run/$NAME.pid --exec $DAEMON
-  #;;
-  restart|force-reload)
-	#
-	#	If the "reload" option is implemented, move the "force-reload"
-	#	option to the "reload" entry above. If not, "force-reload" is
-	#	just the same as "restart".
-	#
-	echo -n "Restarting $DESC: "
-	start-stop-daemon --stop --quiet --pidfile \
-		/var/run/$NAME.pid --exec $DAEMON
-	sleep 1
-	start-stop-daemon --start --quiet --pidfile \
-		/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
-	echo "$NAME."
-	;;
-  *)
-	N=/etc/init.d/$NAME
-	# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
-	echo "Usage: $N {start|stop|restart|force-reload}" >&2
-	exit 1
-	;;
-esac
-
-exit 0

Copied: stun/tags/0.96-1/debian/init.d (from rev 1136, stun/trunk/debian/init.d)

Deleted: stun/tags/0.96-1/debian/patches/00list
===================================================================
--- stun/trunk/debian/patches/00list	2006-01-04 13:35:37 UTC (rev 1134)
+++ stun/tags/0.96-1/debian/patches/00list	2006-01-06 00:26:12 UTC (rev 1137)
@@ -1 +0,0 @@
-fix_non_i386

Copied: stun/tags/0.96-1/debian/patches/00list (from rev 1135, stun/trunk/debian/patches/00list)

Copied: stun/tags/0.96-1/debian/patches/daemon_noverbose.dpatch (from rev 1135, stun/trunk/debian/patches/daemon_noverbose.dpatch)

Deleted: stun/tags/0.96-1/debian/rules
===================================================================
--- stun/trunk/debian/rules	2006-01-04 13:35:37 UTC (rev 1134)
+++ stun/tags/0.96-1/debian/rules	2006-01-06 00:26:12 UTC (rev 1137)
@@ -1,80 +0,0 @@
-#!/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.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-
-include /usr/share/dpatch/dpatch.make
-
-build: build-stamp
-build-stamp: patch-stamp 
-	dh_testdir
-
-	# Add here commands to compile the package.
-	$(MAKE) 
-	#$(MAKE) tlsServer 
-
-	touch build-stamp
-
-clean: clean-unpatched unpatch
-clean-unpatched:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-
-	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
-
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-	# Add here commands to install the package into debian/stun.
-	#$(MAKE) install DESTDIR=$(CURDIR)/debian/stun
-	install -m 755 server $(CURDIR)/debian/stun/usr/sbin/stund
-	#install -m 755 tlsServer $(CURDIR)/debian/stun/usr/sbin/
-	install -m 755 client $(CURDIR)/debian/stun/usr/bin/stun
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs 
-	dh_installdocs
-	dh_installexamples
-	dh_installinit
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install

Copied: stun/tags/0.96-1/debian/rules (from rev 1135, stun/trunk/debian/rules)

Copied: stun/tags/0.96-1/debian/stun.default (from rev 1135, stun/trunk/debian/stun.default)




More information about the Pkg-voip-commits mailing list