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

Changelog

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

  * Import upstream version 1.20230106.
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 4.6.2.

 -- gregor herrmann <email address hidden>  Fri, 06 Jan 2023 02:33:18 +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
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmodern-perl-perl_1.20230106-1.dsc 2.4 KiB 07d99d460e2321a6823133ed3bde926c30ab96b5b887631e381b89521a274e65
libmodern-perl-perl_1.20230106.orig.tar.gz 15.1 KiB 0459dcab80ce82b63461fd81ee94e06e9a6515d98f3fbc319838dd1e602851f7
libmodern-perl-perl_1.20230106-1.debian.tar.xz 3.6 KiB f8b3f3dec6c078f9664cf3f382d2bdbc36dad11f1ecc29eee09adf5a90b0e545

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.