Received: by mail.netbsd.org (Postfix, from userid 605) id 5F32B84D64; Tue, 29 Oct 2019 22:27:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DA25B84D4E for ; Tue, 29 Oct 2019 22:27:30 +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 kU0hP2G4Bdrj for ; Tue, 29 Oct 2019 22:27:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 30AC584D33 for ; Tue, 29 Oct 2019 22:27:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 23C53FA8E; Tue, 29 Oct 2019 22:27:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572388050227470" MIME-Version: 1.0 Date: Tue, 29 Oct 2019 22:27:30 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/devel/py-test5 To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20191029222730.23C53FA8E@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. --_----------=_1572388050227470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Tue Oct 29 22:27:30 UTC 2019 Modified Files: pkgsrc/devel/py-test5: Makefile Log Message: py-test5: build fix for (non-standard) PYTHON_VERSION_DEFAULT=27 Move PYTHON_VERSIONS_INCOMPATIBLE before the inclusion of pyversion.mk, so it's picked up when needed. (This should address bulk build failures noted in mef@'s NetBSD 9-BETA builds, where apparently PYTHON_VERSION_DEFAULT has been set to "27".) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-test5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572388050227470 Content-Disposition: inline Content-Length: 1030 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test5/Makefile diff -u pkgsrc/devel/py-test5/Makefile:1.2 pkgsrc/devel/py-test5/Makefile:1.3 --- pkgsrc/devel/py-test5/Makefile:1.2 Fri Oct 25 09:35:13 2019 +++ pkgsrc/devel/py-test5/Makefile Tue Oct 29 22:27:29 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/10/25 09:35:13 adam Exp $ +# $NetBSD: Makefile,v 1.3 2019/10/29 22:27:29 gutteridge Exp $ DISTNAME= pytest-5.2.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -10,6 +10,8 @@ HOMEPAGE= http://pytest.org/ COMMENT= Python testing tool LICENSE= mit +PYTHON_VERSIONS_INCOMPATIBLE= 27 + DEPENDS+= ${PYPKGPREFIX}-atomicwrites>=1.0:../../devel/py-atomicwrites DEPENDS+= ${PYPKGPREFIX}-attrs>=17.4.0:../../devel/py-attrs DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat @@ -31,8 +33,6 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-xmlschema- DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=0.12:../../devel/py-importlib-metadata .endif -PYTHON_VERSIONS_INCOMPATIBLE= 27 - USE_LANGUAGES= # none USE_TOOLS+= bash:build --_----------=_1572388050227470--