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

Changelog

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

  * Import upstream version 1.20240115.
  * Update years of upstream and packaging copyright.
  * Update test dependencies.

 -- gregor herrmann <email address hidden>  Sun, 21 Jan 2024 00:28:58 +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
Oracular release universe perl
Noble release universe perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmodern-perl-perl_1.20240115-1.dsc 2.5 KiB 843bdb4d8f7825ed3cd8007a75ccbd76101054b614ce89f4fdafac56ded0f4b9
libmodern-perl-perl_1.20240115.orig.tar.gz 16.3 KiB 7027280375794633189f86e66b6fc9f96b0aaffeb225f14747fbb26e588bf36e
libmodern-perl-perl_1.20240115-1.debian.tar.xz 3.6 KiB 8d2e58c849d441d61bda2a91b427ba325c3d49beac2d5a5c0f7035a8a4880d38

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.