Received: by mail.netbsd.org (Postfix, from userid 605) id 90CF384E80; Sun, 28 Jan 2024 20:20:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C346384E79 for ; Sun, 28 Jan 2024 20:20:44 +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 A8mIZ4Ywa-dU for ; Sun, 28 Jan 2024 20:20:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3E7A584D39 for ; Sun, 28 Jan 2024 20:20:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 34B74FA42; Sun, 28 Jan 2024 20:20:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706473244262410" MIME-Version: 1.0 Date: Sun, 28 Jan 2024 20:20:44 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/finance/py-eth-rlp To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240128202044.34B74FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706473244262410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jan 28 20:20:44 UTC 2024 Modified Files: pkgsrc/finance/py-eth-rlp: Makefile distinfo Log Message: py-eth-rlp: updated to 1.0.1 eth-rlp v1.0.1 (2024-01-25) Bugfixes Add the missing typing_extensions module requirement for Python <= 3.11 To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/finance/py-eth-rlp/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/finance/py-eth-rlp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706473244262410 Content-Disposition: inline Content-Length: 1887 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/py-eth-rlp/Makefile diff -u pkgsrc/finance/py-eth-rlp/Makefile:1.6 pkgsrc/finance/py-eth-rlp/Makefile:1.7 --- pkgsrc/finance/py-eth-rlp/Makefile:1.6 Thu Jan 11 10:09:16 2024 +++ pkgsrc/finance/py-eth-rlp/Makefile Sun Jan 28 20:20:43 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2024/01/11 10:09:16 adam Exp $ +# $NetBSD: Makefile,v 1.7 2024/01/28 20:20:43 adam Exp $ -DISTNAME= eth-rlp-1.0.0 +DISTNAME= eth-rlp-1.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= finance python MASTER_SITES= ${MASTER_SITE_PYPI:=e/eth-rlp/} @@ -20,5 +20,10 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 +.include "../../lang/python/pyversion.mk" +.if ${PYTHON_VERSION} < 311 +DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.0.1:../../devel/py-typing-extensions +.endif + .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/finance/py-eth-rlp/distinfo diff -u pkgsrc/finance/py-eth-rlp/distinfo:1.8 pkgsrc/finance/py-eth-rlp/distinfo:1.9 --- pkgsrc/finance/py-eth-rlp/distinfo:1.8 Thu Jan 11 10:09:16 2024 +++ pkgsrc/finance/py-eth-rlp/distinfo Sun Jan 28 20:20:43 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2024/01/11 10:09:16 adam Exp $ +$NetBSD: distinfo,v 1.9 2024/01/28 20:20:43 adam Exp $ -BLAKE2s (eth-rlp-1.0.0.tar.gz) = 5be4e52158e960e0590bc77afdf389b61bf3c0db7a06cdb2fae18292039c3e07 -SHA512 (eth-rlp-1.0.0.tar.gz) = 6c741834227f753135d49738bc20e0b403113c5f28ba08a75f99ed7a0f7f57773a1da3ff19a9504bf6a7db2f2a05bd6df713f1a43f638b5a9c3ba47983bac6fe -Size (eth-rlp-1.0.0.tar.gz) = 7205 bytes +BLAKE2s (eth-rlp-1.0.1.tar.gz) = 3bd477a91f2635795e576aa184416309f3347289125c755d06c42e3b0e4c88c1 +SHA512 (eth-rlp-1.0.1.tar.gz) = 2dec7e1b0dac4f6d0134b7702400b3b158f4ffee423c1887f404e6bd54147deb8657f4cd3bd65071d74563c5e790d76e629d2e511ad7b19cf241d227a2389a74 +Size (eth-rlp-1.0.1.tar.gz) = 7261 bytes --_----------=_1706473244262410--