python-scruffy 0.3.8.2-1 source package in Ubuntu

Changelog

python-scruffy (0.3.8.2-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 0.3.8.2.
  * Patch imp to importlib for Python 3.12 compatibility. (Closes: #1058129)
  * d/watch: Bump to version 4.
  * Bump standards version to 4.6.2
    - Update d/copyright to include upstream copyright notice.
    - d/control: Add Rules-Requires-Root field.
  * Remove unnecessary build dependencies
  * d/rules: Override dh_auto_test (upstream provides no test)
  * d/control: Add Testsuite field for basic autopkgtest
  * Patch setup.py for missing dependencies

 -- Dale Richards <email address hidden>  Mon, 01 Jan 2024 15:20:03 +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
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-scruffy_0.3.8.2-1.dsc 2.0 KiB fd487202f4627c459b87b73d2bb6d75f682910d961feffc44c55d57b2513e57c
python-scruffy_0.3.8.2.orig.tar.gz 11.5 KiB 1962f974c4211192dd737aaeec621dfdbe14e7f61ff7d322170f0ba82650d940
python-scruffy_0.3.8.2-1.debian.tar.xz 3.5 KiB e5f1ccf07a75e86c73ab6d7c2ae2b8662e63ca5b897f07172ff534b4900cee0e

Available diffs

No changes file available.

Binary packages built by this source

python3-scruffy: framework for taking care of a bunch of boilerplate in Python3 apps

 Scruffy is a framework for taking care of a bunch of boilerplate in
 Python apps. It handles the loading of configuration files, the loading
 and management of plugins, and the management of other filesystem
 resources such as temporary files and directories, log files, etc.
 .
 A typical use case for Scruffy is a command-line Python tool with some
 or all of the following requirements:
 .
  * Read a set of configuration defaults
  * Read a local configuration file and apply it on top of the defaults
  * Allow overriding some configuration options with command line flags
    or at runtime
  * Load a core set of Python-based plugins
  * Load a set of user-defined Python-based plugins
  * Generate log files whose name, location and other logging settings
    are based on configuration
  * Store application state between runs in a file or database
 .
 This package installs the library for Python 3.