libclass-data-inheritable-perl 0.08-2 source package in Ubuntu
Changelog
libclass-data-inheritable-perl (0.08-2) unstable; urgency=low [ gregor herrmann ] * debian/control: Added: ${misc:Depends} to Depends: field. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ gregor herrmann ] * Fix spelling error in long description, thanks lintian. Closes: #687362 [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change search.cpan.org based URIs to metacpan.org based URIs [ Xavier Guimard ] * Update source format to 3.0 (quilt) * Update debian/copyright (years and format) * Update debian/rules to use "dh $@" * Add spelling errors patch * Bump Standards-Version to 3.9.4 * Bump debhelper compatibility to 8 * Update description -- Xavier Guimard <email address hidden> Tue, 12 Mar 2013 06:02:10 +0100
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Low Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Bionic | release | main | perl | |
Xenial | release | universe | perl | |
Trusty | release | main | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libclass-data-inheritable-perl_0.08-2.dsc | 2.2 KiB | b1905489612ac325c221d89a502ac5f01443fd9dbf3de2558ee08c8de5c66679 |
libclass-data-inheritable-perl_0.08.orig.tar.gz | 5.5 KiB | 9967feceea15227e442ec818723163eb6d73b8947e31f16ab806f6e2391af14a |
libclass-data-inheritable-perl_0.08-2.debian.tar.gz | 3.1 KiB | 2570baaaebb369c7b1b0139f351372a275b9ac92a0dda330e5940487c78b8eb6 |
Available diffs
- diff from 0.08-1 (in Ubuntu) to 0.08-2 (3.4 KiB)
No changes file available.
Binary packages built by this source
- libclass-data-inheritable-perl: Perl module to create accessors to class data
Class:
:Data:: Inheritable is for creating accessors/mutators to class
data. That is, if you want to store something about your class as a
whole (instead of about a single object). This data is then inherited
by your subclasses and can be overridden.
.
For example:
.
Pere::Ubu->mk_ classdata( 'Suitcase' );
.
will generate the method Suitcase() in the class Pere::Ubu.
.
This new method can be used to get and set a piece of class data.
.
Pere::Ubu->Suitcase( 'Red');
$suitcase = Pere::Ubu->Suitcase;