svn commit: r455142 - in head/devel: . py-python-Levenshtein

Dan Langille dvl at FreeBSD.org
Wed Nov 29 19:54:35 UTC 2017


Author: dvl
Date: Wed Nov 29 19:54:33 2017
New Revision: 455142
URL: https://svnweb.freebsd.org/changeset/ports/455142

Log:
  Fast computation of Levenshtein distance and string similarity

Added:
  head/devel/py-python-Levenshtein/
  head/devel/py-python-Levenshtein/Makefile   (contents, props changed)
  head/devel/py-python-Levenshtein/distinfo   (contents, props changed)
  head/devel/py-python-Levenshtein/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Nov 29 19:45:40 2017	(r455141)
+++ head/devel/Makefile	Wed Nov 29 19:54:33 2017	(r455142)
@@ -4757,6 +4757,7 @@
     SUBDIR += py-pytest-timeout
     SUBDIR += py-pytest-tornado
     SUBDIR += py-pytest-xdist
+    SUBDIR += py-python-Levenshtein
     SUBDIR += py-python-bugzilla
     SUBDIR += py-python-distutils-extra
     SUBDIR += py-python-dtrace

Added: head/devel/py-python-Levenshtein/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-Levenshtein/Makefile	Wed Nov 29 19:54:33 2017	(r455142)
@@ -0,0 +1,18 @@
+# Created by: Dan Langille <dvl at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	python-Levenshtein
+PORTVERSION=	0.12.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dvl at FreeBSD.org
+COMMENT=	Fast computation of Levenshtein distance and string similarity
+
+LICENSE=	GNU
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-python-Levenshtein/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-Levenshtein/distinfo	Wed Nov 29 19:54:33 2017	(r455142)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1511984639
+SHA256 (python-Levenshtein-0.12.0.tar.gz) = 033a11de5e3d19ea25c9302d11224e1a1898fe5abd23c61c7c360c25195e3eb1
+SIZE (python-Levenshtein-0.12.0.tar.gz) = 48617

Added: head/devel/py-python-Levenshtein/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-Levenshtein/pkg-descr	Wed Nov 29 19:54:33 2017	(r455142)
@@ -0,0 +1,13 @@
+The Levenshtein Python C extension module contains functions for fast
+computation of:
+
+* Levenshtein (edit) distance, and edit operations
+* string similarity
+* approximate median strings, and generally string averaging
+* string sequence and set similarity
+
+It supports both normal and Unicode strings.
+
+Python 2.2 or newer is required; Python 3 is supported.
+
+WWW: https://github.com/ztane/python-Levenshtein


More information about the svn-ports-all mailing list