File: control

package info (click to toggle)
libdata-dmp-perl 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 164 kB
  • ctags: 8
  • sloc: perl: 258; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,261 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
Source: libdata-dmp-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Lucas Kanashiro <kanashiro@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: libregexp-stringify-perl,
                     perl
Standards-Version: 4.0.0
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-dmp-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libdata-dmp-perl.git
Homepage: https://metacpan.org/release/Data-Dmp

Package: libdata-dmp-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libregexp-stringify-perl
Description: Perl module that dumps Perl data structures as Perl code
 Data::Dmp is a Perl dumper like Data::Dumper. It's compact (only about 150
 lines of code long), starts fast and does not use other module except
 Regexp::Stringify when dumping regexes. It produces compact output (similar
 to Data::Dumper::Concise). It roughly has the same speed as Data::Dumper
 (usually a bit faster for smaller structures), but does not offer the various
 formatting options. It supports dumping objects, regexes, circular
 structures, coderefs. Its code is based on Data::Dump.