Received: by mail.netbsd.org (Postfix, from userid 605) id DD6BF84EA3; Mon, 12 Sep 2022 11:04:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2184384D5B for ; Mon, 12 Sep 2022 11:04:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id sYas51EErvLB for ; Mon, 12 Sep 2022 11:04:18 +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 6F8D784CD9 for ; Mon, 12 Sep 2022 11:04:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 63583FA90; Mon, 12 Sep 2022 11:04:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1662980658140100" MIME-Version: 1.0 Date: Mon, 12 Sep 2022 11:04:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/finance/py-eth-account To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220912110418.63583FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1662980658140100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Sep 12 11:04:18 UTC 2022 Modified Files: pkgsrc/finance/py-eth-account: Makefile PLIST distinfo Log Message: py-eth-account: updated to 0.7.0 eth-account v0.7.0 (2022-08-17) Bugfixes bump ansi-regex to 5.0.1 to fix minor ReDos vulnerability Enable lint runs again on CI fix DoS-able regex pattern Allow towncrier to build the release notes again Improved Documentation Add example to generate multiple accounts from a mnemonic Pin Jinja2 at >=3.0.0,<3.1.0; pin towncrier==18.5.0; open up Sphinx requirement to allow >=1.6.5,<5. added missing quotes to readme dev environment setup example Breaking changes Change bitarray dependency requirement to be >=2.4,<3 since 2.4 has wheels for all platform types. Fix errors in EIP-712 signing To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/finance/py-eth-account/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/finance/py-eth-account/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/finance/py-eth-account/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1662980658140100 Content-Disposition: inline Content-Length: 3026 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/py-eth-account/Makefile diff -u pkgsrc/finance/py-eth-account/Makefile:1.8 pkgsrc/finance/py-eth-account/Makefile:1.9 --- pkgsrc/finance/py-eth-account/Makefile:1.8 Tue Jul 12 07:37:53 2022 +++ pkgsrc/finance/py-eth-account/Makefile Mon Sep 12 11:04:18 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2022/07/12 07:37:53 adam Exp $ +# $NetBSD: Makefile,v 1.9 2022/09/12 11:04:18 adam Exp $ -DISTNAME= eth-account-0.6.1 +DISTNAME= eth-account-0.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= finance python MASTER_SITES= ${MASTER_SITE_PYPI:=e/eth-account/} @@ -10,7 +10,7 @@ HOMEPAGE= https://github.com/ethereum/et COMMENT= Sign Ethereum transactions and messages with local private keys LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-bitarray>=1.2.1:../../devel/py-bitarray +DEPENDS+= ${PYPKGPREFIX}-bitarray>=2.4.0:../../devel/py-bitarray DEPENDS+= ${PYPKGPREFIX}-eth-abi>=3.0.0:../../finance/py-eth-abi DEPENDS+= ${PYPKGPREFIX}-eth-keyfile>=0.6.0:../../finance/py-eth-keyfile DEPENDS+= ${PYPKGPREFIX}-eth-keys>=0.4.0:../../finance/py-eth-keys Index: pkgsrc/finance/py-eth-account/PLIST diff -u pkgsrc/finance/py-eth-account/PLIST:1.3 pkgsrc/finance/py-eth-account/PLIST:1.4 --- pkgsrc/finance/py-eth-account/PLIST:1.3 Mon Oct 4 09:01:19 2021 +++ pkgsrc/finance/py-eth-account/PLIST Mon Sep 12 11:04:18 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2021/10/04 09:01:19 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2022/09/12 11:04:18 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -65,6 +65,7 @@ ${PYSITELIB}/eth_account/hdaccount/wordl ${PYSITELIB}/eth_account/messages.py ${PYSITELIB}/eth_account/messages.pyc ${PYSITELIB}/eth_account/messages.pyo +${PYSITELIB}/eth_account/py.typed ${PYSITELIB}/eth_account/signers/__init__.py ${PYSITELIB}/eth_account/signers/__init__.pyc ${PYSITELIB}/eth_account/signers/__init__.pyo Index: pkgsrc/finance/py-eth-account/distinfo diff -u pkgsrc/finance/py-eth-account/distinfo:1.6 pkgsrc/finance/py-eth-account/distinfo:1.7 --- pkgsrc/finance/py-eth-account/distinfo:1.6 Tue Jul 12 07:37:53 2022 +++ pkgsrc/finance/py-eth-account/distinfo Mon Sep 12 11:04:18 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2022/07/12 07:37:53 adam Exp $ +$NetBSD: distinfo,v 1.7 2022/09/12 11:04:18 adam Exp $ -BLAKE2s (eth-account-0.6.1.tar.gz) = 179fb72f05b457865540c3189f0bd15cf9c643e49eb8b78d3baf7cd260bc271a -SHA512 (eth-account-0.6.1.tar.gz) = 9eb5879c3b1a4bd8dae1cedebd5ff13769127391ee9d1e1b4afa48637ee9d0d9a873602149c980864a341c3a669144c5a59f07aa67796cf936c61780ceb258da -Size (eth-account-0.6.1.tar.gz) = 3938053 bytes +BLAKE2s (eth-account-0.7.0.tar.gz) = 01c849850e48470bbd7ad74697ca21094cd1f59b744e71756fbc4bb42303ebe0 +SHA512 (eth-account-0.7.0.tar.gz) = 575582a3e588d7f5b947edc2c674725b5f4c06e70d54942db86b4772742a413385e83040ae3ba9c0d868d78bb58e9a87ab19c555be016336b7eeeea41650c775 +Size (eth-account-0.7.0.tar.gz) = 960377 bytes --_----------=_1662980658140100--