[Python-modules-commits] r33357 - in packages/circuits/trunk/debian (7 files)

eriol-guest at users.alioth.debian.org eriol-guest at users.alioth.debian.org
Sun Jul 12 18:38:33 UTC 2015


    Date: Sunday, July 12, 2015 @ 18:38:32
  Author: eriol-guest
Revision: 33357

Ship manpages inside debian/manpages since they are no more included in sdist

Added:
  packages/circuits/trunk/debian/manpages/
  packages/circuits/trunk/debian/manpages/circuits.bench.1
  packages/circuits/trunk/debian/manpages/circuits.web.1
Modified:
  packages/circuits/trunk/debian/changelog
  packages/circuits/trunk/debian/python-circuits.manpages
  packages/circuits/trunk/debian/python3-circuits.manpages
  packages/circuits/trunk/debian/rules

Modified: packages/circuits/trunk/debian/changelog
===================================================================
--- packages/circuits/trunk/debian/changelog	2015-07-12 18:16:57 UTC (rev 33356)
+++ packages/circuits/trunk/debian/changelog	2015-07-12 18:38:32 UTC (rev 33357)
@@ -2,6 +2,8 @@
 
   * New upstream release.
   * Switch to pybuild.
+  * Ship manpages inside debian/manpages since they are no more included in
+    sdist.
   * debian/watch
     - Use pypi.debian.net redirector.
   * debian/patches/01_disable_sphinxcontrib_extensions.patch
@@ -13,7 +15,7 @@
   * debian/patches/05_fix-pil-import.patch
     - Remove since it is not needed anymore.
 
- -- Daniele Tricoli <eriol at mornie.org>  Sun, 12 Jul 2015 20:13:11 +0200
+ -- Daniele Tricoli <eriol at mornie.org>  Sun, 12 Jul 2015 20:32:37 +0200
 
 circuits (2.1.0-2) unstable; urgency=low
 

Added: packages/circuits/trunk/debian/manpages/circuits.bench.1
===================================================================
--- packages/circuits/trunk/debian/manpages/circuits.bench.1	                        (rev 0)
+++ packages/circuits/trunk/debian/manpages/circuits.bench.1	2015-07-12 18:38:32 UTC (rev 33357)
@@ -0,0 +1,58 @@
+.TH circuits.bench 1 "Jun 2011" "circuits 2.0.2" "User Commands"
+.SH NAME
+circuits.bench \- simple benchmaking of the circuits library
+.SH SYNOPSIS
+.B circuits.bench
+[\fIoptions\fR]
+.SH DESCRIPTION
+circuits.bench does some simple benchmaking of the circuits library.
+.SH OPTIONS
+.TP
+\fB-b\fR \fIaddress:[port]\fR
+Bind to address:[port] (UDP) to test remote events. Default address is 0.0.0.0.
+.TP
+\fB-c\fR \fIinteger\fR
+Set concurrency level to \fIinteger\fR. Default is 1.
+.TP
+\fB-d\fR
+Enable debug mode.
+.TP
+\fB-e\fR \fInumber\fR
+Stop after specified \fInumber\fR of events. Default is 0.
+.TP
+\fB-f\fR \fInumber\fR
+\fInumber\fR of dummy events to fill queue with. Default is 0.
+.TP
+\fB-l\fR
+Listen on 0.0.0.0:8000 (UDP) to test remote events.
+.TP
+\fB-m\fR \fImode\fR
+Set operation mode. \fImode\fR can be \fIlatency\fR, \fIspeed\fR or \fIsync\fR.
+Default \fImode\fR is \fIspeed\fR.
+.TP
+\fB-o\fR \fIformat\fR
+Specify output format.
+For example \fIformat\fR can be:"cicuits.bench: events:%s, speed:%s, time:%s"
+.TP
+\fB-p\fR
+Enable execution profiling support.
+.TP
+\fB-q\fR
+Suppress output.
+.TP
+\fB-s\fR
+Enable psyco (circuits on speed!) if it is available.
+.TP
+\fB-t\fR \fIseconds\fR
+Stop after specified elapsed \fIseconds\fR.
+.TP
+\fB-w\fR
+Wait for remote nodes to connect.
+.TP
+\fB--version\fR
+Output version information and exit.
+.SH AUTHOR
+James Mills <prologic at shortcircuit.net.au>
+.PP
+This manual page was written by Daniele Tricoli <eriol at mornie.org>, for the
+Debian project (but may be used by others).

