debian/0000775000000000000000000000000012277413234007175 5ustar debian/copyright0000664000000000000000000001224712276716410011137 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: billiard Upstream-Contact: Ask Solem Source: http://pypi.python.org/pypi/billiard/ Files: * Copyright: 2010-2013, Ask Solem License: BSD-3-clause Files: billiard/connection.py billiard/__init__.py billiard/_connection.py billiard/dummy/__init__.py billiard/dummy/connection.py billiard/forking.py billiard/heap.py billiard/managers.py billiard/pool.py billiard/process.py billiard/queues.py billiard/reduction.py billiard/sharedctypes.py billiard/synchronize.py billiard/util.py Doc/includes/mp_benchmarks.py Doc/includes/mp_newtype.py Doc/includes/mp_pool.py Doc/includes/mp_synchronize.py Doc/includes/mp_webserver.py Doc/includes/mp_workers.py Modules/_billiard/connection.h Modules/_billiard/multiprocessing.c Modules/_billiard/pipe_connection.c Modules/_billiard/semaphore.c Modules/_billiard/socket_connection.c Modules/_billiard/win32_functions.c License: PSF-2 Copyright: 2006-2008, R Oudkerk Files: debian/* Copyright: 2013, Michael Fladischer 2012, Thomas Bechtold License: BSD-3-clause License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: PSF-2 PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 -------------------------------------------- . 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. . 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. . 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. . 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. . 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. . 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. . 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. . 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. debian/compat0000664000000000000000000000000212276716410010374 0ustar 9 debian/watch0000664000000000000000000000012312276716410010223 0ustar version=3 http://pypi.python.org/packages/source/b/billiard/billiard-(.*)\.tar\.gz debian/python-billiard.install0000664000000000000000000000000512276716410013662 0ustar usr/ debian/python-billiard.docs0000664000000000000000000000001412276716410013144 0ustar README.rst debian/source/0000775000000000000000000000000012276716410010476 5ustar debian/source/format0000664000000000000000000000001412276716410011704 0ustar 3.0 (quilt) debian/patches/0000775000000000000000000000000012276716410010625 5ustar debian/patches/series0000664000000000000000000000010712276716410012040 0ustar spelling.patch remove-nose-cover3.patch exclude_funtests_package.patch debian/patches/remove-nose-cover3.patch0000664000000000000000000000113612276716410015305 0ustar Description: Remove pretty-printing nose-cover3 from build. nose-cover3 is not essential to the build-proccess and is not packaged for Debian. Thus removing it from the sources. Author: Michael Fladischer Last-Update: 2013-07-01 Forwared: not-needed --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,5 @@ [nosetests] where = billiard/tests -cover3-branch = 1 -cover3-html = 1 -cover3-package = billiard -cover3-exclude = billiard.tests [egg_info] tag_build = --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,4 +1,3 @@ unittest2>=0.4.0 nose -nose-cover3 mock debian/patches/exclude_funtests_package.patch0000664000000000000000000000076012276716410016710 0ustar Description: Do not install install funtests package Author: Michael Fladischer Last-Update: 2013-07-01 Forwarded: no --- a/setup.py +++ b/setup.py @@ -214,7 +214,7 @@ ] exclude = 'billiard.py2' if is_py3k else 'billiard.py3' packages = find_packages(exclude=[ - 'ez_setup', 'tests', 'funtests.*', 'tests.*', exclude, + 'ez_setup', 'tests', 'funtests', 'funtests.*', 'tests.*', exclude, ]) setup( name='billiard', debian/patches/spelling.patch0000664000000000000000000000070212276716410013462 0ustar Description: Fix spelling error in upstream Author: Michael Fladischer Last-Update: 2013-07-01 Forwarded: no --- a/Modules/_billiard/multiprocessing.c +++ b/Modules/_billiard/multiprocessing.c @@ -68,7 +68,7 @@ break; default: PyErr_Format(PyExc_RuntimeError, - "unkown error number %d", num); + "unknown error number %d", num); } return NULL; } debian/rules0000775000000000000000000000146312276716410010262 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 PYVERS := $(shell pyversions -i) %: dh $@ --with python2,sphinxdoc --buildsystem=python_distutils .PHONY: override_dh_auto_build override_dh_auto_build: dh_auto_build PYTHONPATH=. sphinx-build -b html -N Doc/ Doc/.build/html .PHONY: override_dh_installchangelogs override_dh_installchangelogs: dh_installchangelogs CHANGES.txt .PHONY: override_dh_compress override_dh_compress: dh_compress -X.js -X.html -X.txt .PHONY: override_dh_clean override_dh_clean: dh_clean rm -rf Doc/.build .PHONY: override_dh_auto_test override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) set -e; \ for py in $(PYVERS); do \ $$py setup.py test ; \ done endif .PHONY: override_dh_sphinxdoc-arch override_dh_sphinxdoc-arch: debian/python-billiard-doc.doc-base0000664000000000000000000000045512276716410014445 0ustar Document: python-billiard-doc Title: Python Billiard Documentation Author: Ask Solem Section: Programming/Python Format: HTML Index: /usr/share/doc/python-billiard-doc/html/index.html Files: /usr/share/doc/python-billiard-doc/html/*.html /usr/share/doc/python-billiard-doc/html/library/*.html debian/python-billiard-doc.docs0000664000000000000000000000002112276716410013705 0ustar Doc/.build/html debian/changelog0000664000000000000000000000443512277413234011055 0ustar billiard (3.3.0.15-1ubuntu1) trusty; urgency=low * Merge from Debian unstable. Remaining changes: - d/rules: Fixup test execution to actually execute tests based on installed python versions. -- James Page Fri, 14 Feb 2014 13:14:01 +0000 billiard (3.3.0.15-1) unstable; urgency=medium * New upstream release. * Drop exclude_funtests_package.patch, as it is no longer needed. -- Michael Fladischer Tue, 11 Feb 2014 11:55:10 +0100 billiard (3.3.0.13-1ubuntu1) trusty; urgency=medium * d/rules: Fixup test execution to actually execute tests based on installed python versions. -- James Page Mon, 13 Jan 2014 15:32:19 +0000 billiard (3.3.0.13-1) unstable; urgency=medium * New upstream release. * Bump Standards version to 3.9.5. -- Michael Fladischer Sun, 15 Dec 2013 18:53:18 +0100 billiard (2.7.3.34-2) unstable; urgency=low * Don't use sphinxdoc addon when building binary-arch (Closes: #721779). -- Michael Fladischer Wed, 06 Nov 2013 11:11:02 +0200 billiard (2.7.3.34-1) unstable; urgency=low * New upstream release. * Drop versioned Build-Depends on python-all as no prior versions are available in Wheezy. -- Michael Fladischer Tue, 15 Oct 2013 08:27:52 +0200 billiard (2.7.3.32-2) unstable; urgency=low * Move python-sphinx from Build-Depends-Indep to Build-Depends to fix FTBFS if only arch independend parts are built (Closes: #721779). * Drop libjs-jquery from Build-Depends-Indep as it is not required during build. -- Michael Fladischer Wed, 04 Sep 2013 11:53:15 +0200 billiard (2.7.3.32-1) unstable; urgency=low * New upstream release. * Rename "BSD" to "BSD-3-clause" in d/copyright. Thanks to paultag. -- Michael Fladischer Mon, 02 Sep 2013 20:03:14 +0200 billiard (2.7.3.31-1) unstable; urgency=low [ Michael Fladischer ] * Initial release (Closes: #571656) [ Thomas Bechtold ] * Update package to version 2.7.3.31. * Remove debian/pyversions. [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. -- Michael Fladischer Fri, 16 Aug 2013 10:18:12 +0200 debian/control0000664000000000000000000000304512276716410010603 0ustar Source: billiard Section: python Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Python Modules Team Uploaders: Michael Fladischer , Thomas Bechtold Build-Depends: debhelper (>= 9), python-all-dev, python-mock, python-nose, python-setuptools, python-sphinx (>= 1.0.7+dfsg-1~), python-unittest2 X-Python-Version: >= 2.4 Standards-Version: 3.9.5 Homepage: https://github.com/celery/billiard Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/billiard/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/billiard/trunk/ Package: python-billiard Architecture: any Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends} Suggests: python-billiard-doc Description: Multiprocessing Pool Extensions for Python This package contains extensions to the multiprocessing Pool. It extends the multiprocessing.Pool with a billiard.pool.DynamicPool that can grow in size. Package: python-billiard-doc Section: doc Architecture: all Depends: libjs-jquery, ${misc:Depends}, ${sphinxdoc:Depends} Description: Multiprocessing Pool Extensions for Python (Documentation) This package contains extensions to the multiprocessing Pool. It extends the multiprocessing.Pool with a billiard.pool.DynamicPool that can grow in size. . This package contains the documentation. debian/clean0000664000000000000000000000025412276716410010204 0ustar billiard.egg-info/dependency_links.txt billiard.egg-info/not-zip-safe billiard.egg-info/PKG-INFO billiard.egg-info/SOURCES.txt billiard.egg-info/top_level.txt _billiard.so