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

Changelog

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

  * Team upload

  * Import upstream version 2.14.
  * Drop now-obsolete build-dependencies on Moose, Test::Fatal and Test::Needs
  * Declare compliance with Debian Policy 4.6.2
  * Update upstream metadata (drop Homepage field)

 -- Florian Schlichting <email address hidden>  Sat, 21 Jan 2023 18:35:02 +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
Lunar release main perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libclass-method-modifiers-perl_2.14-1.dsc 2.3 KiB 766cb845ad277b39c93923feac4c2e7eab405613009fc82285ec5e257d0f64e0
libclass-method-modifiers-perl_2.14.orig.tar.gz 40.2 KiB 3704ee6e75434f2a48e565a9c418e1593d611105ac6d658227549c6ba260cd1d
libclass-method-modifiers-perl_2.14-1.debian.tar.xz 3.6 KiB ceced27356659009fedaf464229b6ea2dd00af0496efa21b8628609bdbfc7708

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.