[Pkg-voip-commits] r1660 - in destar: . trunk/debian trunk/debian/patches

Santiago José Ruano Rincón santiago-guest at costa.debian.org
Mon May 1 01:05:03 UTC 2006


Author: santiago-guest
Date: 2006-05-01 01:05:03 +0000 (Mon, 01 May 2006)
New Revision: 1660

Added:
   destar/tarballs
   destar/trunk/debian/patches/30_add_port_option.dpatch
Modified:
   destar/trunk/debian/changelog
   destar/trunk/debian/control
   destar/trunk/debian/init.d
   destar/trunk/debian/patches/00list
   destar/trunk/debian/watch
Log:
* Released destar_0.1.1-4
* New maintainer's mail address



Added: destar/tarballs
===================================================================
--- destar/tarballs	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/tarballs	2006-05-01 01:05:03 UTC (rev 1660)
@@ -0,0 +1 @@
+link ../tarballs/
\ No newline at end of file


Property changes on: destar/tarballs
___________________________________________________________________
Name: svn:special
   + *

Modified: destar/trunk/debian/changelog
===================================================================
--- destar/trunk/debian/changelog	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/trunk/debian/changelog	2006-05-01 01:05:03 UTC (rev 1660)
@@ -1,3 +1,21 @@
+destar (0.1.1-4) unstable; urgency=low
+
+  * Changed maintainer's email address.
+  * Fixed watch file
+
+ -- Santiago Ruano Rincón <santiago at debian.org>  Sun, 30 Apr 2006 19:51:56 -0500
+
+destar (0.1.1-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/30_add_port_option.dpatch: Made the port number
+    configurable. Closes: #353823.
+  * debian/init.d: Added --port=8080 to the default options. This doesn't
+    change the default port number, but nicely points out where the port
+    number is to be changed, if it needs to be changed.
+
+ -- Lars Wirzenius <liw at iki.fi>  Thu, 16 Mar 2006 22:35:00 +0200
+
 destar (0.1.1-3) unstable; urgency=low
 
   * Asterisk removed from build-depends. 

Modified: destar/trunk/debian/control
===================================================================
--- destar/trunk/debian/control	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/trunk/debian/control	2006-05-01 01:05:03 UTC (rev 1660)
@@ -1,7 +1,7 @@
 Source: destar
 Section: comm
 Priority: optional
-Maintainer: Santiago Ruano Rincon <santiago at unicauca.edu.co>
+Maintainer: Santiago Ruano Rincón <santiago at debian.org>
 Uploaders: Alejandro Rios P. <alejandro.rios at avatar.com.co>
 Build-Depends: debhelper (>=4.0.0)
 Build-Depends-Indep: python, dpatch

Modified: destar/trunk/debian/init.d
===================================================================
--- destar/trunk/debian/init.d	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/trunk/debian/init.d	2006-05-01 01:05:03 UTC (rev 1660)
@@ -7,7 +7,7 @@
 NAME=destar
 DESC="Asterisk Web GUI DeStar"
 PIDFILE=/var/run/$NAME/$NAME.pid
-DAEMON_OPTS="--daemonize --pid=$PIDFILE"
+DAEMON_OPTS="--daemonize --pid=$PIDFILE --port=8080"
 
 test -x $DAEMON || exit 0
 

Modified: destar/trunk/debian/patches/00list
===================================================================
--- destar/trunk/debian/patches/00list	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/trunk/debian/patches/00list	2006-05-01 01:05:03 UTC (rev 1660)
@@ -3,3 +3,4 @@
 20_fix_changelog.dpatch
 30_pychart.dpatch
 no_medusa.dpatch
+30_add_port_option.dpatch

Added: destar/trunk/debian/patches/30_add_port_option.dpatch
===================================================================
--- destar/trunk/debian/patches/30_add_port_option.dpatch	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/trunk/debian/patches/30_add_port_option.dpatch	2006-05-01 01:05:03 UTC (rev 1660)
@@ -0,0 +1,50 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 30_add_port_option.dpatch by  <liw at iki.fi>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Add -P|--port option to destar.
+
+ at DPATCH@
+
+--- destar-0.1.1.unchanged/destar	2005-11-13 04:00:41.000000000 +0200
++++ destar-0.1.1/destar	2006-03-16 22:59:48.000000000 +0200
+@@ -33,6 +33,7 @@
+ import daemonize
+ be_daemon = False
+ pid_file = '/var/run/destar.pid'
++port = 8080
+ 
+ 
+ def print_version():
+@@ -57,8 +58,8 @@
+ 
+ 
+ try:
+-	opts,args = getopt.getopt(sys.argv[1:],'dhp:v', 
+-		['daemonize','help','pid=', 'version'])
++	opts,args = getopt.getopt(sys.argv[1:],'dhp:vP:', 
++		['daemonize','help','pid=', 'version', 'port='])
+ except getopt.GetoptError:
+ 	print "DeStar: Command-line parsing error. Aborting."
+ 	print_usage()
+@@ -75,6 +76,11 @@
+ 	if opt in ('-v', '--version'):
+ 		print_version()
+ 		sys.exit(0)
++	if opt in ('-P', '--port'):
++		try:
++			port = int(val)
++		except ValueError:
++			pass
+ 
+ 
+ print_version()
+@@ -100,7 +106,7 @@
+ # 'Publisher.py' contains our session management, 'page_main' contains
+ # the start page.
+ import Server, Publisher
+-pub = Server.Server("page_main", port=8080, publisher=Publisher.DeStarPublisher)
++pub = Server.Server("page_main", port=port, publisher=Publisher.DeStarPublisher)
+ 
+ 
+ 

Modified: destar/trunk/debian/watch
===================================================================
--- destar/trunk/debian/watch	2006-05-01 00:03:58 UTC (rev 1659)
+++ destar/trunk/debian/watch	2006-05-01 01:05:03 UTC (rev 1660)
@@ -1,2 +1,2 @@
 version=3
-http://download.berlios.de/destar/ destar-(.*)\.tar\.gz debian uupdate
+http://destar.berlios.de/index.php?c=2 http://download.berlios.de/destar/destar-(.*)\.tar\.gz debian uupdate




More information about the Pkg-voip-commits mailing list