File: control

package info (click to toggle)
libdevel-cover-perl 1.44-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,948 kB
  • sloc: perl: 10,378; sh: 398; makefile: 7
file content (67 lines) | stat: -rw-r--r-- 2,950 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Source: libdevel-cover-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>,
           gregor herrmann <gregoa@debian.org>,
           Florian Schlichting <fsfs@debian.org>,
           Axel Beckert <abe@debian.org>,
           Dominic Hargreaves <dom@earth.li>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libdbm-deep-perl <!nocheck>,
               libhtml-parser-perl <!nocheck>,
               libmoo-perl <!nocheck>,
               libmoose-perl <!nocheck>,
               libpod-coverage-perl <!nocheck>,
               libppi-html-perl <!nocheck> | perltidy <!nocheck>,
               libreadonly-perl <!nocheck>,
               libtemplate-perl,
               libtest-differences-perl <!nocheck>,
               perl-xs-dev,
               perl:native
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdevel-cover-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdevel-cover-perl.git
Homepage: https://metacpan.org/release/Devel-Cover
Rules-Requires-Root: no

Package: libdevel-cover-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${sameperl:Depends},
         ${shlibs:Depends},
         libhtml-parser-perl
Recommends: gcc,
            libtemplate-perl
Suggests: libbrowser-open-perl,
          libcapture-tiny-perl,
          libclass-xsaccessor-perl,
          libjson-maybexs-perl,
          libmoo-perl,
          libnamespace-clean-perl,
          libpod-coverage-perl,
          libppi-html-perl | perltidy,
          libsereal-decoder-perl,
          libsereal-encoder-perl,
          libterm-size-perl,
          libtest-differences-perl
Description: Perl tool for determining code coverage metrics
 Devel::Cover is a Perl module that helps collect and display code coverage
 information. Code coverage information is collected using a pluggable runops
 function which counts how many times each op is executed. This data is then
 mapped back to reality using the B compiler modules. There is also a another
 statement profiler which needs a better backend to be really useful.
 .
 Statement, branch, condition, subroutine, pod and time coverage information is
 reported. Statement coverage data should be reasonable, although there may be
 some statements which are not reported. Branch and condition coverage data
 should be mostly accurate too, although not always what one might initially
 expect. Subroutine coverage should be as accurate as statement coverage. Pod
 coverage comes from Pod::Coverage. If Pod::Coverage::CountParents is available
 it will be used instead. Coverage data for path coverage are not yet
 collected.
 .
 The cover program can be used to generate coverage reports. Another included
 program, gcov2perl, can convert gcov files to Devel::Cover databases.