Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 29AD985A85 for ; Wed, 25 Oct 2023 22:21:39 +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 xd9AR0PzzyTi for ; Wed, 25 Oct 2023 22:21:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9658B84E59 for ; Wed, 25 Oct 2023 22:21:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 939CDFADC; Wed, 25 Oct 2023 22:21:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1698272498216030" MIME-Version: 1.0 Date: Wed, 25 Oct 2023 22:21:38 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/misc/py-installer To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231025222138.939CDFADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1698272498216030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Oct 25 22:21:38 UTC 2023 Modified Files: pkgsrc/misc/py-installer: Makefile PLIST Log Message: py-installer: use python/bootstrap.mk To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/misc/py-installer/Makefile \ pkgsrc/misc/py-installer/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1698272498216030 Content-Disposition: inline Content-Length: 2298 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/py-installer/Makefile diff -u pkgsrc/misc/py-installer/Makefile:1.2 pkgsrc/misc/py-installer/Makefile:1.3 --- pkgsrc/misc/py-installer/Makefile:1.2 Wed Oct 25 22:01:57 2023 +++ pkgsrc/misc/py-installer/Makefile Wed Oct 25 22:21:38 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2023/10/25 22:01:57 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2023/10/25 22:21:38 wiz Exp $ DISTNAME= installer-0.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,6 @@ HOMEPAGE= https://github.com/pypa/instal COMMENT= Library for installing Python wheels LICENSE= mit -TOOL_DEPENDS+= ${PYPKGPREFIX}-flit_core>=3.2.0:../../devel/py-flit_core TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist @@ -20,17 +19,13 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -PY_PATCHPLIST= yes INSTALL_ENV+= PYTHONPATH=${WRKSRC}/src -do-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHONBIN} -m flit_core.wheel - do-install: cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ${PYTHONBIN} -m installer --destdir ${DESTDIR} --prefix ${PREFIX} dist/*.whl do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests -.include "../../lang/python/extension.mk" +.include "../../lang/python/bootstrap.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/misc/py-installer/PLIST diff -u pkgsrc/misc/py-installer/PLIST:1.2 pkgsrc/misc/py-installer/PLIST:1.3 --- pkgsrc/misc/py-installer/PLIST:1.2 Wed Oct 25 22:01:57 2023 +++ pkgsrc/misc/py-installer/PLIST Wed Oct 25 22:21:38 2023 @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.2 2023/10/25 22:01:57 wiz Exp $ -${PYSITELIB}/installer-${PKGVERSION}.dist-info/LICENSE -${PYSITELIB}/installer-${PKGVERSION}.dist-info/METADATA -${PYSITELIB}/installer-${PKGVERSION}.dist-info/RECORD -${PYSITELIB}/installer-${PKGVERSION}.dist-info/WHEEL +@comment $NetBSD: PLIST,v 1.3 2023/10/25 22:21:38 wiz Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL ${PYSITELIB}/installer/__init__.py ${PYSITELIB}/installer/__init__.pyc ${PYSITELIB}/installer/__init__.pyo --_----------=_1698272498216030--