Received: by mail.netbsd.org (Postfix, from userid 605) id C982E84F04; Tue, 3 May 2022 17:33:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0E8C684D69 for ; Tue, 3 May 2022 17:33:10 +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 EsEXsMg6nC_s for ; Tue, 3 May 2022 17:33:09 +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 5473A84CFC for ; Tue, 3 May 2022 17:33:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41666FB1A; Tue, 3 May 2022 17:33:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1651599189154260" MIME-Version: 1.0 Date: Tue, 3 May 2022 17:33:09 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/py-fixtures To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220503173309.41666FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1651599189154260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue May 3 17:33:09 UTC 2022 Modified Files: pkgsrc/devel/py-fixtures: Makefile Log Message: py-fixtures: turn pbr into a TOOL_DEPENDS since it's listed as required during setup by the build system To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-fixtures/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1651599189154260 Content-Disposition: inline Content-Length: 980 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-fixtures/Makefile diff -u pkgsrc/devel/py-fixtures/Makefile:1.6 pkgsrc/devel/py-fixtures/Makefile:1.7 --- pkgsrc/devel/py-fixtures/Makefile:1.6 Fri Apr 29 23:29:17 2022 +++ pkgsrc/devel/py-fixtures/Makefile Tue May 3 17:33:09 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2022/04/29 23:29:17 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2022/05/03 17:33:09 nia Exp $ DISTNAME= fixtures-3.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -15,10 +15,11 @@ DEPENDS+= ${PYPKGPREFIX}-six>=1.0.0:../. PYTHON_VERSIONS_INCOMPATIBLE= 27 +TOOL_DEPENDS+= ${PYPKGPREFIX}-pbr-[0-9]*:../../devel/py-pbr + # 9 test failures as of 3.0.0 # https://github.com/testing-cabal/fixtures/issues/35 TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock -TEST_DEPENDS+= ${PYPKGPREFIX}-pbr-[0-9]*:../../devel/py-pbr # needs py-testtools for testing, but that depends on this #TEST_DEPENDS+= ${PYPKGPREFIX}-testtools-[0-9]*:../../devel/py-testtools --_----------=_1651599189154260--