libclass-data-inheritable-perl 0.09-ok2 source package in openKylin

Changelog

libclass-data-inheritable-perl (0.09-ok2) yangtze; urgency=medium

  * Modify debian/control.

 -- denghao <email address hidden>  Fri, 16 Sep 2022 09:31:17 +0300

Upload details

Uploaded by:
denghao
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Nile V2.0 proposed main perl
Nile V2.0 release main perl
Yangtze V1.0 release main perl
Yangtze V1.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libclass-data-inheritable-perl_0.09.orig.tar.gz 5.9 KiB 44088d6e90712e187b8a5b050ca5b1c70efe2baa32ae123e9bd8f59f29f06e4d
libclass-data-inheritable-perl_0.09-ok2.debian.tar.xz 1.9 KiB d6401e50e3a45b1b7be902ca2e67cbf9d3103279b7f0717f0c2bd99668f80c8e
libclass-data-inheritable-perl_0.09-ok2.dsc 2.0 KiB a712503d60ffe828cd33e7be8f71a17fab8b8caf6f819453c0d2fa47d251e8bc

Available diffs

View changes file

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;