libclass-method-modifiers-perl 2.15-1 source package in Ubuntu

Changelog

libclass-method-modifiers-perl (2.15-1) unstable; urgency=medium

  * Import upstream version 2.15.

 -- gregor herrmann <email address hidden>  Sun, 11 Jun 2023 04:37:12 +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
Oracular release main perl
Noble release main perl
Mantic release main perl

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libclass-method-modifiers-perl_2.15-1.dsc 2.5 KiB be98931dc97bec62aefd0f35acf63dd56cafbb688972d6b0b508b25493d945ca
libclass-method-modifiers-perl_2.15.orig.tar.gz 40.2 KiB 65cd85bfe475d066e9186f7a8cc636070985b30b0ebb1cde8681cf062c2e15fc
libclass-method-modifiers-perl_2.15-1.debian.tar.xz 3.6 KiB e1b82dddb3e5aab38d5bf96982ef8bc6b2539a0f5bee2c80d70372f0eec44066

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.