[Python-modules-commits] [python-boltons] 02/02: Imported Debian patch 16.2.2-1
Hugo Lefeuvre
hle at moszumanska.debian.org
Wed Sep 14 12:01:11 UTC 2016
This is an automated email from the git hooks/post-receive script.
hle pushed a commit to branch master
in repository python-boltons.
commit bcab2cb2a091130cc50686112307ed6511e9a5c1
Author: Hugo Lefeuvre <hle at debian.org>
Date: Wed Sep 14 13:28:34 2016 +0200
Imported Debian patch 16.2.2-1
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 42 +++++++++++++++++++++++++++++++++++
debian/rules | 6 +++++
debian/source/format | 1 +
debian/watch | 3 +++
7 files changed, 121 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..85b6622
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-boltons (16.2.2-1) unstable; urgency=medium
+
+ * Initial Debian release (Closes: #837643).
+
+ -- Hugo Lefeuvre <hle at debian.org> Wed, 14 Sep 2016 13:28:34 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..fff63fa
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,63 @@
+Source: python-boltons
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Hugo Lefeuvre <hle at debian.org>
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ python-all,
+ python-setuptools,
+ python3-all,
+ python3-setuptools,
+ python-py,
+ python3-py,
+ python-pytest,
+ python3-pytest,
+Standards-Version: 3.9.8
+Homepage: https://github.com/mahmoud/boltons
+
+Package: python-boltons
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends},
+Recommends: ${python:Recommends}
+Suggests: ${python:Suggests}
+Description: set of pure-Python utilities (Python 2)
+ Boltons is a set of over 160 BSD-licensed, pure-Python utilities in the same
+ spirit as — and yet conspicuously missing from — the standard library,
+ including:
+ .
+ - Atomic file saving, bolted on with fileutils
+ - A highly-optimized OrderedMultiDict, in dictutils
+ - Two types of PriorityQueue, in queueutils
+ - Chunked and windowed iteration, in iterutils
+ - Recursive data structure iteration and merging, with iterutils.remap
+ - Exponential backoff functionality, including jitter, through
+ iterutils.backoff
+ - A full-featured TracebackInfo type, for representing stack traces, in
+ tbutils
+ .
+ This package installs the library for Python 2.
+
+Package: python3-boltons
+Architecture: all
+Depends: ${misc:Depends},
+ ${python3:Depends},
+Recommends: ${python3:Recommends}
+Suggests: ${python3:Suggests}
+Description: set of pure-Python utilities (Python 3)
+ Boltons is a set of over 160 BSD-licensed, pure-Python utilities in the same
+ spirit as — and yet conspicuously missing from — the standard library,
+ including:
+ .
+ - Atomic file saving, bolted on with fileutils
+ - A highly-optimized OrderedMultiDict, in dictutils
+ - Two types of PriorityQueue, in queueutils
+ - Chunked and windowed iteration, in iterutils
+ - Recursive data structure iteration and merging, with iterutils.remap
+ - Exponential backoff functionality, including jitter, through
+ iterutils.backoff
+ - A full-featured TracebackInfo type, for representing stack traces, in
+ tbutils
+ .
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f2733e8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: boltons
+Upstream-Contact: Mahmoud Hashemi <mahmoudrhashemi at gmail.com>
+Source: https://github.com/mahmoud/boltons
+
+Files: *
+Copyright: 2013-2016 Mahmoud Hashemi <mahmoudrhashemi at gmail.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015 Sophie Brun <sophie at freexian.com>
+ 2016 Hugo Lefeuvre <hle at debian.org>
+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:
+ .
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ * 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.
+ .
+ * The names of the contributors may not be used to endorse or
+ promote products derived from this software without specific
+ prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
+ OWNER 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.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6e4fbb8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME=boltons
+
+%:
+ dh $@ --with python3,python2 --buildsystem=pybuild
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..5641d2b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts="filenamemangle=s/.*\/([\d\.]*)\.tar\.gz/python-boltons-$1.tar.gz/" \
+https://github.com/mahmoud/boltons/tags .*/([\d\.]*)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-boltons.git
More information about the Python-modules-commits
mailing list