chiark / gitweb /
Debianization patch from upstream.
[python-cdb] / debian / control
1 Source: python-cdb
2 Section: contrib/python
3 Priority: optional
4 Maintainer: Adam D. McKenna <adam@debian.org>
5 Build-Depends: debhelper (>> 3.0.0), python-dev (>= 2.3) | python2.3-dev
6 Standards-Version: 3.5.2
7
8 Package: python-cdb
9 Architecture: any
10 Depends: ${python:Depends}
11 Description: Python CDB (constant database) library
12  D. J. Bernstein's cdb library adapted as a python extension module. You 
13  probably already know that cdb files are mappings of keys to values (c.f., 
14  dbm and friends), designed for wickedly fast lookups and atomic updates.
15  .
16  This interface presents cdb files as (surprise!) mapping objects with a few 
17  special features. In general, the module tries to mimic the functionality of 
18  the normal cdb utilities.