libclass-method-modifiers-perl 2.13-2 source package in Ubuntu

Changelog

libclass-method-modifiers-perl (2.13-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).
  * Update standards version to 4.5.0, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Sun, 28 Aug 2022 13:44:17 +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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libclass-method-modifiers-perl_2.13-2.dsc 2.0 KiB 2abf84215baa6056d880dcf15f28076bf00f5c62edbd6e0683b47454e4818771
libclass-method-modifiers-perl_2.13.orig.tar.gz 40.4 KiB ab5807f71018a842de6b7a4826d6c1f24b8d5b09fcce5005a3309cf6ea40fd63
libclass-method-modifiers-perl_2.13-2.debian.tar.xz 3.5 KiB 8b84ac2f6832ca4c6a3fe2c903942a51b574e8c64484ff1193c8c4c067b78307

Available diffs

No changes file available.

Binary packages built by this source

libclass-method-modifiers-perl: Perl module providing method modifiers

 Class::Method::Modifiers provides three modifiers: before, around, and after.
 The before and after modifiers are run just before and after the method they
 modify, but cannot really affect that original method. The remaining modifier,
 around, is run in place of the original method, with a hook to easily call the
 original method.