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

Changelog

libdevel-cover-perl (1.08-1ubuntu1) trusty; urgency=low

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

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

  * New upstream release.
  * Drop patch pod-encoding.patch, merged upstream.

libdevel-cover-perl (1.07-2) unstable; urgency=low

  * Add patch that adds encoding to the POD.
  * Update years of packaging copyright.

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

  [ gregor herrmann ]
  * New upstream release.
  * Refresh patch keep-non-existent-dirs-in-INC.patch.
  * Bump Standards-Version to 3.9.4 (no changes).

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ Florian Schlichting ]
  * Import Upstream version 1.07 (closes: #702847)
  * Bump years of upstream copyright
  * Drop keep-non-existent-dirs-in-INC.patch, fixed upstream (but differently)
  * Add myself to uploaders and copyright
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 12:34:21 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
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_1.08.orig.tar.gz 187.4 KiB 6a7555159491b3816895b5497377f9bb6861b7f72d64ed901643278dd1b69a58
libdevel-cover-perl_1.08-1ubuntu1.debian.tar.gz 5.2 KiB 3d0f19a048bcfa303110fd82bd4c815bc702cbb45625202dfcd23a4243aeb373
libdevel-cover-perl_1.08-1ubuntu1.dsc 2.4 KiB 42091f8a9f0ad206abe660cb72717d96d0e069a842a6e685509a237c965f8a29

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.