File: control

package info (click to toggle)
python-persist-queue 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 328 kB
  • sloc: python: 2,754; sh: 13; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 1,244 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
37
Source: python-persist-queue
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Martin <debacle@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
	dh-sequence-python3,
	python3-all,
	python3-cbor2,
	python3-dbutils,
	python3-msgpack,
	python3-nose2,
	python3-pymysql,
	python3-setuptools,
Standards-Version: 4.6.2
Rules-Requires-Root: no
Homepage: https://github.com/peter-wangxu/persist-queue
Vcs-Git: https://salsa.debian.org/python-team/packages/python-persist-queue.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-persist-queue
Testsuite: autopkgtest-pkg-pybuild

Package: python3-persist-queue
Architecture: all
Depends: ${misc:Depends},
	${python3:Depends},
Description: thread-safe disk based persistent queue
 persist-queue implements a file-based queue and a serial of
 sqlite3-based queues. The goals is to achieve following
 requirements:
 .
  * Disk-based: each queued item should be stored in disk in
    case of any crash.
  * Thread-safe: can be used by multi-threaded producers and
    multi-threaded consumers.
  * Recoverable: Items can be read after process restart.
  * Green-compatible: can be used in greenlet or eventlet
    environment.