From owner-svn-ports-all@freebsd.org Mon Dec 26 15:18:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98C41C91FC3; Mon, 26 Dec 2016 15:18:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 596AC1DE4; Mon, 26 Dec 2016 15:18:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBQFI85W062760; Mon, 26 Dec 2016 15:18:08 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBQFI8xT062756; Mon, 26 Dec 2016 15:18:08 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201612261518.uBQFI8xT062756@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 26 Dec 2016 15:18:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429533 - in head/misc: . py-fuzzy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2016 15:18:09 -0000 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@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 +# $FreeBSD$ + +PORTNAME= Fuzzy +PORTVERSION= 1.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@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 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