python-plac 1.3.4-1 source package in Ubuntu

Changelog

python-plac (1.3.4-1) unstable; urgency=medium

  * Team upload.

  [ 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: Bug-Database, Bug-Submit.
  * Bump debhelper from old 11 to 13.
    + Drop check for DEB_BUILD_OPTIONS containing "nocheck", since debhelper now
      does this.

  [ Paul Wise ]
  * New upstream release (Closes: #972065)
    - Add new setuptools build dependency
  * Drop build dependency on obsolete unmaintained SQLSoup (Closes: #999639)
  * Wrap and sort Debian packaging information
  * plac moved to a new upstream maintainer, update URLs
  * Stop ignoring the results of the tests
  * Mark the import test as superficial
  * Drop lintian overrides since they are valid
  * Switch the watch file to GitHub tags page
  * Declare compliance with Debian Policy 4.6.0, no changes needed
  * Add more upstream metadata
  * Drop deviation from upstream plac_runner.py naming
  * Copy the doc dir for the tests since the tests are in there
  * Copy the plac_runner the tests since the tests use it
  * Fix package description typos
  * Make the tests print something unless terse mode is enabled
  * Update copyright holders for the Debian packaging
  * Document that the build does not require root
  * Drop doc-base file as the PDF has been removed upstream
    and the HTML version of the documentation isn't built by Debian

 -- Paul Wise <email address hidden>  Mon, 06 Dec 2021 16:22:42 +0800

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
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-plac_1.3.4-1.dsc 2.0 KiB b0c2218bbc2bae561eb54c77ef137bad43dcb7347583077cab2d4ecb85bfc23a
python-plac_1.3.4.orig.tar.gz 60.0 KiB 795ca52dd2390e0317b6f7944d21d1604dc810b06b727c333dd34014853fe3df
python-plac_1.3.4-1.debian.tar.xz 3.0 KiB 57025e5148b1e990b2bc948edcab572c26884cf721ceabcb6bbe85d93f041f1d

Available diffs

No changes file available.

Binary packages built by this source

python3-plac: Smartest command line arguments parser in the world

 Technically plac is just a simple wrapper over argparse which hides most
 of its complexity by using a declarative interface: the argument parser
 is inferred rather than written down imperatively.
 .
 plac is targetting especially unsophisticated users, programmers,
 sys-admins, scientists and in general people writing throw-away scripts
 for themselves, choosing the command-line is surprisingly scalable upwards,
 even without using the underlying argparse.