File: control

package info (click to toggle)
python-kyotocabinet 1.23-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 784 kB
  • sloc: cpp: 2,967; python: 1,241; javascript: 249; makefile: 85
file content (36 lines) | stat: -rw-r--r-- 1,412 bytes parent folder | download
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
Source: python-kyotocabinet
Section: devel
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Shawn Landden <shawnlandden@gmail.com>
Build-Depends: debhelper-compat (= 13),
 dh-python,
 python3-all-dev,
 libkyotocabinet-dev,
 pkg-config
# Not building docs, but this software is used if you want to.
#Build-Depends-Indep: python-epydoc (>= 3.0~beta1)
Standards-Version: 4.5.1
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/python-team/packages/python-kyotocabinet.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-kyotocabinet
Homepage: https://dbmx.net/kyotocabinet/

Package: python3-kyotocabinet
Section: python
Architecture: any
Depends: ${misc:Depends},
         ${python3:Depends},
         ${shlibs:Depends}
Provides: ${python3:Provides}
Multi-Arch: same
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.