Received: by mail.netbsd.org (Postfix, from userid 605) id 22ED884EFF; Mon, 13 Sep 2021 08:39:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5E66484D1B for ; Mon, 13 Sep 2021 08:39:08 +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 fmZdIUmq70eX for ; Mon, 13 Sep 2021 08:39:07 +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 CBF2384CE0 for ; Mon, 13 Sep 2021 08:39:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BFF5BFA97; Mon, 13 Sep 2021 08:39:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163152234777880" MIME-Version: 1.0 Date: Mon, 13 Sep 2021 08:39:07 +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: <20210913083907.BFF5BFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163152234777880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Sep 13 08:39:07 UTC 2021 Modified Files: pkgsrc/devel/py-bitarray: Makefile distinfo Log Message: py-bitarray: updated to 2.3.4 2021-09-12 2.3.4: ------------------- * Fix `util.ba2int()` for frozenbitarrays. A bug was introduced in 2.3.0 as `.tobytes()` no longer treats pad bits for read-only buffers as zero. * add tests 2021-09-05 2.3.3: ------------------- * improve some error messages * add tests 2021-08-23 2.3.2: ------------------- * fix slice assignment for shared buffer with offset case * add tests (including internal debug mode tests for `buffers_overlap()`) 2021-08-20 2.3.1: ------------------- * fix special shared buffer copy case * add and improve tests To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-bitarray/Makefile \ pkgsrc/devel/py-bitarray/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163152234777880 Content-Disposition: inline Content-Length: 1675 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.11 pkgsrc/devel/py-bitarray/Makefile:1.12 --- pkgsrc/devel/py-bitarray/Makefile:1.11 Fri Aug 20 05:54:43 2021 +++ pkgsrc/devel/py-bitarray/Makefile Mon Sep 13 08:39:07 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2021/08/20 05:54:43 adam Exp $ +# $NetBSD: Makefile,v 1.12 2021/09/13 08:39:07 adam Exp $ -DISTNAME= bitarray-2.3.0 +DISTNAME= bitarray-2.3.4 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.11 pkgsrc/devel/py-bitarray/distinfo:1.12 --- pkgsrc/devel/py-bitarray/distinfo:1.11 Fri Aug 20 05:54:43 2021 +++ pkgsrc/devel/py-bitarray/distinfo Mon Sep 13 08:39:07 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2021/08/20 05:54:43 adam Exp $ +$NetBSD: distinfo,v 1.12 2021/09/13 08:39:07 adam Exp $ -SHA1 (bitarray-2.3.0.tar.gz) = c35d126df59d30826ad151bba96f9d539faa6957 -RMD160 (bitarray-2.3.0.tar.gz) = c3c3e3c3120b5d1e56617c497d1983c27bd67f99 -SHA512 (bitarray-2.3.0.tar.gz) = def184d941d86812b38d8f8f11e131b5c33b7b652136a55acac7d915a6eac6c9a25e90b506d6f6668027cfa96eeb9248fde910e796e0750db53e809c72a1d45a -Size (bitarray-2.3.0.tar.gz) = 87119 bytes +SHA1 (bitarray-2.3.4.tar.gz) = 4cf89e14bccf4a6b8ce83d442094f5a9cfbb9ada +RMD160 (bitarray-2.3.4.tar.gz) = 97947f38cdc8e01154c24bb6f92c1efa86b082cc +SHA512 (bitarray-2.3.4.tar.gz) = ba77ade534044bf19298c886958600cbf90c907ef08fbc70ad0975981942a213622a68a9c7e2708d89f19a8d127d6189cdcf365b27b0ae4c4f553b4febb3fcce +Size (bitarray-2.3.4.tar.gz) = 88229 bytes --_----------=_163152234777880--