Received: by mail.netbsd.org (Postfix, from userid 605) id 3308184E8A; Thu, 17 Nov 2022 09:19:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 62FB284D24 for ; Thu, 17 Nov 2022 09:19:21 +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 fuzl-qdIM_rh for ; Thu, 17 Nov 2022 09:19:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C9D7F84CFD for ; Thu, 17 Nov 2022 09:19:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BDA0DFA90; Thu, 17 Nov 2022 09:19:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166867676068960" MIME-Version: 1.0 Date: Thu, 17 Nov 2022 09:19:20 +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: <20221117091920.BDA0DFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166867676068960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Nov 17 09:19:20 UTC 2022 Modified Files: pkgsrc/devel/py-more-itertools: Makefile distinfo Log Message: py-more-itertools: updated to 9.0.0 9.0.0 ------ * Potentially breaking changes * :func:`grouper` no longer accepts an integer as its first argument. Previously this raised a ``DeprecationWarning``. * :func:`collate` has been removed. Use the built-in :func:`heapq.merge` instead. * :func:`windowed` now yields nothing when its iterable is empty. * This library now advertises support for Python 3.7+. * New functions * :func:`constrained_batches` * :func:`batched` (from the Python itertools docs) * :func:`polynomial_from_roots` (from the Python itertools docs) * :func:`sieve` (from the Python itertools docs) * Other changes * Some documentation issues were fixed (thanks to nanouasyn) To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/py-more-itertools/Makefile cvs rdiff -u -r1.25 -r1.26 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. --_----------=_166867676068960 Content-Disposition: inline Content-Length: 1700 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.26 pkgsrc/devel/py-more-itertools/Makefile:1.27 --- pkgsrc/devel/py-more-itertools/Makefile:1.26 Wed Aug 10 11:45:02 2022 +++ pkgsrc/devel/py-more-itertools/Makefile Thu Nov 17 09:19:20 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2022/08/10 11:45:02 adam Exp $ +# $NetBSD: Makefile,v 1.27 2022/11/17 09:19:20 adam Exp $ -DISTNAME= more-itertools-8.14.0 +DISTNAME= more-itertools-9.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=m/more-itertools/} Index: pkgsrc/devel/py-more-itertools/distinfo diff -u pkgsrc/devel/py-more-itertools/distinfo:1.25 pkgsrc/devel/py-more-itertools/distinfo:1.26 --- pkgsrc/devel/py-more-itertools/distinfo:1.25 Wed Aug 10 11:45:02 2022 +++ pkgsrc/devel/py-more-itertools/distinfo Thu Nov 17 09:19:20 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.25 2022/08/10 11:45:02 adam Exp $ +$NetBSD: distinfo,v 1.26 2022/11/17 09:19:20 adam Exp $ -BLAKE2s (more-itertools-8.14.0.tar.gz) = 9b6869eaca0741a8e973f759a67d3dacbfc13cec7c73a1a6e2ab06a9fb51fea5 -SHA512 (more-itertools-8.14.0.tar.gz) = a85ad9359ddd65caa81b743ff342c3917420d57ffc53b130eaa2d049fc90b55e0e00f12c878b49eb5f882b62e3a3b2a4ea04677c4e959958eab89aa5dd26eb0d -Size (more-itertools-8.14.0.tar.gz) = 102642 bytes +BLAKE2s (more-itertools-9.0.0.tar.gz) = d25be694c6d154bfb352576e568675cca96fcce4141511e654c0d25d6a4e06c8 +SHA512 (more-itertools-9.0.0.tar.gz) = a1e73a7a3e4530d070d639baa01c08d91ca11cdab6fec36131764001c2b78f1649e19ddf78ee3c1295f2f9d9951ea7483a4fd1f7c12d5655c3b696db7de35c1e +Size (more-itertools-9.0.0.tar.gz) = 104237 bytes --_----------=_166867676068960--