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