svn commit: r521369 - in head/devel: . py-pylev

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Dec 29 17:31:28 UTC 2019


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pylev
+PORTVERSION=	1.3.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at 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


More information about the svn-ports-all mailing list