[Python-modules-commits] r4249 - in packages/pprocess/trunk (7 files)

morph-guest at users.alioth.debian.org morph-guest at users.alioth.debian.org
Thu Jan 3 18:04:02 UTC 2008


    Date: Thursday, January 3, 2008 @ 18:04:01
  Author: morph-guest
Revision: 4249

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/pprocess/trunk/debian/
  packages/pprocess/trunk/debian/changelog
  packages/pprocess/trunk/debian/compat
  packages/pprocess/trunk/debian/control
  packages/pprocess/trunk/debian/copyright
  packages/pprocess/trunk/debian/rules
  packages/pprocess/trunk/debian/watch


Property changes on: packages/pprocess/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/pprocess/trunk/debian/changelog
===================================================================
--- packages/pprocess/trunk/debian/changelog	                        (rev 0)
+++ packages/pprocess/trunk/debian/changelog	2008-01-03 18:04:01 UTC (rev 4249)
@@ -0,0 +1,9 @@
+pprocess (0.3.1-1) UNRELEASED; urgency=low
+
+  TODO
+    - add test during build time?
+    - lintian warning: wait upstream to fix it or patch?
+
+  * Initial release (Closes: #456795)
+
+ -- Sandro Tosi <matrixhasu at gmail.com>  Tue, 18 Dec 2007 07:31:22 +0100

Added: packages/pprocess/trunk/debian/compat
===================================================================
--- packages/pprocess/trunk/debian/compat	                        (rev 0)
+++ packages/pprocess/trunk/debian/compat	2008-01-03 18:04:01 UTC (rev 4249)
@@ -0,0 +1 @@
+5

Added: packages/pprocess/trunk/debian/control
===================================================================
--- packages/pprocess/trunk/debian/control	                        (rev 0)
+++ packages/pprocess/trunk/debian/control	2008-01-03 18:04:01 UTC (rev 4249)
@@ -0,0 +1,24 @@
+Source: pprocess
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Sandro Tosi <matrixhasu at gmail.com>
+Build-Depends: debhelper (>= 5.0.38), python
+Build-Depends-Indep: python-support (>= 0.6), python-epydoc
+Standards-Version: 3.7.3
+Homepage: http://www.boddie.org.uk/python/pprocess.html
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pprocess/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pprocess/trunk/?op=log
+XS-Python-Version: all
+
+Package: python-pprocess
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Elementary parallel programming for Python
+ The  pprocess   module  provides  elementary   support  for  parallel
+ programming in  Python using a  fork-based process creation  model in
+ conjunction  with a  channel-based  communications model  implemented
+ using socketpair and poll. On systems with multiple CPUs or multicore
+ CPUs, processes should take advantage of as many CPUs or cores as the
+ operating system permits.

Added: packages/pprocess/trunk/debian/copyright
===================================================================
--- packages/pprocess/trunk/debian/copyright	                        (rev 0)
+++ packages/pprocess/trunk/debian/copyright	2008-01-03 18:04:01 UTC (rev 4249)
@@ -0,0 +1,61 @@
+This package was debianized by Sandro Tosi <matrixhasu at gmail.com> on
+Tue, 18 Dec 2007 00:24:56 +0100.
+
+It was downloaded from http://www.boddie.org.uk/python/pprocess.html
+
+Upstream Author:
+
+    Paul Boddie <paul at boddie.org.uk>
+
+Copyright: 
+
+    Copyright (C) 2005, 2006, 2007 Paul Boddie <paul at boddie.org.uk>
+
+License:
+
+    This  program 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 3 of
+    the License, or (at your option) any later version.
+
+    This program  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.
+
+In a Debian system the complete text of the GNU Lesser General Public
+License can be found in the file `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging is (C) 2007, Sandro Tosi <matrixhasu at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+PyGmy has different copyright and licence notes, reported here below:
+
+Copyright:
+
+    Copyright (C) 2005 Dave Griffiths
+    Copyright (C) 2006, 2007 Paul Boddie <paul at boddie.org.uk>
+
+License:
+
+    This  program is  free software;  you can  redistribute  it and/or
+    modify it  under the  terms of the  GNU General Public  License as
+    published by the Free Software Foundation; either version 2 of the
+    License, or (at your option) any later version.
+
+    This program  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
+    General Public License for more details.
+
+    You should have received a  copy of the GNU General Public License
+    along  with this  program;  if  not, write  to  the Free  Software
+    Foundation,  Inc.,  51  Franklin   St,  Fifth  Floor,  Boston,  MA
+    02110-1301, USA.
+
+Notes on the Inclusion of PyGmy:
+
+    PyGmy is included in  this distribution of parallel/pprocess as an
+    independent    demonstration    of    the    pprocess    library's
+    facilities. This distribution is thus considered as an aggregation
+    of the two works, with separate licences governing each work.

Added: packages/pprocess/trunk/debian/rules
===================================================================
--- packages/pprocess/trunk/debian/rules	                        (rev 0)
+++ packages/pprocess/trunk/debian/rules	2008-01-03 18:04:01 UTC (rev 4249)
@@ -0,0 +1,58 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -r)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	for python in $(PYVERS) ; do \
+	    $$python setup.py build; \
+	done
+	# generating api documentation
+	tools/apidocs.sh
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	# Add here commands to clean up after the build process.
+	for python in $(PYVERS) ; do \
+	    $$python setup.py clean; \
+	done
+	find . -name '*.py[co]' -delete
+	[ ! -d build ] || rm -rf build
+	[ ! -d apidocs ] || rm -rf apidocs
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+
+	# Add here commands to install the package into debian/pprocess.
+	python setup.py install --root=$(CURDIR)/debian/python-pprocess
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs		README.txt docs/*.html apidocs tests
+	dh_installexamples	examples/*
+	dh_pysupport
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: packages/pprocess/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/pprocess/trunk/debian/watch
===================================================================
--- packages/pprocess/trunk/debian/watch	                        (rev 0)
+++ packages/pprocess/trunk/debian/watch	2008-01-03 18:04:01 UTC (rev 4249)
@@ -0,0 +1,4 @@
+# Compulsory line, this is a version 3 file
+version=3
+
+http://www.boddie.org.uk/python/pprocess.html downloads/pprocess-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list