libtry-tiny-smartcatch-perl 0.5-2 source package in Ubuntu

Changelog

libtry-tiny-smartcatch-perl (0.5-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/*: update URLs from {search,www}.cpan.org to MetaCPAN.
  * debian/*: update GitHub URLs to use HTTPS.

  [ Debian Janitor ]
  * Use secure copyright file specification URI.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Bump debhelper dependency to >= 8, since that's what is used in
    debian/compat.
  * Bump debhelper from deprecated 8 to 10.
  * Set Testsuite header for perl package.

 -- Jelmer Vernooij <email address hidden>  Tue, 28 Jun 2022 21:26:03 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtry-tiny-smartcatch-perl_0.5-2.dsc 2.1 KiB 713269ebae9ae12f40bf3056dc20da6f1df281d4891110a315adac5f386bcfcb
libtry-tiny-smartcatch-perl_0.5.orig.tar.gz 6.8 KiB 8d52cb4b8a1cf3dfebb3e346a344fbda66f646a5b5ab2524778df5fac18ad7ec
libtry-tiny-smartcatch-perl_0.5-2.debian.tar.xz 3.7 KiB 9a0bee590a6242596ff5f9d481069d5f232101c4ec8f7fdb390c21d9658c7bb3

Available diffs

No changes file available.

Binary packages built by this source

libtry-tiny-smartcatch-perl: lightweight Perl module for powerful exceptions handling

 Try::Tiny::SmartCatch's goals are mostly the same as Try::Tiny module,
 but there are few changes to it's specification. Main difference is
 possibility to catch just some kinds of exceptions in place of catching
 everything. Another one is slightly changed syntax.
 .
 When raised exception is an object, Try::Tiny::SmartCatch will test for
 exception type (using UNIVERSAL::isa). When raised exception is just a
 text message (like "die ('message')"), there can be specified part of
 message to test for.
 .
 There are also explicit sub blocks. In opposite to Try::Tiny, every
 block in Try::Tiny::SmartCatch's "try", "catch_when", "catch_default",
 "then" and "finally" must have explicit subroutines specified.