Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2021 12:27:53 +0000 (UTC)
From:      Rainer Hurling <rhurlin@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r566600 - in head/textproc: . py-textdistance
Message-ID:  <202102261227.11QCRrFT041061@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@gwdg.de>
+# $FreeBSD$
+
+PORTNAME=	textdistance
+PORTVERSION=	4.2.1
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rhurlin@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



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