chiark / gitweb /
debian: Abandon CDBS in favour of plain Debhelper.
[mLib-python] / debian / control
CommitLineData
8546fc9d 1Source: mlib-python
26d9d0fb 2Section: python
579d0169 3Priority: extra
5660ad95 4XS-Python-Version: >= 2.6, << 2.8
229f53d7
MW
5Build-Depends: debhelper (>= 9), mlib-dev,
6 python, python-pyrex, python2.6-dev, python2.7-dev
579d0169 7Maintainer: Mark Wooding <mdw@distorted.org.uk>
8546fc9d 8Standards-Version: 3.8.0
579d0169 9
10Package: python-mlib
579d0169 11Architecture: any
8546fc9d 12XB-Python-Version: ${python:Versions}
a1ce1458
MW
13Depends: ${shlibs:Depends}, ${python:Depends}
14Provides: ${python:Provides}
579d0169 15Description: A library of miscellaneous stuff
16 The mLib library provides various handy utilities, including
17 * yet another options parser, like GNU getopt but more so;
18 * a simple but efficient universal hashing family;
19 * a suite for writing event-driven select-based servers;
20 * a simple exception-handling system, based on longjmp;
21 * dynamically resizing strings and arrays;
22 * a resizing hashtable;
23 * base64 and hex encoding and decoding; and
24 * a simple background DNS resolver.
25 .
579d0169 26 Not all of the features of mLib are available (or, indeed, very useful) in
27 Python. For example, Python has its own exception system, and different
28 ideas about how strings work.