Received: by mail.netbsd.org (Postfix, from userid 605) id 86C4B84E7E; Mon, 13 Feb 2023 10:44:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B68DB84E7B for ; Mon, 13 Feb 2023 10:44:14 +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 5RD4zCU-hdfn for ; Mon, 13 Feb 2023 10:44:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 34F5384D66 for ; Mon, 13 Feb 2023 10:44:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 32665FA90; Mon, 13 Feb 2023 10:44:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167628505413140" MIME-Version: 1.0 Date: Mon, 13 Feb 2023 10:44:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-bitarray To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230213104414.32665FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167628505413140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Feb 13 10:44:14 UTC 2023 Modified Files: pkgsrc/devel/py-bitarray: Makefile distinfo Log Message: py-bitarray: updated to 2.7.2 2.7.2: * speedup all count functionality by using `__builtin_popcountll` when available * add `popcount64()` to `bitarray.h` - we assume now that `uint64_t` is always available * improve testing 2.7.1: * optimize `util.sc_encode()` To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/py-bitarray/Makefile cvs rdiff -u -r1.24 -r1.25 pkgsrc/devel/py-bitarray/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167628505413140 Content-Disposition: inline Content-Length: 1582 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-bitarray/Makefile diff -u pkgsrc/devel/py-bitarray/Makefile:1.23 pkgsrc/devel/py-bitarray/Makefile:1.24 --- pkgsrc/devel/py-bitarray/Makefile:1.23 Wed Feb 8 10:25:42 2023 +++ pkgsrc/devel/py-bitarray/Makefile Mon Feb 13 10:44:14 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2023/02/08 10:25:42 adam Exp $ +# $NetBSD: Makefile,v 1.24 2023/02/13 10:44:14 adam Exp $ -DISTNAME= bitarray-2.7.0 +DISTNAME= bitarray-2.7.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=b/bitarray/} Index: pkgsrc/devel/py-bitarray/distinfo diff -u pkgsrc/devel/py-bitarray/distinfo:1.24 pkgsrc/devel/py-bitarray/distinfo:1.25 --- pkgsrc/devel/py-bitarray/distinfo:1.24 Wed Feb 8 10:25:42 2023 +++ pkgsrc/devel/py-bitarray/distinfo Mon Feb 13 10:44:14 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.24 2023/02/08 10:25:42 adam Exp $ +$NetBSD: distinfo,v 1.25 2023/02/13 10:44:14 adam Exp $ -BLAKE2s (bitarray-2.7.0.tar.gz) = d83c24100540b9f19feff00df7526cc3f77c3c29a758c63456689ebc34a586a3 -SHA512 (bitarray-2.7.0.tar.gz) = 762628d3b24315619176bf7ceaef95ba83fc87bb49c0daa23503fcb5dd54d447b4950b75b4923fbeaace2ee8a3037f228184ca5978fc8c782eb9eb3e7dd65d8d -Size (bitarray-2.7.0.tar.gz) = 120536 bytes +BLAKE2s (bitarray-2.7.2.tar.gz) = 8b4bc6cde056e12ec9cb98a6705237ef433e8341354e9e6ad5cfc16004fb4ddb +SHA512 (bitarray-2.7.2.tar.gz) = 42bf4d43fefcf5d8500a004c83261b533c2e4ed486c3fa79256b99b8a0ce00873357621edf9270ce2c7ec704242ca96226e33285d9620f01aa5175d5d7cba00c +Size (bitarray-2.7.2.tar.gz) = 121846 bytes --_----------=_167628505413140--