Added: packages/circuits/trunk/debian/manpages/circuits.web.1
===================================================================
--- packages/circuits/trunk/debian/manpages/circuits.web.1	                        (rev 0)
+++ packages/circuits/trunk/debian/manpages/circuits.web.1	2015-07-12 18:38:32 UTC (rev 33357)
@@ -0,0 +1,44 @@
+.TH circuits.web 1 "Jun 2011" "circuits 2.0.2" "User Commands"
+.SH NAME
+circuits.web \- Web Server and testing tool
+.SH SYNOPSIS
+.B circuits.web
+[\fIoptions\fR] [\fIdocroot\fR]
+.SH DESCRIPTION
+circuits.web is a component based, event-driven light weight and high
+performance HTTP/WSGI framework. circuits.web applications are stand-alone
+applications with a high performance, multi-process web server with great
+concurrent scalability with full support for WSGI and deployment with other web
+servers.
+.SH OPTIONS
+.TP
+\fB-b\fR \fIaddress:[port]\fR
+Bind to address:[port]. Default address is 0.0.0.0:8000.
+.TP
+\fB-d\fR
+Enable debug mode.
+.TP
+\fB-j\fR
+Use python JIT (psyco) if it is available.
+.TP
+\fB-m\fR \fInumber\fR
+Specify \fInumber\fR of processes to start (multiprocessing).
+.TP
+\fB-p\fR
+Enable execution profiling support.
+.TP
+\fB-s\fR \fIserver\fR
+Specify server to use.
+.TP
+\fB-t\fR \fItype\fR
+Specify type of poller to use. \fItype\fR can be \fIepoll\fR, \fIpoll\fR or
+\fIselect\fR.
+Default \fItype\fR is \fIselect\fR.
+.TP
+\fB-v\fR
+Enable WSGI validation mode.
+.SH AUTHOR
+James Mills <prologic at shortcircuit.net.au>
+.PP
+This manual page was written by Daniele Tricoli <eriol at mornie.org>, for the
+Debian project (but may be used by others).

Modified: packages/circuits/trunk/debian/python-circuits.manpages
===================================================================
--- packages/circuits/trunk/debian/python-circuits.manpages	2015-07-12 18:16:57 UTC (rev 33356)
+++ packages/circuits/trunk/debian/python-circuits.manpages	2015-07-12 18:38:32 UTC (rev 33357)
@@ -1,2 +1,2 @@
-man/circuits.bench.1
-man/circuits.web.1
+debian/manpages/circuits.bench.1
+debian/manpages/circuits.web.1

Modified: packages/circuits/trunk/debian/python3-circuits.manpages
===================================================================
--- packages/circuits/trunk/debian/python3-circuits.manpages	2015-07-12 18:16:57 UTC (rev 33356)
+++ packages/circuits/trunk/debian/python3-circuits.manpages	2015-07-12 18:38:32 UTC (rev 33357)
@@ -1,2 +1,2 @@
-man/circuits.bench3.1
-man/circuits.web3.1
+debian/manpages/circuits.bench3.1
+debian/manpages/circuits.web3.1

Modified: packages/circuits/trunk/debian/rules
===================================================================
--- packages/circuits/trunk/debian/rules	2015-07-12 18:16:57 UTC (rev 33356)
+++ packages/circuits/trunk/debian/rules	2015-07-12 18:38:32 UTC (rev 33357)
@@ -11,7 +11,7 @@
 	rm -rf docs/build/html
 	rm -rf *.egg-info
 	find . -name *.coverage.* -delete
-	rm -f man/circuits.*3.1
+	rm -f debian/manpages/circuits.*3.1
 	dh_auto_clean
 
 override_dh_auto_build:
@@ -20,10 +20,10 @@
 	PYTHONPATH=. sphinx-build -N -bhtml docs/source docs/build/html
 
 	# Copy manpages for Python3 scripts
-	# cp man/circuits.bench.1 man/circuits.bench3.1
-	# cp man/circuits.web.1 man/circuits.web3.1
-	# sed -i 's/circuits.bench/circuits.bench3/g' man/circuits.bench3.1
-	# sed -i 's/circuits.web/circuits.web3/g' man/circuits.web3.1
+	cp debian/manpages/circuits.bench.1 debian/manpages/circuits.bench3.1
+	cp debian/manpages/circuits.web.1 debian/manpages/circuits.web3.1
+	sed -i 's/circuits.bench/circuits.bench3/g' debian/manpages/circuits.bench3.1
+	sed -i 's/circuits.web/circuits.web3/g' debian/manpages/circuits.web3.1
 
 override_dh_auto_install:
 	dh_auto_install




More information about the Python-modules-commits mailing list