[med-svn] [python-oset] 03/11: Fixes to d/control

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 066145e1bdb7018c00e62726e914e3295eefa495
Author: Kevin Murray <spam at kdmurray.id.au>
Date:   Thu Oct 8 14:50:25 2015 +1100

    Fixes to d/control
---
 debian/control | 39 +++++++++++++++------------------------
 1 file changed, 15 insertions(+), 24 deletions(-)

diff --git a/debian/control b/debian/control
index 421935e..29e30c2 100644
--- a/debian/control
+++ b/debian/control
@@ -1,33 +1,24 @@
 Source: oset
-Maintainer: Kevin Murray <spam at kdmurray.id.au>
+Maintainer: Debian Med Packaging <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: 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)
+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
- =====
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: ordered set library for python
+ A set datastructure 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.
  .
- 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
- -------- 
-
+ 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.

-- 
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