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