Received: by mail.netbsd.org (Postfix, from userid 605) id D6FB184DC0; Sat, 7 Sep 2019 07:22:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A6F284DBF for ; Sat, 7 Sep 2019 07:22:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id AqA8Ro6LJ2yZ for ; Sat, 7 Sep 2019 07:22:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B73F184DB5 for ; Sat, 7 Sep 2019 07:22:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ABE2EFBF4; Sat, 7 Sep 2019 07:22:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1567840934138110" MIME-Version: 1.0 Date: Sat, 7 Sep 2019 07:22:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-snowballstemmer To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190907072214.ABE2EFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1567840934138110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Sep 7 07:22:14 UTC 2019 Modified Files: pkgsrc/textproc/py-snowballstemmer: Makefile PLIST distinfo Log Message: py-snowballstemmer: updated to 1.9.1 snowballstemmer 1.9.1: * Added Hindi stemmer. * Added Basque and Catalan stemmers. * Improved Greek stemmer. * Various Python code improvements. * Fixed AttributeError when clearing cache. * The tarball now includes a COPYING file. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/py-snowballstemmer/Makefile \ pkgsrc/textproc/py-snowballstemmer/PLIST \ pkgsrc/textproc/py-snowballstemmer/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1567840934138110 Content-Disposition: inline Content-Length: 3524 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-snowballstemmer/Makefile diff -u pkgsrc/textproc/py-snowballstemmer/Makefile:1.2 pkgsrc/textproc/py-snowballstemmer/Makefile:1.3 --- pkgsrc/textproc/py-snowballstemmer/Makefile:1.2 Sun Aug 25 12:35:50 2019 +++ pkgsrc/textproc/py-snowballstemmer/Makefile Sat Sep 7 07:22:14 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2019/08/25 12:35:50 adam Exp $ +# $NetBSD: Makefile,v 1.3 2019/09/07 07:22:14 adam Exp $ -DISTNAME= snowballstemmer-1.9.0 +DISTNAME= snowballstemmer-1.9.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=s/snowballstemmer/} Index: pkgsrc/textproc/py-snowballstemmer/PLIST diff -u pkgsrc/textproc/py-snowballstemmer/PLIST:1.2 pkgsrc/textproc/py-snowballstemmer/PLIST:1.3 --- pkgsrc/textproc/py-snowballstemmer/PLIST:1.2 Sun Aug 25 12:35:50 2019 +++ pkgsrc/textproc/py-snowballstemmer/PLIST Sat Sep 7 07:22:14 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/08/25 12:35:50 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2019/09/07 07:22:14 adam Exp $ ${PYSITELIB}/${EGG_FILE} ${PYSITELIB}/snowballstemmer/__init__.py ${PYSITELIB}/snowballstemmer/__init__.pyc @@ -12,6 +12,12 @@ ${PYSITELIB}/snowballstemmer/arabic_stem ${PYSITELIB}/snowballstemmer/basestemmer.py ${PYSITELIB}/snowballstemmer/basestemmer.pyc ${PYSITELIB}/snowballstemmer/basestemmer.pyo +${PYSITELIB}/snowballstemmer/basque_stemmer.py +${PYSITELIB}/snowballstemmer/basque_stemmer.pyc +${PYSITELIB}/snowballstemmer/basque_stemmer.pyo +${PYSITELIB}/snowballstemmer/catalan_stemmer.py +${PYSITELIB}/snowballstemmer/catalan_stemmer.pyc +${PYSITELIB}/snowballstemmer/catalan_stemmer.pyo ${PYSITELIB}/snowballstemmer/danish_stemmer.py ${PYSITELIB}/snowballstemmer/danish_stemmer.pyc ${PYSITELIB}/snowballstemmer/danish_stemmer.pyo @@ -33,6 +39,9 @@ ${PYSITELIB}/snowballstemmer/german_stem ${PYSITELIB}/snowballstemmer/greek_stemmer.py ${PYSITELIB}/snowballstemmer/greek_stemmer.pyc ${PYSITELIB}/snowballstemmer/greek_stemmer.pyo +${PYSITELIB}/snowballstemmer/hindi_stemmer.py +${PYSITELIB}/snowballstemmer/hindi_stemmer.pyc +${PYSITELIB}/snowballstemmer/hindi_stemmer.pyo ${PYSITELIB}/snowballstemmer/hungarian_stemmer.py ${PYSITELIB}/snowballstemmer/hungarian_stemmer.pyc ${PYSITELIB}/snowballstemmer/hungarian_stemmer.pyo Index: pkgsrc/textproc/py-snowballstemmer/distinfo diff -u pkgsrc/textproc/py-snowballstemmer/distinfo:1.2 pkgsrc/textproc/py-snowballstemmer/distinfo:1.3 --- pkgsrc/textproc/py-snowballstemmer/distinfo:1.2 Sun Aug 25 12:35:50 2019 +++ pkgsrc/textproc/py-snowballstemmer/distinfo Sat Sep 7 07:22:14 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/08/25 12:35:50 adam Exp $ +$NetBSD: distinfo,v 1.3 2019/09/07 07:22:14 adam Exp $ -SHA1 (snowballstemmer-1.9.0.tar.gz) = f4d9a9b072cc6cdaa80ecf2f037e8b8ab2b76425 -RMD160 (snowballstemmer-1.9.0.tar.gz) = 32470e6eec372f61106a0fd9421836d0bbcbe274 -SHA512 (snowballstemmer-1.9.0.tar.gz) = 7af4963ffb88477f64bd477bf4ea958cf9b7613393f01ea873f4a8e1891d1f331c288e59632b271dd5b53b604c8291780990600ccf22aed1d2151809cd8608df -Size (snowballstemmer-1.9.0.tar.gz) = 76910 bytes +SHA1 (snowballstemmer-1.9.1.tar.gz) = 079516d1b04c685fa0490871ee03c9a3150e464f +RMD160 (snowballstemmer-1.9.1.tar.gz) = 2c422c29ab852cbe33729fb1f27960a0dcd8d130 +SHA512 (snowballstemmer-1.9.1.tar.gz) = 014cad553ce5be67e614f51a6023e1673c34ee6cdaad7de872aadad385c3ab5599cc06fa7449819da5f61a91ea45eab8fcf85315a2c2b89979edb70c7d29501b +Size (snowballstemmer-1.9.1.tar.gz) = 82045 bytes --_----------=_1567840934138110--