From owner-svn-ports-all@freebsd.org Sun Apr 16 11:03:14 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9D69D410AB; Sun, 16 Apr 2017 11:03:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9EF4B939; Sun, 16 Apr 2017 11:03:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3GB3D0t071410; Sun, 16 Apr 2017 11:03:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3GB3D5q071406; Sun, 16 Apr 2017 11:03:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201704161103.v3GB3D5q071406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Apr 2017 11:03:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438626 - in head/devel: . py-editdistance X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Apr 2017 11:03:15 -0000 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 +# $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 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