libclass-data-accessor-perl 0.04004-2 source package in Ubuntu
Changelog
libclass-data-accessor-perl (0.04004-2) unstable; urgency=low * Team upload. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs * Update Vcs-Browser URL to cgit web frontend * debian/control: Use HTTPS transport protocol for Vcs-Git URI [ gregor herrmann ] * debian/watch: remove obsolete comment. * Strip trailing slash from metacpan URLs. [ Axel Beckert ] * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg- copyright" [ Niko Tyni ] * Update to debhelper v9 and minimize debian/rules. * Declare the package autopkgtestable. * Switch to dpkg 3.0 (quilt) source format. * Update to Standards-Version 3.9.7. * Add build dependency on libtest-strict-perl for better (author) test coverage. * Skip manifest.t, it fails with libtest-checkmanifest-perl installed. -- Niko Tyni <email address hidden> Mon, 21 Mar 2016 22:56:41 +0200
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 | |
---|---|---|---|---|
Jammy | release | universe | perl | |
Focal | release | universe | perl | |
Bionic | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libclass-data-accessor-perl_0.04004-2.dsc | 2.3 KiB | 8852680a1be0c98b430c4d61998c259f043467d4e6d723da7b7219f749a6df0f |
libclass-data-accessor-perl_0.04004.orig.tar.gz | 23.6 KiB | c122d6e2df6136ce9bea1e6d2b776cb9e69e00085ece995301814c7af3a8e814 |
libclass-data-accessor-perl_0.04004-2.debian.tar.xz | 3.0 KiB | e789efe520de3c769a8a38688d49f97b6d07fc10e32980535aa7d467993999d6 |
Available diffs
No changes file available.
Binary packages built by this source
- libclass-data-accessor-perl: Inheritable, overridable class and instance data accessor creation
Class:
:Data:: Accessor is the marriage of Class::Accessor and
Class::Data:: Inheritable into a single module. It is used for creating
accessors to class properties that is overridable in subclasses as well as in
class instances.
.
For example:
.
Pere::Ubu->mk_ classaccessor( '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 property.
.
Pere::Ubu->Suitcase( 'Red');
$suitcase = Pere::Ubu->Suitcase;