libmodern-perl-perl 1.20200211-1 source package in Ubuntu

Changelog

libmodern-perl-perl (1.20200211-1) unstable; urgency=medium

  * Import upstream version 1.20200211.

 -- gregor herrmann <email address hidden>  Tue, 11 Feb 2020 18:48:30 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe perl
Focal release universe perl

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmodern-perl-perl_1.20200211-1.dsc 2.4 KiB 9888870413df842caeb932b9de5ba155fad3ae5a620d0cb646ca0bc19bc349f2
libmodern-perl-perl_1.20200211.orig.tar.gz 14.5 KiB da1c83cee84fab9edb9e31d7f7abac43e1337b2e66015191ec4b6da59298c480
libmodern-perl-perl_1.20200211-1.debian.tar.xz 3.4 KiB 352d8cd9414f582aeea4a98322ad5244f5e72ee490eacb8f4b93130817433f09

Available diffs

No changes file available.

Binary packages built by this source

libmodern-perl-perl: module for enabling all of the features of Modern Perl

 Modern Perl programs use several modules to enable additional features of
 Perl and of the CPAN. Instead of copying and pasting all of these 'use'
 lines, instead write only one:
 .
    use Modern::Perl;
 .
 This enables the strict and warnings pragmas, as well as all of the features
 available since Perl 5.10.
 .
 For enabling features of newer Perl releases, a year can be specified as an
 import tag, e.g.:
 .
    use Modern::Perl '2017';
 .
 enables 5.24 features. Cf. Modern::Perl(3pm) for details.
 .
 See http://www.modernperlbooks.com/mt/2009/01/toward-a-modernperl.html for
 more information, http://www.modernperlbooks.com/ for further discussion of
 Modern Perl and its implications, and
 http://onyxneon.com/books/modern_perl/index.html for a freely-downloadable
 Modern Perl tutorial.