File: control

package info (click to toggle)
libdata-clone-perl 0.004-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 276 kB
  • sloc: perl: 2,581; ansic: 60; makefile: 7
file content (31 lines) | stat: -rw-r--r-- 1,387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: libdata-clone-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Rules-Requires-Root: no
Priority: optional
Build-Depends: debhelper (>= 10),
               libtest-leaktrace-perl,
               libtest-requires-perl,
               perl,
               perl (>= 5.17.4) | libextutils-parsexs-perl (>= 3.180000)
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-clone-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libdata-clone-perl.git
Homepage: https://metacpan.org/release/Data-Clone

Package: libdata-clone-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends}
Description: 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.