Debianization patch from upstream.
[python-cdb] / debian / control
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..e498b23
--- /dev/null
@@ -0,0 +1,18 @@
+Source: python-cdb
+Section: contrib/python
+Priority: optional
+Maintainer: Adam D. McKenna <adam@debian.org>
+Build-Depends: debhelper (>> 3.0.0), python-dev (>= 2.3) | python2.3-dev
+Standards-Version: 3.5.2
+
+Package: python-cdb
+Architecture: any
+Depends: ${python:Depends}
+Description: Python CDB (constant database) library
+ D. J. Bernstein's cdb library adapted as a python extension module. You 
+ probably already know that cdb files are mappings of keys to values (c.f., 
+ dbm and friends), designed for wickedly fast lookups and atomic updates.
+ .
+ This interface presents cdb files as (surprise!) mapping objects with a few 
+ special features. In general, the module tries to mimic the functionality of 
+ the normal cdb utilities.