libclass-data-inheritable-perl 0.10-ok1 source package in openKylin

Changelog

libclass-data-inheritable-perl (0.10-ok1) huanghe; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Fri, 29 May 2026 06:55:18 -0700

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Huanghe V3.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libclass-data-inheritable-perl_0.10.orig.tar.gz 6.3 KiB aa1ae68a611357b7bfd9a2f64907cc196ddd6d047cae64ef9d0ad099d98ae54a
libclass-data-inheritable-perl_0.10-ok1.debian.tar.xz 1.6 KiB dfb052806cc1e0c2102649c1543474f91bc60b0eae34ce344128e2fdeaa4d5d4
libclass-data-inheritable-perl_0.10-ok1.dsc 2.1 KiB cef2a8119d7d8cb18b144d89605b09832238b768874acc2c383ab935089e6b82

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;