Received: by mail.netbsd.org (Postfix, from userid 605) id 808F484DBD; Fri, 28 Sep 2018 15:45:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8859584CCC for ; Fri, 28 Sep 2018 15:45:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id MQBncSfI5b6D for ; Fri, 28 Sep 2018 15:45:16 +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 BA04384C82 for ; Fri, 28 Sep 2018 15:45:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B3320FBEE; Fri, 28 Sep 2018 15:45:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1538149515154690" MIME-Version: 1.0 Date: Fri, 28 Sep 2018 15:45:15 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/py-flake8 To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20180928154515.B3320FBEE@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. --_----------=_1538149515154690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Fri Sep 28 15:45:15 UTC 2018 Modified Files: pkgsrc/devel/py-flake8: Makefile Log Message: py-flake8: build dependency on py-test-runner is unconditional without it the py27 package will try to fetch the dep from pypi.org at build time. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/py-flake8/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1538149515154690 Content-Disposition: inline Content-Length: 1015 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-flake8/Makefile diff -u pkgsrc/devel/py-flake8/Makefile:1.17 pkgsrc/devel/py-flake8/Makefile:1.18 --- pkgsrc/devel/py-flake8/Makefile:1.17 Mon Jun 18 11:17:54 2018 +++ pkgsrc/devel/py-flake8/Makefile Fri Sep 28 15:45:15 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2018/06/18 11:17:54 adam Exp $ +# $NetBSD: Makefile,v 1.18 2018/09/28 15:45:15 tnn Exp $ DISTNAME= flake8-3.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,10 +18,8 @@ DEPENDS+= ${PYPKGPREFIX}-codestyle>=2.4. .if "${PYPKGPREFIX}" == "py27" DEPENDS+= ${PYPKGPREFIX}-configparser-[0-9]*:../../devel/py-configparser DEPENDS+= ${PYPKGPREFIX}-enum34-[0-9]*:../../devel/py-enum34 -.else -# Enforced by setuptools -BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner .endif +BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test --_----------=_1538149515154690--