Received: by mail.netbsd.org (Postfix, from userid 605) id E54A284FD2; Wed, 10 Jan 2024 20:29:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 222E384FCE for ; Wed, 10 Jan 2024 20:29: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 2kwk_mHV3mNY for ; Wed, 10 Jan 2024 20:29:14 +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 84A9F84E8D for ; Wed, 10 Jan 2024 20:29:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 759B2FA42; Wed, 10 Jan 2024 20:29:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704918554132650" MIME-Version: 1.0 Date: Wed, 10 Jan 2024 20:29:14 +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: <20240110202914.759B2FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1704918554132650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jan 10 20:29:14 UTC 2024 Modified Files: pkgsrc/devel/py-more-itertools: Makefile distinfo Log Message: py-more-itertools: updated to 10.2.0 10.2.0 ------ * New functions * :func:`iter_suppress` * :func:`filter_map` * :func:`classify_unique` * :func:`totient` (from the itertools docs) * :func:`reshape` (from the itertools docs) * Changes to existing functions * :func:`factor`, :func:`iter_index`, :func:`sieve`, and :func:`unique_justseen` were updated to match the itertools docs * :func:`first` was was optimized * :func:`takewhile_inclusive` was was refactored * :func:`combination_with_replacement_index` was was optimized * :func:`nth_permutation`, :func:`nth_combination_with_replacement`, :func:`combination_index`, and :func:`combination_with_replacement_index` were optimized * :func:`batched` now accepts a `strict` argument (adapted from itertools docs) * :func:`time_limited` was improved for Windows * Other changes * Several typing updates were made * Some documentation issues were fixed To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/py-more-itertools/Makefile cvs rdiff -u -r1.28 -r1.29 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. --_----------=_1704918554132650 Content-Disposition: inline Content-Length: 1720 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.30 pkgsrc/devel/py-more-itertools/Makefile:1.31 --- pkgsrc/devel/py-more-itertools/Makefile:1.30 Sat Oct 28 19:57:03 2023 +++ pkgsrc/devel/py-more-itertools/Makefile Wed Jan 10 20:29:14 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2023/10/28 19:57:03 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2024/01/10 20:29:14 adam Exp $ -DISTNAME= more-itertools-10.1.0 +DISTNAME= more-itertools-10.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 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.28 pkgsrc/devel/py-more-itertools/distinfo:1.29 --- pkgsrc/devel/py-more-itertools/distinfo:1.28 Thu Aug 24 20:04:05 2023 +++ pkgsrc/devel/py-more-itertools/distinfo Wed Jan 10 20:29:14 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.28 2023/08/24 20:04:05 wiz Exp $ +$NetBSD: distinfo,v 1.29 2024/01/10 20:29:14 adam Exp $ -BLAKE2s (more-itertools-10.1.0.tar.gz) = 30ea0227ba30cd5d11054c3469e8eb2f22eff476f634386d03869755e6e88ad6 -SHA512 (more-itertools-10.1.0.tar.gz) = 520cf4a5cfce314bb43a052962b478be27f0459735902c45384ad785cd678b493bab87f5736aa6be8d742911c4e8b02c597859428b1f459550b27f7751a53494 -Size (more-itertools-10.1.0.tar.gz) = 111235 bytes +BLAKE2s (more-itertools-10.2.0.tar.gz) = b1fee9b260374a0ab9c81f0c181be08b325997ccd0cdeca1da7cdab021d4859e +SHA512 (more-itertools-10.2.0.tar.gz) = 4357de86ca4e76d840825111cd6e19296af6394a6095c0cc28650f8e2abfe2cb45a24c34382532753652c506e5b261cf0d05d37c799434f5f7cfc8fa387d06f2 +Size (more-itertools-10.2.0.tar.gz) = 114449 bytes --_----------=_1704918554132650--