reentry 1.3.2-1 source package in Ubuntu

Changelog

reentry (1.3.2-1) unstable; urgency=medium

  [ 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 ]
  * Set upstream metadata fields: Repository, Repository-Browse.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.

  [ Andrius Merkys ]
  * Adjusting debian/watch.
  * New upstream version 1.3.2
  * Fixing a problem of nonexistent Python dependency by patching it out from
    setup.json.
  * Tests depend on python3-pytest.
  * Adding autopkgtest.
  * Pointing the homepage to GitHub.
  * Bumping copyright years.

 -- Andrius Merkys <email address hidden>  Wed, 23 Feb 2022 02:24:20 -0500

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
reentry_1.3.2-1.dsc 2.1 KiB 78b36c9a10739253d12a3ac8299862682552b3c0edf5408cef8a878bd76499ea
reentry_1.3.2.orig.tar.gz 25.3 KiB 0b609d2c14f9cc47a8a0a51e398f426510ecee4d0d3d32ef0bc36dda27c23bd5
reentry_1.3.2-1.debian.tar.xz 3.5 KiB 1bdff05c2504cbe923bc0695366816be8035e765e5c4b7ccd3df0ee7a957e794

Available diffs

No changes file available.

Binary packages built by this source

python3-reentry: plugin manager based on setuptools entry points (Python 3)

 Setuptool's entry point system is convenient to use for plugin based Python
 applications. It allows separate Python packages to act as plugins to a host
 package, making it easy for the host to find and iterate over the relevant
 data structures from plugins.
 .
 However simply importing setuptools scales badly with the number of installed
 distributions and can be very slow for moderately complex environments
 (~ 0.5 s). Finding and loading of plugins on the other hand is time-critical
 in cases like commandline tools loading subcommands, where 100 ms are a
 noticeable delay.
 .
 Setuptools's pkg_resources is slow, because it verifies dependencies are
 installed correctly for all distributions present in the environment on
 import. This allows entry points to have additional requirements.
 .
 Reentry forgoes this dependency check for entry points without such 'extras'
 dependencies and thereby manages to be fast and scale better, with the amount
 of installed plugins, not installed Python packages in general.
 .
 This package installs the library for Python 3.