aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2012-02-05 07:06:58 +0000
committerDaniele Tricoli <eriol@mornie.org>2012-02-05 07:06:58 +0000
commitaeea290ace4250ceec53e55e682d965e214e6fb0 (patch)
tree33f5d8bbdc30577232c2c34f0797980acc2cb0bd
downloadpython-urllib3-aeea290ace4250ceec53e55e682d965e214e6fb0.tar
python-urllib3-aeea290ace4250ceec53e55e682d965e214e6fb0.tar.gz
Initial import
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control29
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch2
6 files changed, 42 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..aee3e2d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+urllib3 (1.2-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #648783)
+
+ -- Daniele Tricoli <eriol@mornie.org> Sun, 05 Feb 2012 07:44:13 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2494a63
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: python-urllib3
+Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Uploaders: Daniele Tricoli <eriol@mornie.org>
+Section: python
+Priority: optional
+Build-Depends:
+ debhelper (>= 7),
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+Standards-Version: 3.9.2
+Homepage: http://urllib3.readthedocs.org
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-urllib3/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-urllib3/trunk/
+
+Package: python-urllib3
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python HTTP library with thread-safe connection pooling, file post and more
+ urllib3 supports features left out of urllib and urllib2 libraries.
+ .
+ * Re-use the same socket connection for multiple requests (HTTPConnectionPool
+ and HTTPSConnectionPool) (with optional client-side certificate
+ verification).
+ * File posting (encode_multipart_formdata).
+ * Built-in redirection and retries (optional).
+ * Supports gzip and deflate decoding.
+ * Thread-safe and sanity-safe.
+ * Small and easy to understand codebase perfect for extending and
+ building upon.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..8e4f4eb
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2 --buildsystem=python_distutils
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f3aee87
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/u/urllib3/urllib3-(.*)\.tar\.gz \ No newline at end of file