1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
Source: python-kyotocabinet
Section: devel
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Shawn Landden <shawnlandden@gmail.com>
DM-Upload-Allowed: yes
Build-Depends: debhelper (>= 9),
python3-all-dev,
libkyotocabinet-dev,
pkg-config
#Build-Depends-Indep: python-epydoc (>= 3.0~beta1)
Standards-Version: 3.9.3
X-Python3-Version: >= 3.2
Vcs-Git: git://anonscm.debian.org/git/collab-maint/kyotocabinet-python.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/kyotocabinet-python.git
Homepage: http://fallabs.com/kyotocabinet/
Package: python3-kyotocabinet
Section: python
Architecture: any
Depends: ${misc:Depends},
${python3:Depends},
${shlibs:Depends}
Provides: ${python3:Provides}
Description: Straightforward implementation of DBM - Python 3 bindings
Kyoto Cabinet is a library of routines for managing a database. The
database is a simple data file containing records, each is a pair of
a key and a value. Every key and value is serial bytes with variable
length. Both binary data and character string can be used as a key and
a value. Each key must be unique within a database. There is neither
concept of data tables nor data types. Records are organized in
hash table or B+ tree.
.
This package provides a Python 3 interface to Kyoto Cabinet.
Package: python3-kyotocabinet-dbg
Section: debug
Priority: extra
Architecture: any
Depends: python3-dbg,
python3-kyotocabinet (= ${binary:Version}),
${shlibs:Depends},
${misc:Depends},
${python3:Depends}
Description: Straightforward implementation of DBM - Python 3 debuggin symbols
Kyoto Cabinet is a library of routines for managing a database. The
database is a simple data file containing records, each is a pair of
a key and a value. Every key and value is serial bytes with variable
length. Both binary data and character string can be used as a key and
a value. Each key must be unique within a database. There is neither
concept of data tables nor data types. Records are organized in
hash table or B+ tree.
.
This package provides the debugging symbols for the Python 3 interface to
Kyoto Cabinet.
|