chiark / gitweb /
debian/control: Fix up some Python version numbers.
[mLib-python] / debian / control
... / ...
CommitLineData
1Source: mlib-python
2Section: python
3Priority: extra
4XS-Python-Version: >= 2.5, << 2.7
5Build-Depends: mlib-dev, python, python-pyrex
6Maintainer: Mark Wooding <mdw@distorted.org.uk>
7Standards-Version: 3.8.0
8
9Package: python-mlib
10Architecture: any
11XB-Python-Version: ${python:Versions}
12Depends: ${shlibs:Depends}, ${python:Depends}
13Provides: ${python:Provides}
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 .
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.