chiark / gitweb /
debian/control: Add Build-Depends for `dh-python'.
[mLib-python] / debian / control
... / ...
CommitLineData
1Source: mlib-python
2Section: python
3Priority: extra
4XS-Python-Version: >= 2.6, << 2.8
5Build-Depends: debhelper (>= 9), dh-python, pkg-config,
6 python (>= 2.6.6-3~), python-all-dev, python-pyrex,
7 mlib-dev (>= 2.2.2.1)
8Maintainer: Mark Wooding <mdw@distorted.org.uk>
9Standards-Version: 3.8.0
10
11Package: python-mlib
12Architecture: any
13XB-Python-Version: ${python:Versions}
14Depends: ${shlibs:Depends}, ${python:Depends}
15Provides: ${python:Provides}
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 .
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.