From owner-svn-ports-all@freebsd.org Tue Jun 13 21:02:47 2017 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 99F85BFE823; Tue, 13 Jun 2017 21:02:47 +0000 (UTC) (envelope-from rene@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 73C90681C2; Tue, 13 Jun 2017 21:02:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5DL2kNn089163; Tue, 13 Jun 2017 21:02:46 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5DL2kZb089159; Tue, 13 Jun 2017 21:02:46 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201706132102.v5DL2kZb089159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Jun 2017 21:02:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443539 - in head/textproc: . py-stemming 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: Tue, 13 Jun 2017 21:02:47 -0000 Author: rene Date: Tue Jun 13 21:02:46 2017 New Revision: 443539 URL: https://svnweb.freebsd.org/changeset/ports/443539 Log: Python implementations of the Porter, Porter2, Paice-Husk, and Lovins stemming algorithms for English. These implementations are straightforward and efficient, unlike some Python versions of the same algorithms available on the Web. This package is an extraction of the stemming code included in the Whoosh search engine. Note that these are *pure Python* implementations. Python wrappers for, e.g. the Snoball stemmers and the C implementation of the Porter stemmer are available on PyPI and will be faster if using compiled code is an option for you. Stemming algorithms attempt to automatically remove suffixes (and in some cases prefixes) in order to find the "root word" or stem of a given word. This is useful in various natural language processing scenarios, such as search. In general ``porter2`` is the best overall stemming algorithm, but not necessarily the fastest or most aggressive. WWW: https://pypi.python.org/pypi/stemming Added: head/textproc/py-stemming/ head/textproc/py-stemming/Makefile (contents, props changed) head/textproc/py-stemming/distinfo (contents, props changed) head/textproc/py-stemming/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jun 13 20:37:06 2017 (r443538) +++ head/textproc/Makefile Tue Jun 13 21:02:46 2017 (r443539) @@ -1339,6 +1339,7 @@ SUBDIR += py-sphinxcontrib-fulltoc SUBDIR += py-sphinxcontrib-httpdomain SUBDIR += py-sphinxcontrib-programoutput + SUBDIR += py-stemming SUBDIR += py-syck SUBDIR += py-tabletext SUBDIR += py-terminaltables Added: head/textproc/py-stemming/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-stemming/Makefile Tue Jun 13 21:02:46 2017 (r443539) @@ -0,0 +1,20 @@ +# Created by: Rene Ladan +# $FreeBSD$ + +PORTNAME= stemming +PORTVERSION= 1.0.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rene@FreeBSD.org +COMMENT= Algorithms for stemming + +LICENSE= PD + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-stemming/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-stemming/distinfo Tue Jun 13 21:02:46 2017 (r443539) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497386383 +SHA256 (stemming-1.0.1.tar.gz) = 59678702e1d06caffecee82910f048edf12ad89dcf430776b4b05bfb8850bc51 +SIZE (stemming-1.0.1.tar.gz) = 10954 Added: head/textproc/py-stemming/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-stemming/pkg-descr Tue Jun 13 21:02:46 2017 (r443539) @@ -0,0 +1,19 @@ +Python implementations of the Porter, Porter2, Paice-Husk, and Lovins stemming +algorithms for English. These implementations are straightforward and +efficient, unlike some Python versions of the same algorithms available on the +Web. This package is an extraction of the stemming code included in the Whoosh +search engine. + +Note that these are *pure Python* implementations. Python wrappers for, e.g. +the Snoball stemmers and the C implementation of the Porter stemmer are +available on PyPI and will be faster if using compiled code is an option for +you. + +Stemming algorithms attempt to automatically remove suffixes (and in some +cases prefixes) in order to find the "root word" or stem of a given word. This +is useful in various natural language processing scenarios, such as search. + +In general ``porter2`` is the best overall stemming algorithm, but not +necessarily the fastest or most aggressive. + +WWW: https://pypi.python.org/pypi/stemming