chiark / gitweb /
debian: Abandon CDBS in favour of plain Debhelper.
[mLib-python] / debian / control
1 Source: mlib-python
2 Section: python
3 Priority: extra
4 XS-Python-Version: >= 2.6, << 2.8
5 Build-Depends: debhelper (>= 9), mlib-dev,
6         python, python-pyrex, python2.6-dev, python2.7-dev
7 Maintainer: Mark Wooding <mdw@distorted.org.uk>
8 Standards-Version: 3.8.0
9
10 Package: python-mlib
11 Architecture: any
12 XB-Python-Version: ${python:Versions}
13 Depends: ${shlibs:Depends}, ${python:Depends}
14 Provides: ${python:Provides}
15 Description: 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  .
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.