Import Debian changes 0.03-ok1
libtext-levenshteinxs-perl (0.03-ok1) yangtze; urgency=medium * Build for openkylin.
This commit is contained in:
parent
15ffdb3644
commit
7b4d3c854c
|
@ -0,0 +1,5 @@
|
||||||
|
libtext-levenshteinxs-perl (0.03-ok1) yangtze; urgency=medium
|
||||||
|
|
||||||
|
* Build for openkylin.
|
||||||
|
|
||||||
|
-- sufang <sufang@kylinos.cn> Fri, 23 Sep 2022 09:48:16 +0800
|
|
@ -0,0 +1,26 @@
|
||||||
|
Source: libtext-levenshteinxs-perl
|
||||||
|
Section: perl
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: OpenKylin Developers <packaging@lists.openkylin.top>
|
||||||
|
Build-Depends: debhelper-compat (= 13),
|
||||||
|
perl-xs-dev,
|
||||||
|
perl:native
|
||||||
|
Standards-Version: 3.9.5
|
||||||
|
Vcs-Browser: https://gitee.com/openkylin/libtext-levenshteinxs-perl
|
||||||
|
Vcs-Git: https://gitee.com/openkylin/libtext-levenshteinxs-perl.git
|
||||||
|
Homepage: https://metacpan.org/release/Text-LevenshteinXS
|
||||||
|
Testsuite: autopkgtest-pkg-perl
|
||||||
|
|
||||||
|
Package: libtext-levenshteinxs-perl
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${misc:Depends},
|
||||||
|
${perl:Depends},
|
||||||
|
${shlibs:Depends}
|
||||||
|
Description: 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.
|
|
@ -0,0 +1,27 @@
|
||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: libtext-levenshteinxs-perl
|
||||||
|
Source: <url://example.com>
|
||||||
|
#
|
||||||
|
# Please double check copyright with the licensecheck(1) command.
|
||||||
|
|
||||||
|
Files: Changes
|
||||||
|
LevenshteinXS.xs
|
||||||
|
MANIFEST
|
||||||
|
META.yml
|
||||||
|
Makefile.PL
|
||||||
|
test.pl
|
||||||
|
Copyright: __NO_COPYRIGHT_NOR_LICENSE__
|
||||||
|
License: __NO_COPYRIGHT_NOR_LICENSE__
|
||||||
|
|
||||||
|
Files: LevenshteinXS.pm
|
||||||
|
README
|
||||||
|
Copyright: 2003 Dree Mistrut <F<dree@friul.it>> Modifications Copyright 2004 Josh Goldberg <F<josh@3io.com>>
|
||||||
|
2003 Dree Mistrut <dree@friul.it>
|
||||||
|
License: __UNKNOWN__
|
||||||
|
This package is free software and is provided "as is" without express
|
||||||
|
or implied warranty. You can redistribute it and/or modify it under
|
||||||
|
the same terms as Perl itself.
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
|
||||||
|
# license/copyright files.
|
|
@ -0,0 +1 @@
|
||||||
|
# You must remove unused comment lines for the released package.
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
|
@ -0,0 +1,2 @@
|
||||||
|
version=4
|
||||||
|
https://metacpan.org/release/Text-LevenshteinXS .*/Text-LevenshteinXS-v?@ANY_VERSION@@ARCHIVE_EXT@$
|
Loading…
Reference in New Issue