Received: by mail.netbsd.org (Postfix, from userid 605) id 98AD984D82; Tue, 1 Sep 2020 04:05:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1E74C84D81 for ; Tue, 1 Sep 2020 04:05:28 +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 QKBLjo9QBdsD for ; Tue, 1 Sep 2020 04:05:27 +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 9E7EE84D80 for ; Tue, 1 Sep 2020 04:05:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 97439FB28; Tue, 1 Sep 2020 04:05:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1598933127116560" MIME-Version: 1.0 Date: Tue, 1 Sep 2020 04:05:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-setuptools44 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200901040527.97439FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1598933127116560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Sep 1 04:05:27 UTC 2020 Modified Files: pkgsrc/devel/py-setuptools44: Makefile Log Message: py-setuptools: mark as only for Python 2.x To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-setuptools44/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1598933127116560 Content-Disposition: inline Content-Length: 1536 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-setuptools44/Makefile diff -u pkgsrc/devel/py-setuptools44/Makefile:1.1 pkgsrc/devel/py-setuptools44/Makefile:1.2 --- pkgsrc/devel/py-setuptools44/Makefile:1.1 Mon Aug 31 23:04:03 2020 +++ pkgsrc/devel/py-setuptools44/Makefile Tue Sep 1 04:05:27 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2020/08/31 23:04:03 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2020/09/01 04:05:27 wiz Exp $ DISTNAME= setuptools-44.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,21 +13,18 @@ LICENSE= python-software-foundation OR z DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock +TEST_DEPENDS+= ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2 TEST_DEPENDS+= ${PYPKGPREFIX}-test-fixture-config-[0-9]*:../../devel/py-test-fixture-config TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner TEST_DEPENDS+= ${PYPKGPREFIX}-test-virtualenv-[0-9]*:../../devel/py-test-virtualenv TEST_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel -.include "../../lang/python/distutils.mk" -.if ${_PYTHON_VERSION:M3[6-9]} -TEST_DEPENDS+= ${PYPKGPREFIX}-paver-[0-9]*:../../lang/py-paver -.else -TEST_DEPENDS+= ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2 -.endif - REPLACE_PYTHON+= setuptools/command/easy_install.py +PYTHON_VERSIONS_ACCEPTED= 27 + PYSETUPTESTTARGET= pytest .include "../../lang/python/application.mk" +.include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1598933127116560--