librole-tiny-perl 2.000006-1 source package in Ubuntu

Changelog

librole-tiny-perl (2.000006-1) unstable; urgency=medium

  [ Alex Muntada ]
  * Remove inactive pkg-perl members from Uploaders.

  [ gregor herrmann ]
  * Import upstream version 2.000006.
  * Update debian/upstream/metadata.
  * Add /me to Uploaders.
  * Declare compliance with Debian Policy 4.1.1.

 -- gregor herrmann <email address hidden>  Wed, 15 Nov 2017 20:29:21 +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
Bionic release main perl

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
librole-tiny-perl_2.000006-1.dsc 2.3 KiB bd722b896122a86eabee6bae4c8e7b9e1fa47d09f55db89295e2a71dd62d66ce
librole-tiny-perl_2.000006.orig.tar.gz 21.1 KiB cc73418c904a0286ecd8915eac11f5be2a8d1e17ea9cb54c9116b0340cd3e382
librole-tiny-perl_2.000006-1.debian.tar.xz 3.2 KiB 80656352105136bbe45cf9e3875040652aa1181372910d1617a181115c334f9f

Available diffs

No changes file available.

Binary packages built by this source

librole-tiny-perl: Perl module for minimalist role composition

 Role::Tiny is a Perl module to do minimalist role composition. Role composition
 can be thought of as much more clever and meaningful multiple inheritance.
 .
 The basics of this implementation of roles is:
  * If a method is already defined on a class, that method will not be composed
    in from the role.
  * If a method that the role "requires" to be implemented is not implemented,
    role application will fail loudly.
 .
 Unlike Class::C3, where the last class inherited from "wins," role composition
 is the other way around, where first wins. In a more complete system (see
 Moose) roles are checked to see if they clash. The goal of this is to be much
 simpler, hence disallowing composition of multiple roles at once.