svn commit: r566600 - in head/textproc: . py-textdistance

Rainer Hurling rhurlin at FreeBSD.org
Fri Feb 26 12:27:55 UTC 2021


Author: rhurlin
Date: Fri Feb 26 12:27:53 2021
New Revision: 566600
URL: https://svnweb.freebsd.org/changeset/ports/566600

Log:
  New port: textproc/py-textdistance: Comparing distance between two or more sequences by many algorithms
  
  https://github.com/life4/textdistance

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Feb 26 12:13:12 2021	(r566599)
+++ head/textproc/Makefile	Fri Feb 26 12:27:53 2021	(r566600)
@@ -1427,6 +1427,7 @@
     SUBDIR += py-tabletext
     SUBDIR += py-tablib
     SUBDIR += py-terminaltables
+    SUBDIR += py-textdistance
     SUBDIR += py-textfsm
     SUBDIR += py-texttable
     SUBDIR += py-three-merge

Added: head/textproc/py-textdistance/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-textdistance/Makefile	Fri Feb 26 12:27:53 2021	(r566600)
@@ -0,0 +1,23 @@
+# Created by: Rainer Hurling <rhurlin at gwdg.de>
+# $FreeBSD$
+
+PORTNAME=	textdistance
+PORTVERSION=	4.2.1
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rhurlin at FreeBSD.org
+COMMENT=	Comparing distance between two or more sequences by many algorithms
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYNUMPY}
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/py-textdistance/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-textdistance/distinfo	Fri Feb 26 12:27:53 2021	(r566600)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1614339534
+SHA256 (textdistance-4.2.1.tar.gz) = 46f8df3b26c7f319ab500b417047f61b85c2dd221781cb02f6c9136e5f1c9284
+SIZE (textdistance-4.2.1.tar.gz) = 28950

Added: head/textproc/py-textdistance/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-textdistance/pkg-descr	Fri Feb 26 12:27:53 2021	(r566600)
@@ -0,0 +1,12 @@
+TextDistance -- python library for comparing distance between two or
+more sequences by many algorithms.
+
+Features:
+- 30+ algorithms
+- Pure python implementation
+- Simple usage
+- More than two sequences comparing
+- Some algorithms have more than one implementation in one class
+- Optional numpy usage for maximum speed
+
+WWW: https://github.com/life4/textdistance


More information about the svn-ports-all mailing list