Received: by mail.netbsd.org (Postfix, from userid 605) id 05E7684D41; Wed, 29 Jul 2020 07:25:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 83C1484D28 for ; Wed, 29 Jul 2020 07:25:38 +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 HAMoPzlJxxgD for ; Wed, 29 Jul 2020 07:25:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 08EB984CE7 for ; Wed, 29 Jul 2020 07:25:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 02C24FB28; Wed, 29 Jul 2020 07:25:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159600753714430" MIME-Version: 1.0 Date: Wed, 29 Jul 2020 07:25:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/py-asn1crypto To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200729072538.02C24FB28@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. --_----------=_159600753714430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Wed Jul 29 07:25:37 UTC 2020 Modified Files: pkgsrc/security/py-asn1crypto: Makefile distinfo Log Message: py-asn1crypto: updated to 1.4.0 1.4.0 - `core.ObjectIdentifier` and all derived classes now obey X.660 ยง7.6 and thus restrict the first arc to 0 to 2, and the second arc to less than 40 if the first arc is 0 or 1. This also fixes parsing of OIDs where the first arc is 2 and the second arc is greater than 39. - Fixed `keys.PublicKeyInfo.bit_size` to return an int rather than a float on Python 3 when working with elliptic curve keys - Fixed the `asn1crypto-tests` sdist on PyPi to work properly to generate a .whl To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/py-asn1crypto/Makefile \ pkgsrc/security/py-asn1crypto/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159600753714430 Content-Disposition: inline Content-Length: 1742 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-asn1crypto/Makefile diff -u pkgsrc/security/py-asn1crypto/Makefile:1.7 pkgsrc/security/py-asn1crypto/Makefile:1.8 --- pkgsrc/security/py-asn1crypto/Makefile:1.7 Wed Jan 8 11:37:49 2020 +++ pkgsrc/security/py-asn1crypto/Makefile Wed Jul 29 07:25:37 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2020/01/08 11:37:49 adam Exp $ +# $NetBSD: Makefile,v 1.8 2020/07/29 07:25:37 adam Exp $ -DISTNAME= asn1crypto-1.3.0 +DISTNAME= asn1crypto-1.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_PYPI:=a/asn1crypto/} Index: pkgsrc/security/py-asn1crypto/distinfo diff -u pkgsrc/security/py-asn1crypto/distinfo:1.7 pkgsrc/security/py-asn1crypto/distinfo:1.8 --- pkgsrc/security/py-asn1crypto/distinfo:1.7 Wed Jan 8 11:37:49 2020 +++ pkgsrc/security/py-asn1crypto/distinfo Wed Jul 29 07:25:37 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/01/08 11:37:49 adam Exp $ +$NetBSD: distinfo,v 1.8 2020/07/29 07:25:37 adam Exp $ -SHA1 (asn1crypto-1.3.0.tar.gz) = d7aadd7b873e51c389d300aee34947be2c0b7e68 -RMD160 (asn1crypto-1.3.0.tar.gz) = 05487fad97fb125d74ab4d403847a97282335403 -SHA512 (asn1crypto-1.3.0.tar.gz) = 5337e78cdb1ae93bed0ffc8a4a6743a5ae1d418a0f208a45db01ed628d22af3c4be1bdd121638608883e80858629ed13be8290e5e6a38f9bbd92cc178614d7bf -Size (asn1crypto-1.3.0.tar.gz) = 118481 bytes +SHA1 (asn1crypto-1.4.0.tar.gz) = dc957cec576a75a7d915b1c01ca0337736d98c1c +RMD160 (asn1crypto-1.4.0.tar.gz) = 4473f3cedbffcf83d33bb9f23eb5102d58ce47d7 +SHA512 (asn1crypto-1.4.0.tar.gz) = 4dc8d4ae3c632811a8d6008d8f458671e10a12034d9906ec67f1156a92621bf4f46abdb32609b433ef976c0c74ad3f4a082bfab6010c85dce886aa8b7efa2164 +Size (asn1crypto-1.4.0.tar.gz) = 118733 bytes --_----------=_159600753714430--