Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Dec 2019 17:31:27 +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: r521369 - in head/devel: . py-pylev
Message-ID:  <201912291731.xBTHVR7d072719@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Dec 29 17:31:27 2019
New Revision: 521369
URL: https://svnweb.freebsd.org/changeset/ports/521369

Log:
  Add py-pylev 1.3.0
  
  pylev is a pure Python Levenshtein implementation that's not freaking GPL'd.
  
  It is based off the Wikipedia code samples at
  http://en.wikipedia.org/wiki/Levenshtein_distance.
  
  WWW: https://github.com/toastdriven/pylev

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Dec 29 17:31:21 2019	(r521368)
+++ head/devel/Makefile	Sun Dec 29 17:31:27 2019	(r521369)
@@ -4866,6 +4866,7 @@
     SUBDIR += py-pyjsparser
     SUBDIR += py-pyke
     SUBDIR += py-pylama
+    SUBDIR += py-pylev
     SUBDIR += py-pylibsrtp
     SUBDIR += py-pylru
     SUBDIR += py-pylru-cache

Added: head/devel/py-pylev/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pylev/Makefile	Sun Dec 29 17:31:27 2019	(r521369)
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pylev
+PORTVERSION=	1.3.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Pure Python Levenshtein implementation
+
+LICENSE=	BSD3CLAUSE
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pylev/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pylev/distinfo	Sun Dec 29 17:31:27 2019	(r521369)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1577626023
+SHA256 (pylev-1.3.0.tar.gz) = 063910098161199b81e453025653ec53556c1be7165a9b7c50be2f4d57eae1c3
+SIZE (pylev-1.3.0.tar.gz) = 3193

Added: head/devel/py-pylev/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pylev/pkg-descr	Sun Dec 29 17:31:27 2019	(r521369)
@@ -0,0 +1,6 @@
+pylev is a pure Python Levenshtein implementation that's not freaking GPL'd.
+
+It is based off the Wikipedia code samples at
+http://en.wikipedia.org/wiki/Levenshtein_distance.
+
+WWW: https://github.com/toastdriven/pylev



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