[Python-modules-commits] r21080 - in packages/python-concurrent.futures/trunk (14 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Apr 8 11:07:38 UTC 2012


    Date: Sunday, April 8, 2012 @ 11:07:31
  Author: morph
Revision: 21080

[svn-inject] Applying Debian modifications (2.1.2-1) to trunk

Added:
  packages/python-concurrent.futures/trunk/debian/
  packages/python-concurrent.futures/trunk/debian/changelog
  packages/python-concurrent.futures/trunk/debian/compat
  packages/python-concurrent.futures/trunk/debian/control
  packages/python-concurrent.futures/trunk/debian/copyright
  packages/python-concurrent.futures/trunk/debian/docs
  packages/python-concurrent.futures/trunk/debian/patches/
  packages/python-concurrent.futures/trunk/debian/patches/10_dont_install_futures.patch
  packages/python-concurrent.futures/trunk/debian/patches/series
  packages/python-concurrent.futures/trunk/debian/python-concurrent.futures.doc-base
  packages/python-concurrent.futures/trunk/debian/rules
  packages/python-concurrent.futures/trunk/debian/source/
  packages/python-concurrent.futures/trunk/debian/source/format
  packages/python-concurrent.futures/trunk/debian/watch


Property changes on: packages/python-concurrent.futures/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-concurrent.futures/trunk/debian/changelog
===================================================================
--- packages/python-concurrent.futures/trunk/debian/changelog	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/changelog	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,5 @@
+python-concurrent.futures (2.1.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #657067)
+
+ -- Sandro Tosi <morph at debian.org>  Sun, 08 Apr 2012 10:52:24 +0200

Added: packages/python-concurrent.futures/trunk/debian/compat
===================================================================
--- packages/python-concurrent.futures/trunk/debian/compat	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/compat	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1 @@
+8

Added: packages/python-concurrent.futures/trunk/debian/control
===================================================================
--- packages/python-concurrent.futures/trunk/debian/control	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/control	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,19 @@
+Source: python-concurrent.futures
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Sandro Tosi <morph at debian.org>
+Build-Depends: debhelper (>= 8), python-all, python-support (>= 1), python-sphinx (>= 1.0.7+dfsg), python-setuptools
+Standards-Version: 3.9.3
+XS-Python-Version: >= 2.6
+Homepage: http://code.google.com/p/pythonfutures/
+
+Package: python-concurrent.futures
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Description: backport of concurrent.futures package from Python 3.2
+ The concurrent.futures module provides a high-level interface for
+ asynchronously executing callables.
+ .
+ This is a backport for concurrent.futures as of PEP-3148 and included in
+ Python 3.2

Added: packages/python-concurrent.futures/trunk/debian/copyright
===================================================================
--- packages/python-concurrent.futures/trunk/debian/copyright	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/copyright	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,30 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: python-concurrent.futures
+Source: http://pypi.python.org/pypi/futures
+
+Files: *
+Copyright: 2009-2011, Brian Quinlan <brian at sweetapp.com>
+License: BSD
+ 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.
+ .
+ THIS SOFTWARE IS PROVIDED BY BRIAN QUINLAN "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
+ HALL THE FREEBSD PROJECT 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.
+
+Files: debian/*
+Copyright: 2012 Sandro Tosi <morph at debian.org>
+License: BSD

Added: packages/python-concurrent.futures/trunk/debian/docs
===================================================================
Added: packages/python-concurrent.futures/trunk/debian/patches/10_dont_install_futures.patch
===================================================================
--- packages/python-concurrent.futures/trunk/debian/patches/10_dont_install_futures.patch	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/patches/10_dont_install_futures.patch	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,16 @@
+Description: 'futures' is only a compatibility module for concurrent.futures; we don't install it
+Author: Sandro Tosi <morph at debian.org>
+Forwarded: not-needed
+Index: python-concurrent.futures-2.1.2/setup.py
+===================================================================
+--- python-concurrent.futures-2.1.2.orig/setup.py	2012-04-08 11:27:31.471451993 +0200
++++ python-concurrent.futures-2.1.2/setup.py	2012-04-08 11:27:41.787792674 +0200
+@@ -19,7 +19,7 @@
+       maintainer_email='alex.gronholm+pypi at nextday.fi',
+       url='http://code.google.com/p/pythonfutures',
+       download_url='http://pypi.python.org/pypi/futures/',
+-      packages=['futures', 'concurrent', 'concurrent.futures'],
++      packages=['concurrent', 'concurrent.futures'],
+       license='BSD',
+       classifiers=['License :: OSI Approved :: BSD License',
+                    'Development Status :: 5 - Production/Stable',

Added: packages/python-concurrent.futures/trunk/debian/patches/series
===================================================================
--- packages/python-concurrent.futures/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/patches/series	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1 @@
+10_dont_install_futures.patch

Added: packages/python-concurrent.futures/trunk/debian/python-concurrent.futures.doc-base
===================================================================
--- packages/python-concurrent.futures/trunk/debian/python-concurrent.futures.doc-base	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/python-concurrent.futures.doc-base	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,10 @@
+Document: python-concurrent.futures
+Title: concurrent.futures — Asynchronous computation
+Author: Brian Quinlan
+Abstract: The concurrent.futures module provides a high-level interface for
+ asynchronously executing callables.
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-concurrent.futures/html/index.html
+Files: /usr/share/doc/python-concurrent.futures/html/*.html

Added: packages/python-concurrent.futures/trunk/debian/rules
===================================================================
--- packages/python-concurrent.futures/trunk/debian/rules	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/rules	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,37 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with sphinxdoc
+
+override_dh_clean:
+	dh_clean
+	rm -rf build/
+	rm -rf *.egg-info
+
+override_dh_auto_build:
+	dh_auto_build
+	# build doc
+	python setup.py build_sphinx
+
+override_dh_auto_install:
+	dh_auto_install
+	# remove egg-info dir, not wanted
+	rm -rf $(CURDIR)/debian/python-concurrent.futures/usr/lib/python*/dist-packages/futures*.egg-info
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e ; \
+	for python in $(shell pyversions -r); do \
+		# retrive the lib path \
+		LIB=$$($$python -c "from distutils.command.build import build ; from distutils.core import Distribution ; b = build(Distribution()) ; b.finalize_options() ; print b.build_purelib") ; \
+		PYTHONPATH=$$LIB $$python ./test_futures.py ; \
+	done
+endif
+
+
+override_dh_installdocs:
+	dh_installdocs build/sphinx/html


Property changes on: packages/python-concurrent.futures/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-concurrent.futures/trunk/debian/source/format
===================================================================
--- packages/python-concurrent.futures/trunk/debian/source/format	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/source/format	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-concurrent.futures/trunk/debian/watch
===================================================================
--- packages/python-concurrent.futures/trunk/debian/watch	                        (rev 0)
+++ packages/python-concurrent.futures/trunk/debian/watch	2012-04-08 11:07:31 UTC (rev 21080)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/f/futures/futures-(.*)\.tar.gz




More information about the Python-modules-commits mailing list