--- libtext-levenshtein-perl-0.06~01.orig/debian/control +++ libtext-levenshtein-perl-0.06~01/debian/control @@ -0,0 +1,22 @@ +Source: libtext-levenshtein-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), quilt +Build-Depends-Indep: perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Text-Levenshtein/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtext-levenshtein-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtext-levenshtein-perl/ + +Package: libtext-levenshtein-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: implementation of the Levenshtein edit distance + Text::Levenshtein implements the Levenshtein edit distance. 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: --- libtext-levenshtein-perl-0.06~01.orig/debian/copyright +++ libtext-levenshtein-perl-0.06~01/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Dree Mistrut +Upstream-Source: http://search.cpan.org/dist/Text-Levenshtein/ +Upstream-Name: Text-Levenshtein + +Files: * +Copyright: Copyright 2002,2004,2008 Dree Mistrut +Licenses: GPL-1+ | Artistic +License-Alias: Perl + +Files: debian/* +Copyright: 2009, Ryan Niebur +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libtext-levenshtein-perl-0.06~01.orig/debian/watch +++ libtext-levenshtein-perl-0.06~01/debian/watch @@ -0,0 +1,2 @@ +version=3 +opts=uversionmangle=s/_/~/ http://search.cpan.org/dist/Text-Levenshtein/ .*/Text-Levenshtein-v?(\d[\d.-_]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtext-levenshtein-perl-0.06~01.orig/debian/compat +++ libtext-levenshtein-perl-0.06~01/debian/compat @@ -0,0 +1 @@ +7 --- libtext-levenshtein-perl-0.06~01.orig/debian/changelog +++ libtext-levenshtein-perl-0.06~01/debian/changelog @@ -0,0 +1,5 @@ +libtext-levenshtein-perl (0.06~01-1) unstable; urgency=low + + * Initial Release. (Closes: #512267) + + -- Ryan Niebur Mon, 19 Jan 2009 12:52:39 -0800 --- libtext-levenshtein-perl-0.06~01.orig/debian/rules +++ libtext-levenshtein-perl-0.06~01/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh build + touch $@ + +clean: unpatch + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build --- libtext-levenshtein-perl-0.06~01.orig/debian/patches/fix-manpage +++ libtext-levenshtein-perl-0.06~01/debian/patches/fix-manpage @@ -0,0 +1,15 @@ +Author: Ryan Niebur +Description: remove the extra & in the POD +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=42535 + +--- a/Levenshtein.pm ++++ b/Levenshtein.pm +@@ -125,7 +125,7 @@ + When two strings have distance 0, they are the same. + A good point to start is: + +-&fastdistance can be called with two scalars and is faster in most cases. ++C can be called with two scalars and is faster in most cases. + + See also Text::LevenshteinXS on CPAN if you do not require a perl-only implementation. It + is extremely faster in nearly all cases. --- libtext-levenshtein-perl-0.06~01.orig/debian/patches/series +++ libtext-levenshtein-perl-0.06~01/debian/patches/series @@ -0,0 +1 @@ +fix-manpage