libclass-load-perl 0.25-2 source package in Ubuntu

Changelog

libclass-load-perl (0.25-2) unstable; urgency=medium

  [ Laurent Baillet ]
  * fix lintian file-contains-trailing-whitespace warning

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Remove constraints unnecessary since stretch:
    + Build-Depends-Indep: Drop versioned constraint on libdata-optlist-perl.
    + libclass-load-perl: Drop versioned constraint on libdata-optlist-perl in
      Depends.
  * Bump debhelper from old 12 to 13.

 -- Jelmer Vernooij <email address hidden>  Wed, 07 Dec 2022 00:41:24 +0000

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
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libclass-load-perl_0.25-2.dsc 2.3 KiB 608601125ae05231e7e0bed63c0d75b44c0854b340714d720d6f615c129b4701
libclass-load-perl_0.25.orig.tar.gz 35.8 KiB 2a48fa779b5297e56156380e8b32637c6c58decb4f4a7f3c7350523e11275f8f
libclass-load-perl_0.25-2.debian.tar.xz 3.4 KiB 70b544794c595f790b513b7877131bdf33b9e7137f33f61fda24bb1c0722f2bd

Available diffs

No changes file available.

Binary packages built by this source

libclass-load-perl: module for loading modules by name

 "require EXPR" only accepts Class/Name.pm style module names, not
 Class::Name. For that, Class::Load provides "load_class 'Class::Name'".
 .
 It's often useful to test whether a module can be loaded, instead of throwing
 an error when it's not available. For that, Class::Load provides
 "try_load_class 'Class::Name'".
 .
 Finally, sometimes it is important to know whether a particular class has
 been loaded. Asking %INC is an option, but that will miss inner packages and
 any class for which the filename does not correspond to the package name. For
 that, this module provides "is_class_loaded 'Class::Name'".