python-persist-queue 0.5.1-1 source package in Ubuntu

Changelog

python-persist-queue (0.5.1-1) unstable; urgency=medium

  * New upstream version.

  [ Ondřej Nový ]
  * Use debhelper-compat instead of debian/compat.
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Add debian/watch file, using pypi.

 -- Martin <email address hidden>  Sat, 02 Jan 2021 00:08:37 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-persist-queue_0.5.1-1.dsc 2.1 KiB 2562f0349ab4bc9ab6e459afe4d99f5e37f8fb6518ed8d0d4e47734188675a4b
python-persist-queue_0.5.1.orig.tar.gz 22.3 KiB 0aed8f7a7d171740f5364af598a2e49c2f25ebbe050867d82338355eede25f5d
python-persist-queue_0.5.1-1.debian.tar.xz 2.7 KiB ea9a54266f72687b9b1284c7df274b45ae7fd1ad0e5a0457e242a52aecd0d5df

Available diffs

No changes file available.

Binary packages built by this source

python3-persist-queue: 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.