Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Apr 2017 11:03:13 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r438626 - in head/devel: . py-editdistance
Message-ID:  <201704161103.v3GB3D5q071406@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Apr 16 11:03:13 2017
New Revision: 438626
URL: https://svnweb.freebsd.org/changeset/ports/438626

Log:
  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

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Apr 16 11:01:47 2017	(r438625)
+++ head/devel/Makefile	Sun Apr 16 11:03:13 2017	(r438626)
@@ -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

Added: head/devel/py-editdistance/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-editdistance/Makefile	Sun Apr 16 11:03:13 2017	(r438626)
@@ -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>

Added: head/devel/py-editdistance/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-editdistance/distinfo	Sun Apr 16 11:03:13 2017	(r438626)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1492224900
+SHA256 (editdistance-0.3.1.tar.gz) = 8ec8a2158b9234adb0ca7ecfb0b4caa35e45ad5d00353c80793c9f54e1a35121
+SIZE (editdistance-0.3.1.tar.gz) = 19817

Added: head/devel/py-editdistance/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-editdistance/pkg-descr	Sun Apr 16 11:03:13 2017	(r438626)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704161103.v3GB3D5q071406>