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

Changelog

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

  [ Debian Janitor ]
  * Apply multi-arch hints.
    + libmodern-perl-perl: Add Multi-Arch: foreign.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.

  [ gregor herrmann ]
  * Import upstream version 1.20220515.
  * Update years of upstream and packaging copyright.
  * Declare compliance with Debian Policy 4.6.1.

 -- gregor herrmann <email address hidden>  Sun, 15 May 2022 23:56:59 +0200

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmodern-perl-perl_1.20220515-1.dsc 2.4 KiB ef1296d94a73b77fc7dbed5a9ae5e52af960fd40671a06d3f23dff04b9044046
libmodern-perl-perl_1.20220515.orig.tar.gz 14.8 KiB 700c292bd61d6c0c9f1f351d029a15a7144e405294321804f022885e5c59e68f
libmodern-perl-perl_1.20220515-1.debian.tar.xz 3.5 KiB 9ae3c8553cae975751cbadb52e3c77ffb7da3541b5ef64b33a154155676405ed

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.