Received: by mail.netbsd.org (Postfix, from userid 605) id 942D284D60; Sat, 1 Feb 2020 20:59:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1C7CE84D52 for ; Sat, 1 Feb 2020 20:59:26 +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 JQsX8RPXAtvK for ; Sat, 1 Feb 2020 20:59:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9243D84D3A for ; Sat, 1 Feb 2020 20:59:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8BC9AFBF4; Sat, 1 Feb 2020 20:59:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1580590765285340" MIME-Version: 1.0 Date: Sat, 1 Feb 2020 20:59:25 +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: <20200201205925.8BC9AFBF4@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. --_----------=_1580590765285340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Feb 1 20:59:25 UTC 2020 Modified Files: pkgsrc/devel/py-more-itertools: Makefile distinfo Log Message: py-more-itertools: updated to 8.2.0 8.2.0 * Bug fixes * The .pyi files for typing were updated. * Changes to existing itertools: * :func:`numeric_range` now behaves more like the built-in :func:`range`. * :func:`bucket` now allows for enumerating keys. * :func:`sliced` now should now work for numpy arrays. * :func:`seekable` now has a ``maxlen`` parameter. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-more-itertools/Makefile cvs rdiff -u -r1.11 -r1.12 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. --_----------=_1580590765285340 Content-Disposition: inline Content-Length: 2110 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.13 pkgsrc/devel/py-more-itertools/Makefile:1.14 --- pkgsrc/devel/py-more-itertools/Makefile:1.13 Tue Jan 14 22:42:18 2020 +++ pkgsrc/devel/py-more-itertools/Makefile Sat Feb 1 20:59:25 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2020/01/14 22:42:18 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2020/02/01 20:59:25 adam Exp $ -DISTNAME= more-itertools-8.1.0 +DISTNAME= more-itertools-8.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=m/more-itertools/} @@ -10,9 +10,9 @@ HOMEPAGE= https://github.com/erikrose/mo COMMENT= More routines for operating on iterables, beyond itertools LICENSE= mit -PYTHON_VERSIONS_INCOMPATIBLE= 27 - USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-more-itertools/distinfo diff -u pkgsrc/devel/py-more-itertools/distinfo:1.11 pkgsrc/devel/py-more-itertools/distinfo:1.12 --- pkgsrc/devel/py-more-itertools/distinfo:1.11 Tue Jan 14 22:42:18 2020 +++ pkgsrc/devel/py-more-itertools/distinfo Sat Feb 1 20:59:25 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2020/01/14 22:42:18 wiz Exp $ +$NetBSD: distinfo,v 1.12 2020/02/01 20:59:25 adam Exp $ -SHA1 (more-itertools-8.1.0.tar.gz) = 6671ee02017865c54bcef7b2f43e7fc1d74ebfc6 -RMD160 (more-itertools-8.1.0.tar.gz) = fe3010fc98cefc4ea25c313f944443509f3c9f1f -SHA512 (more-itertools-8.1.0.tar.gz) = 8428aa2388a0e29325a2a3a9af2a7892453047415e3f70bff4f4e91b996248665d1326c4341f9152aa95ccb45af3087f6aa238a3a4a0080f2f9004d7dae54c3d -Size (more-itertools-8.1.0.tar.gz) = 78953 bytes +SHA1 (more-itertools-8.2.0.tar.gz) = 8b3c5dc197da4c068e8bc6705862cd365136c818 +RMD160 (more-itertools-8.2.0.tar.gz) = d9ace6b38e1b02e205a88df54fefa3f2d2d88c49 +SHA512 (more-itertools-8.2.0.tar.gz) = 08b78a5a85a04296fad82857017ec2763250de0bd3159bc7bd8b23b54f90b363023b64e899e79603f2b4c8267d0bb2ed598d7e2910d541921252d66af656cba2 +Size (more-itertools-8.2.0.tar.gz) = 82785 bytes --_----------=_1580590765285340--