libfeature-compat-try-perl 0.05-1 source package in Ubuntu

Changelog

libfeature-compat-try-perl (0.05-1) unstable; urgency=medium

  * Team upload.
  * Import upstream version 0.05.
  * Bump versioned (build) dependency on libsyntax-keyword-try-perl.
  * Update years of upstream copyright.

 -- gregor herrmann <email address hidden>  Fri, 25 Feb 2022 22:51:38 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfeature-compat-try-perl_0.05-1.dsc 2.5 KiB 2e5bb5448f02d9d6ffa7e0bce6b9454502eccf78e2e7b4be27b11a88683b6754
libfeature-compat-try-perl_0.05.orig.tar.gz 17.0 KiB 59a1c7173cac30db131c5f13fa3840f718588eef9b579352ffe156b550716d7c
libfeature-compat-try-perl_0.05-1.debian.tar.xz 1.8 KiB 245746408432eaf35089da5b41a2d4e1d4eafda4d0f9099640a79a5726337897

Available diffs

No changes file available.

Binary packages built by this source

libfeature-compat-try-perl: make try/catch syntax available

 Feature::Compat::Try is written in preparation for when Perl will gain true
 native syntax support for try/catch control flow.
 .
 Perl added such syntax in the development version 5.33.7, which is enabled by
 .
 use feature 'try';
 .
 On that version of Perl or later, this module simply enables the core feature
 equivalent to using it directly. On such Perls, this module will install with
 no non-core dependencies, and requires no C compiler.
 .
 On older versions of Perl before such syntax is available, it is currently
 provided instead using the Syntax::Keyword::Try module, imported with a
 special set of options to configure it to recognise exactly and only the same
 syntax as the core Perl feature, thus ensuring that any code using it will
 still continue to function on that newer Perl.