Add py-editdistance 0.3.1

This library simply implements Levenshtein distance with C++ and Cython.

WWW: https://pypi.python.org/pypi/editdistance
WWW: https://github.com/aflc/editdistance
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2017-04-16 11:03:13 +00:00
parent 56e782fece
commit db20ae26cb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=438626
4 changed files with 29 additions and 0 deletions

View file

@ -4248,6 +4248,7 @@
SUBDIR += py-doit
SUBDIR += py-durus
SUBDIR += py-dynrules
SUBDIR += py-editdistance
SUBDIR += py-efilter
SUBDIR += py-efl
SUBDIR += py-eggtestinfo

View file

@ -0,0 +1,21 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= editdistance
PORTVERSION= 0.3.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Fast implementation of the edit distance (Levenshtein distance)
LICENSE= MIT
USE_PYTHON= autoplist distutils
USES= python
post-install:
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/editdistance/bycython.so
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1492224900
SHA256 (editdistance-0.3.1.tar.gz) = 8ec8a2158b9234adb0ca7ecfb0b4caa35e45ad5d00353c80793c9f54e1a35121
SIZE (editdistance-0.3.1.tar.gz) = 19817

View file

@ -0,0 +1,4 @@
This library simply implements Levenshtein distance with C++ and Cython.
WWW: https://pypi.python.org/pypi/editdistance
WWW: https://github.com/aflc/editdistance