Received: by mail.netbsd.org (Postfix, from userid 605) id B741784D50; Sun, 15 Dec 2019 11:55:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3FEAB84D3F for ; Sun, 15 Dec 2019 11:55:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id YxXWTWUlaRRY for ; Sun, 15 Dec 2019 11:55:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9837584CEF for ; Sun, 15 Dec 2019 11:55:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 918FBFA97; Sun, 15 Dec 2019 11:55:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576410924148460" MIME-Version: 1.0 Date: Sun, 15 Dec 2019 11:55:24 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-more-itertools To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191215115524.918FBFA97@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. --_----------=_1576410924148460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Dec 15 11:55:24 UTC 2019 Modified Files: pkgsrc/devel/py-more-itertools: Makefile PLIST distinfo Log Message: py-more-itertools: updated to 8.0.2 8.0.2: Bug fixes * The type stub files are now part of the wheel distribution 8.0.1: Bug fixes * The type stub files now work for functions imported from the root package 8.0.0: New itertools and other additions * This library now ships type hints for use with mypy. * :func:`split_when` * :func:`repeat_last` Changes to existing itertools: * The implementation for :func:`set_partitions` was improved. * :func:`partition` was optimized for expensive predicates. * :func:`unique_everseen` and :func:`groupby_transform` were re-factored. * The implementation for :func:`difference` was improved. Other changes * Python 3.4 has reached its end of life and is no longer supported. * Python 3.8 is officially supported. * The collate function has been deprecated. It raises a DeprecationWarning if used, and will be removed in a future release. * :func:`one` and :func:`only` now provide more informative error messages. * Unit tests were moved outside of the main package * Various documentation fixes To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-more-itertools/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-more-itertools/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-more-itertools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576410924148460 Content-Disposition: inline Content-Length: 2958 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-more-itertools/Makefile diff -u pkgsrc/devel/py-more-itertools/Makefile:1.11 pkgsrc/devel/py-more-itertools/Makefile:1.12 --- pkgsrc/devel/py-more-itertools/Makefile:1.11 Fri Nov 15 14:22:30 2019 +++ pkgsrc/devel/py-more-itertools/Makefile Sun Dec 15 11:55:24 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2019/11/15 14:22:30 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2019/12/15 11:55:24 adam Exp $ -DISTNAME= more-itertools-7.2.0 +DISTNAME= more-itertools-8.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=m/more-itertools/} Index: pkgsrc/devel/py-more-itertools/PLIST diff -u pkgsrc/devel/py-more-itertools/PLIST:1.4 pkgsrc/devel/py-more-itertools/PLIST:1.5 --- pkgsrc/devel/py-more-itertools/PLIST:1.4 Fri Nov 15 14:22:30 2019 +++ pkgsrc/devel/py-more-itertools/PLIST Sun Dec 15 11:55:24 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2019/11/15 14:22:30 wiz Exp $ +@comment $NetBSD: PLIST,v 1.5 2019/12/15 11:55:24 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -12,12 +12,3 @@ ${PYSITELIB}/more_itertools/more.pyo ${PYSITELIB}/more_itertools/recipes.py ${PYSITELIB}/more_itertools/recipes.pyc ${PYSITELIB}/more_itertools/recipes.pyo -${PYSITELIB}/more_itertools/tests/__init__.py -${PYSITELIB}/more_itertools/tests/__init__.pyc -${PYSITELIB}/more_itertools/tests/__init__.pyo -${PYSITELIB}/more_itertools/tests/test_more.py -${PYSITELIB}/more_itertools/tests/test_more.pyc -${PYSITELIB}/more_itertools/tests/test_more.pyo -${PYSITELIB}/more_itertools/tests/test_recipes.py -${PYSITELIB}/more_itertools/tests/test_recipes.pyc -${PYSITELIB}/more_itertools/tests/test_recipes.pyo Index: pkgsrc/devel/py-more-itertools/distinfo diff -u pkgsrc/devel/py-more-itertools/distinfo:1.9 pkgsrc/devel/py-more-itertools/distinfo:1.10 --- pkgsrc/devel/py-more-itertools/distinfo:1.9 Fri Nov 15 14:22:30 2019 +++ pkgsrc/devel/py-more-itertools/distinfo Sun Dec 15 11:55:24 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2019/11/15 14:22:30 wiz Exp $ +$NetBSD: distinfo,v 1.10 2019/12/15 11:55:24 adam Exp $ -SHA1 (more-itertools-7.2.0.tar.gz) = 99d97115bb2fa07a9d253986c8c3172550042143 -RMD160 (more-itertools-7.2.0.tar.gz) = 6670cda718be6be8f3ed1c993341eeb91d8a7d0d -SHA512 (more-itertools-7.2.0.tar.gz) = 840b535bf5f2fc3cf9c4c0106f977f0b178049b95e5ccb6cf51b5e68d0a6afd77a577bb0d0af25ea8cdf4b7dd2ce9691754ba6c773a196f8b10dba5d7683c6b0 -Size (more-itertools-7.2.0.tar.gz) = 73429 bytes +SHA1 (more-itertools-8.0.2.tar.gz) = ff422d11455473b3153165b5485fe8e9a9408c2c +RMD160 (more-itertools-8.0.2.tar.gz) = 16be2faef97fe5bb78d9669050e86a5a94d3780d +SHA512 (more-itertools-8.0.2.tar.gz) = c309bfd988efb702c25c241ca76379e0be07e1fdfb9d648c257760ac76872fd1aa77b321d94c2af9be8fb9a6709b4c60a9e0e9eb7450757ee74046bb5f9101b4 +Size (more-itertools-8.0.2.tar.gz) = 77375 bytes --_----------=_1576410924148460--