svn commit: r429533 - in head/misc: . py-fuzzy

Wen Heping wen at FreeBSD.org
Mon Dec 26 15:18:09 UTC 2016


Author: wen
Date: Mon Dec 26 15:18:08 2016
New Revision: 429533
URL: https://svnweb.freebsd.org/changeset/ports/429533

Log:
  Fuzzy is a python library implementing common phonetic algorithms quickly.
  Typically this is in string similarity exercises, but they're pretty versatile.
  The algorithms are:
  * Soundex
  * NYSIIS
  * Double Metaphone Based on Maurice Aubrey's C code from his perl
    implementation.
  
  WWW: https://pypi.python.org/pypi/Fuzzy
  
  PR:		215462
  Submitted by:	yuri at rawbw.com

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

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Mon Dec 26 15:14:42 2016	(r429532)
+++ head/misc/Makefile	Mon Dec 26 15:18:08 2016	(r429533)
@@ -371,6 +371,7 @@
     SUBDIR += proxyper
     SUBDIR += pspresent
     SUBDIR += py-YABT
+    SUBDIR += py-fuzzy
     SUBDIR += py-glance
     SUBDIR += py-osd
     SUBDIR += py-pexpect

Added: head/misc/py-fuzzy/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-fuzzy/Makefile	Mon Dec 26 15:18:08 2016	(r429533)
@@ -0,0 +1,21 @@
+# Created by: Yuri Victorovich <yuri at rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	Fuzzy
+PORTVERSION=	1.1
+CATEGORIES=	misc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at rawbw.com
+COMMENT=	Fast Python phonetic algorithms
+
+LICENSE=	MIT ART20
+LICENSE_COMB=	multi
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/misc/py-fuzzy/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-fuzzy/distinfo	Mon Dec 26 15:18:08 2016	(r429533)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1482306437
+SHA256 (Fuzzy-1.1.tar.gz) = 57863b9e9aacf82a0b8530ff3b1435cd9b83fe7e526f358eacc366a35eb0cdff
+SIZE (Fuzzy-1.1.tar.gz) = 20006

Added: head/misc/py-fuzzy/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-fuzzy/pkg-descr	Mon Dec 26 15:18:08 2016	(r429533)
@@ -0,0 +1,9 @@
+Fuzzy is a python library implementing common phonetic algorithms quickly.
+Typically this is in string similarity exercises, but they're pretty versatile.
+The algorithms are:
+* Soundex
+* NYSIIS
+* Double Metaphone Based on Maurice Aubrey's C code from his perl
+  implementation.
+
+WWW: https://pypi.python.org/pypi/Fuzzy


More information about the svn-ports-head mailing list