libdevel-cover-perl 1.08-1ubuntu2 source package in Ubuntu

Changelog

libdevel-cover-perl (1.08-1ubuntu2) trusty; urgency=medium

  * Rebuild for Perl 5.18.2.
 -- Colin Watson <email address hidden>   Thu, 16 Jan 2014 14:05:16 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release main perl

Downloads

File Size SHA-256 Checksum
libdevel-cover-perl_1.08.orig.tar.gz 187.4 KiB 6a7555159491b3816895b5497377f9bb6861b7f72d64ed901643278dd1b69a58
libdevel-cover-perl_1.08-1ubuntu2.debian.tar.gz 5.3 KiB e3abcfa4b9808040c99702f21c203efcb189ec210d28d5f5730c4b307c1dece9
libdevel-cover-perl_1.08-1ubuntu2.dsc 2.4 KiB d1bad4c6a56b3835bdbd64a5339a8b896695115b201b6b4abedb1b28f3283460

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.