libdata-clone-perl 0.003-1build1 source package in Ubuntu

Changelog

libdata-clone-perl (0.003-1build1) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 16:01:36 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl

Downloads

File Size SHA-256 Checksum
libdata-clone-perl_0.003.orig.tar.gz 32.9 KiB 2fb8f1207a6929469d0c00b4e3b9aa22ff2c8290a100a9f51bac91a79c9c8d9a
libdata-clone-perl_0.003-1build1.debian.tar.gz 1.8 KiB b3134c297cc851de594b547dbf134817afa3bc8a9862e3096389e8fc391a9001
libdata-clone-perl_0.003-1build1.dsc 2.1 KiB 547bd53519ef0c6714039fe40406f9d3fa033002c79052c4472c7aa07d0c56eb

View changes file

Binary packages built by this source

libdata-clone-perl: Perl module for polymorphic data cloning

 Data::Clone does data cloning, i.e. copies things recursively. This is smart
 so that it works with not only non-blessed references, but also with blessed
 references (i.e. objects). When clone() finds an object, it calls a clone
 method of the object if the object has a clone, otherwise it makes a surface
 copy of the object. That is, this module does polymorphic data cloning.
 .
 Although there are several modules on CPAN which can clone data, this module
 has a different cloning policy from almost all of them.