beaker 1.11.0-2 source package in Ubuntu

Changelog

beaker (1.11.0-2) unstable; urgency=medium

  * Team upload.

  [ Emanuele Rocca ]
  * Add override_dh_auto_test to stop running tests. The 1.11.0 source tarball
    was generated by PyPI and does not include any tests. The override should
    be removed when uploading a new upstream release actually including them.
  * Drop build dependency on python3-nose. (Closes: #1018313)
  * Add debian/tests/smoke.py.

  [ Fabrice Bauzac-Stehly ]
  * Integrate NMU 1.11.0-1.1.
  * d/watch: use the upstream git as source instead of the generated PyPI
    tarball, to get the tests in the next upstream version.

  [ Debian Janitor ]
  * Use secure URI in Homepage field.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Name, Repository,
    Repository-Browse.
  * Update standards version to 4.6.1, no changes needed.
  * Remove constraints unnecessary since buster (oldstable):
    + Build-Depends-Indep: Drop versioned constraint on python3-all.

 -- Emanuele Rocca <email address hidden>  Wed, 28 Sep 2022 17:55:31 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
beaker_1.11.0-2.dsc 2.1 KiB 89aca1c3b6648ff31071c7ce6bd7e307344b361ce832c1d18eb97d96903b5c64
beaker_1.11.0.orig.tar.gz 40.0 KiB ad5d1c05027ee3be3a482ea39f8cb70339b41e5d6ace0cb861382754076d187e
beaker_1.11.0-2.debian.tar.xz 7.4 KiB 7dd7d17eb5bf7202af9c97459c565760f978ad69c4cb68fa2d6b286667a24928

Available diffs

No changes file available.

Binary packages built by this source

python3-beaker: cache and session library for Python 3

 Beaker is a web session and general caching library that includes WSGI
 middleware for use in web applications.
 .
 As a general caching library, Beaker can handle storing for various times any
 Python object that can be pickled with optional back-ends on a fine-grained
 basis.
 .
 Features:
  * Fast, robust performance
  * Multiple reader/single writer lock system to avoid duplicate simultaneous
    cache creation
  * Cache back-ends include dbm, file, memory, memcached, and database (using
    SQLAlchemy for multiple-db vendor support)
  * Signed cookies to prevent session hijacking/spoofing
  * Cookie-only sessions to remove the need for a database or file backend
    (ideal for clustered systems)
  * Extensible Container object to support new back-ends
  * Caches can be divided into namespaces (to represent templates, objects,
    etc.) then keyed for different copies
  * Create functions for automatic call-backs to create new cache copies after
    expiration
  * Fine-grained toggling of back-ends, keys, and expiration per Cache object