Received: by mail.netbsd.org (Postfix, from userid 605) id 7B4D78502E; Thu, 11 Jan 2024 10:01:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ABD6284E79 for ; Thu, 11 Jan 2024 10:01:55 +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 BNckECMKLG4b for ; Thu, 11 Jan 2024 10:01:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0B90884CD8 for ; Thu, 11 Jan 2024 10:01:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 03CBAFA42; Thu, 11 Jan 2024 10:01:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170496731498850" MIME-Version: 1.0 Date: Thu, 11 Jan 2024 10:01:54 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/finance/py-eth-hash To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240111100155.03CBAFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170496731498850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jan 11 10:01:54 UTC 2024 Modified Files: pkgsrc/finance/py-eth-hash: Makefile PLIST distinfo Log Message: py-eth-hash: updated to 0.6.0 eth-hash v0.6.0 (2024-01-10) Breaking Changes Drop python 3.7 support Internal Changes - for eth-hash Contributors Merge project template updates, notably use pre-commit for linting and change the name of master branch to main Correct booleans in pyproject.toml and add test for presence of eth_hash.__version__ attribute To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/finance/py-eth-hash/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/finance/py-eth-hash/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/finance/py-eth-hash/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170496731498850 Content-Disposition: inline Content-Length: 3217 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/py-eth-hash/Makefile diff -u pkgsrc/finance/py-eth-hash/Makefile:1.12 pkgsrc/finance/py-eth-hash/Makefile:1.13 --- pkgsrc/finance/py-eth-hash/Makefile:1.12 Thu Jun 8 10:23:14 2023 +++ pkgsrc/finance/py-eth-hash/Makefile Thu Jan 11 10:01:54 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2023/06/08 10:23:14 adam Exp $ +# $NetBSD: Makefile,v 1.13 2024/01/11 10:01:54 adam Exp $ -DISTNAME= eth-hash-0.5.2 +DISTNAME= eth-hash-0.6.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= finance python MASTER_SITES= ${MASTER_SITE_PYPI:=e/eth-hash/} @@ -10,13 +10,15 @@ HOMEPAGE= https://github.com/ethereum/et COMMENT= Ethereum keccak256 hashing function LICENSE= mit +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +# pycryptodome DEPENDS+= ${PYPKGPREFIX}-cryptodome>=3.6.6:../../security/py-cryptodome -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=7.0.0:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=2.4.0:../../devel/py-test-xdist USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/finance/py-eth-hash/PLIST diff -u pkgsrc/finance/py-eth-hash/PLIST:1.3 pkgsrc/finance/py-eth-hash/PLIST:1.4 --- pkgsrc/finance/py-eth-hash/PLIST:1.3 Tue Jul 12 07:25:32 2022 +++ pkgsrc/finance/py-eth-hash/PLIST Thu Jan 11 10:01:54 2024 @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.3 2022/07/12 07:25:32 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.4 2024/01/11 10:01:54 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/eth_hash/__init__.py ${PYSITELIB}/eth_hash/__init__.pyc ${PYSITELIB}/eth_hash/__init__.pyo Index: pkgsrc/finance/py-eth-hash/distinfo diff -u pkgsrc/finance/py-eth-hash/distinfo:1.11 pkgsrc/finance/py-eth-hash/distinfo:1.12 --- pkgsrc/finance/py-eth-hash/distinfo:1.11 Thu Jun 8 10:23:14 2023 +++ pkgsrc/finance/py-eth-hash/distinfo Thu Jan 11 10:01:54 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.11 2023/06/08 10:23:14 adam Exp $ +$NetBSD: distinfo,v 1.12 2024/01/11 10:01:54 adam Exp $ -BLAKE2s (eth-hash-0.5.2.tar.gz) = e71670acb3e820dee96d57113e5767fd75a64485705fc63ac47fd7750b197df7 -SHA512 (eth-hash-0.5.2.tar.gz) = 9e74fb08a35e7c26440d459f021cf886ca01f4aa4d435e735a0b965ee004feb271db15a0da85eecde87e62a92b9c0738aee3a49a75cf6c5f0af575ff45383492 -Size (eth-hash-0.5.2.tar.gz) = 11009 bytes +BLAKE2s (eth-hash-0.6.0.tar.gz) = e4fd015a443174d28ff6d3ee8c81fcaf6446f98ab83e025f1f7e6467a3e683c4 +SHA512 (eth-hash-0.6.0.tar.gz) = a8111dd30489ed04202298d6f194708631f33ad07d1b1a4ec365309bffbac77f2baaff24a8903b5bc895508bf5c684da079cb7bf65e9dc4be3efef5a8131b814 +Size (eth-hash-0.6.0.tar.gz) = 12478 bytes --_----------=_170496731498850--