[Python-modules-commits] [sortedcontainers] 02/02: Imported Debian patch 0.9.6-1
Sandro Tosi
morph at moszumanska.debian.org
Mon Jun 29 22:27:39 UTC 2015
This is an automated email from the git hooks/post-receive script.
morph pushed a commit to branch master
in repository sortedcontainers.
commit bb875f7e6594d92ad31ac66f4253bec5f8c500d7
Author: Sandro Tosi <morph at debian.org>
Date: Mon Jun 29 18:06:03 2015 -0400
Imported Debian patch 0.9.6-1
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 32 ++++++++++++++++++++++++++++++++
debian/copyright | 15 +++++++++++++++
debian/rules | 11 +++++++++++
debian/source/format | 1 +
debian/watch | 3 +++
7 files changed, 68 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2f56a15
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+sortedcontainers (0.9.6-1) unstable; urgency=low
+
+ * Initial release (Closes: #790504)
+
+ -- Sandro Tosi <morph at debian.org> Mon, 29 Jun 2015 18:06:03 -0400
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..9cbc03c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: sortedcontainers
+Section: python
+Priority: optional
+Maintainer: Sandro Tosi <morph at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python, python3, dh-python
+Standards-Version: 3.9.6
+Homepage: http://www.grantjenks.com/docs/sortedcontainers/
+#Vcs-Git:
+#Vcs-Browser:
+
+Package: python-sortedcontainers
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: sorted container types: SortedList, SortedDict, and SortedSet
+ Python’s standard library is great until you need a sorted container type. Many
+ will attest that you can get really far without one, but the moment you really
+ need a sorted list, dict, or set, you’re faced with a dozen different
+ implementations, most using C-extensions without great documentation and
+ benchmarking.
+
+Package: python3-sortedcontainers
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: sorted container types: SortedList, SortedDict, and SortedSet (Python 3)
+ Python’s standard library is great until you need a sorted container type. Many
+ will attest that you can get really far without one, but the moment you really
+ need a sorted list, dict, or set, you’re faced with a dozen different
+ implementations, most using C-extensions without great documentation and
+ benchmarking.
+ .
+ This package contains the Python 3 version of sortedcontainers .
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..03fa800
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: sortedcontainers
+Source: https://github.com/grantjenks/sorted_containers
+
+Files: *
+Copyright: Copyright 2014-2015 Grant Jenks <contact at grantjenks.com>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian systems, the complete text of the Apache 2.0 can be found in
+ "/usr/share/common-licenses/Apache-2.0".
+
+Files: debian/*
+Copyright: 2015 Sandro Tosi <morph at debian.org>
+License: Apache-2.0
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..54046b4
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2,python3
+
+override_dh_auto_install:
+ python setup.py install --install-layout=deb --root=$(CURDIR)/debian/python-sortedcontainers
+ python3 setup.py install --install-layout=deb --root=$(CURDIR)/debian/python-sortedcontainers
+
+override_dh_installdocs:
+ dh_installdocs -A README.rst
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..e6ea7ad
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/sortedcontainers/sortedcontainers-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/sortedcontainers.git
More information about the Python-modules-commits
mailing list