[med-svn] [python-oset] 02/11: Add py2dsc debian/
Kevin Murray
daube-guest at moszumanska.debian.org
Fri Oct 9 10:15:43 UTC 2015
This is an automated email from the git hooks/post-receive script.
daube-guest pushed a commit to branch master
in repository python-oset.
commit 5ee34a5c1812ecde7315872b758e29cbea9c46d2
Author: Kevin Murray <spam at kdmurray.id.au>
Date: Thu Oct 8 14:40:30 2015 +1100
Add py2dsc debian/
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 33 +++++++++++++++++++++++++++++++++
debian/rules | 8 ++++++++
debian/source/format | 1 +
debian/watch | 4 ++++
6 files changed, 52 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..85901ee
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+oset (0.1.3-1) unstable; urgency=low
+
+ * source package automatically created by stdeb 0.8.5
+
+ -- Kevin Murray <spam at kdmurray.id.au> Thu, 08 Oct 2015 14:36:58 +1100
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..421935e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,33 @@
+Source: oset
+Maintainer: Kevin Murray <spam at kdmurray.id.au>
+Section: python
+Priority: optional
+Build-Depends: dh-python, python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9)
+Standards-Version: 3.9.6
+Homepage: https://gitorious.com/sleipnir/python-oset
+
+Package: python-oset
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Ordered Set.
+ oset
+ =====
+ .
+ Set that remembers original insertion order.
+ .
+ Runs on Py2.5 or later (and runs on 3.0 or later without any modifications). For Python2.5, a local backport of ABC classes is also used.
+ .
+ Implementation based on a doubly linked link and an internal dictionary. This design gives OrderedSet the same big-Oh running times as regular sets including O(1) adds, removes, and lookups as well as O(n) iteration.
+ .
+ Usage
+ -----
+ .
+ Import and create ordered set.
+ ::
+ .
+ >>> from oset import oset
+ >>> os = oset()
+ .
+ Requires
+ --------
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..f79fb23
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.8.5 at
+# Thu, 08 Oct 2015 14:36:58 +1100
+export PYBUILD_NAME=oset
+%:
+ dh $@ --with 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..a57e967
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# please also check http://pypi.debian.net/oset/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/oset/oset-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-oset.git
More information about the debian-med-commit
mailing list