libtext-levenshteinxs-perl 0.03-3build2 source package in Ubuntu

Changelog

libtext-levenshteinxs-perl (0.03-3build2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 20:17:46 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Precise
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Downloads

File Size SHA-256 Checksum
libtext-levenshteinxs-perl_0.03.orig.tar.gz 3.0 KiB e374ff7b237919ce5ea9245f356d1cb52cc87fd26b3a5a38b3f3e5ff82a01491
libtext-levenshteinxs-perl_0.03-3build2.debian.tar.gz 1.9 KiB 54bc742c95114bff0f4ad722438856e95a82bdb369604414f1b9ea8b3fda24bb
libtext-levenshteinxs-perl_0.03-3build2.dsc 2.2 KiB e1879f4bbf345f94c863c771359fa0e02792986a6976d9ec179dd0c7a0d552ac

Available diffs

View changes file

Binary packages built by this source

libtext-levenshteinxs-perl: XS implementation of the Levenshtein edit distance

 Text::LevenshteinXS implements the Levenshtein edit distance in a XS way; this
 should be much faster than the pure Perl implementation.
 .
 The Levenshtein edit distance is a measure of the degree of proximity between
 two strings. This distance is the number of substitutions, deletions or
 insertions ("edits") needed to transform one string into the other one (and
 vice versa). When two strings have distance 0, they are the same. A good
 point to start is: <http://www.merriampark.com/ld.htm>