Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 79CF484D3C for ; Fri, 10 Nov 2023 18:57:28 +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 wtYNR8kMN3x9 for ; Fri, 10 Nov 2023 18:57:28 +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 E8D8E84CD9 for ; Fri, 10 Nov 2023 18:57:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E25F6FA2F; Fri, 10 Nov 2023 18:57:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699642647137570" MIME-Version: 1.0 Date: Fri, 10 Nov 2023 18:57:27 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-hexbytes To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231110185727.E25F6FA2F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699642647137570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Nov 10 18:57:27 UTC 2023 Modified Files: pkgsrc/devel/py-hexbytes: Makefile PLIST Log Message: py-hexbytes: switch to wheel.mk To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-hexbytes/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-hexbytes/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699642647137570 Content-Disposition: inline Content-Length: 1937 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hexbytes/Makefile diff -u pkgsrc/devel/py-hexbytes/Makefile:1.6 pkgsrc/devel/py-hexbytes/Makefile:1.7 --- pkgsrc/devel/py-hexbytes/Makefile:1.6 Fri Nov 10 18:38:45 2023 +++ pkgsrc/devel/py-hexbytes/Makefile Fri Nov 10 18:57:27 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/11/10 18:38:45 adam Exp $ +# $NetBSD: Makefile,v 1.7 2023/11/10 18:57:27 adam Exp $ DISTNAME= hexbytes-1.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,9 +10,13 @@ HOMEPAGE= https://github.com/ethereum/he COMMENT= Python bytes subclass that decodes hex LICENSE= mit +TEST_DEPENDS+= ${PYPKGPREFIX}-eth-utils>=2.0.0:../../finance/py-eth-utils +TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=3.44.24:../../devel/py-hypothesis +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/devel/py-hexbytes/PLIST diff -u pkgsrc/devel/py-hexbytes/PLIST:1.2 pkgsrc/devel/py-hexbytes/PLIST:1.3 --- pkgsrc/devel/py-hexbytes/PLIST:1.2 Mon Sep 12 11:01:34 2022 +++ pkgsrc/devel/py-hexbytes/PLIST Fri Nov 10 18:57:27 2023 @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.2 2022/09/12 11:01:34 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.3 2023/11/10 18:57:27 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}/hexbytes/__init__.py ${PYSITELIB}/hexbytes/__init__.pyc ${PYSITELIB}/hexbytes/__init__.pyo --_----------=_1699642647137570--