libdevel-cover-perl 0.96-1ubuntu1 source package in Ubuntu

Changelog

libdevel-cover-perl (0.96-1ubuntu1) raring; urgency=low

  * Resynchronise with Debian.  Remaining changes:
    - Prefer perltidy over libppi-html-perl in build dependencies.

libdevel-cover-perl (0.96-1) unstable; urgency=low

  * New upstream release
  * Updated debian/copyright
 -- Colin Watson <email address hidden>   Wed, 31 Oct 2012 08:34:01 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Raring
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libdevel-cover-perl_0.96.orig.tar.gz 182.3 KiB a985c8514f4204c14cd841a3581c6951e46bbfb67f60ce7ed96c55defdd6bd01
libdevel-cover-perl_0.96-1ubuntu1.debian.tar.gz 5.5 KiB 20b9dfc49230a8d3667dd94ad2e26dbb0a24c9334d05d1728e883c1e81e5d90f
libdevel-cover-perl_0.96-1ubuntu1.dsc 2.4 KiB 95ad3f5f493f11f17c499ece7ffc3b07a03caf72e0c992d980da5817a801ab39

Available diffs

View changes file

Binary packages built by this source

libdevel-cover-perl: 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.