File: control

package info (click to toggle)
libdata-dump-perl 1.23-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 188 kB
  • sloc: perl: 1,165; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,394 bytes parent folder | download | duplicates (2)
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
Source: libdata-dump-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl
Uploaders: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>, 
 Rene Mayorga <rmayorga@debian.org>, Ansgar Burchardt <ansgar@debian.org>,
 Jonathan Yu <jawnsy@cpan.org>, Jotam Jr. Trejo <jotamjr@debian.org.sv>,
 Salvatore Bonaccorso <carnil@debian.org>
Standards-Version: 3.9.6
Homepage: https://metacpan.org/release/Data-Dump
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdata-dump-perl.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-dump-perl.git
Testsuite: autopkgtest-pkg-perl

Package: libdata-dump-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}
Description: Perl module to help dump data structures
 Data::Dump provides a single function called dump that takes a list of values
 as its argument and produces a string as its result. The string contains Perl
 code that, when evaled, produces a deep copy of the original arguments. The
 string is formatted for easy reading.
 .
 If called in void context, the dump is printed on standard error instead of
 being returned. If you don't like importing a function that overrides Perl's
 not-so-useful builtin, then you can also import the same function as "pp"
 (the mnemonic for "pretty-print").