chiark / gitweb /
Support Python 2.6, and switch to CDBS.
[python-cdb] / debian / control
index e498b232fdc0101efaa891497a414a2cc15917d4..387c38f0335a4a2df06f1059c142e564b4434175 100644 (file)
@@ -1,18 +1,20 @@
 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
+Section: python
+Priority: extra
+XS-Python-Version: >= 2.4, << 2.7
+Maintainer: Mark Wooding <mdw@distorted.org.uk>
+Build-Depends: debhelper (>> 3.0.0)
 Standards-Version: 3.5.2
 
 Package: python-cdb
 Architecture: any
-Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Depends: ${python:Depends}, ${shlibs: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 
+ 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.