Received: by mail.netbsd.org (Postfix, from userid 605) id D27D884E72; Wed, 19 Aug 2020 12:41:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A09684DF6 for ; Wed, 19 Aug 2020 12:41:00 +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 gjhkSNlYlkn3 for ; Wed, 19 Aug 2020 12:40:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B01A184CE9 for ; Wed, 19 Aug 2020 12:40:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A9064FB28; Wed, 19 Aug 2020 12:40:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1597840859155630" MIME-Version: 1.0 Date: Wed, 19 Aug 2020 12:40:59 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/devel/py-test To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20200819124059.A9064FB28@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. --_----------=_1597840859155630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Wed Aug 19 12:40:59 UTC 2020 Modified Files: pkgsrc/devel/py-test: Makefile Log Message: devel/py-test: Back out previous. Apparently a package cannot TEST_DEPENDS on itself, even if it is necessary in order for make test to work. The TEST_DEPENDS mechanism seems like it could maybe use some work. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/devel/py-test/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1597840859155630 Content-Disposition: inline Content-Length: 922 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test/Makefile diff -u pkgsrc/devel/py-test/Makefile:1.93 pkgsrc/devel/py-test/Makefile:1.94 --- pkgsrc/devel/py-test/Makefile:1.93 Tue Aug 18 20:14:54 2020 +++ pkgsrc/devel/py-test/Makefile Wed Aug 19 12:40:59 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.93 2020/08/18 20:14:54 riastradh Exp $ +# $NetBSD: Makefile,v 1.94 2020/08/19 12:40:59 riastradh Exp $ DISTNAME= pytest-6.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -24,7 +24,6 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose TEST_DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests -TEST_DEPENDS+= ${PYPKGPREFIX}-test-${PKGVERSION}:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-xmlschema-[0-9]*:../../textproc/py-xmlschema PYTHON_VERSIONS_INCOMPATIBLE= 27 # since 5.0.0 --_----------=_1597840859155630--