Received: by mail.netbsd.org (Postfix, from userid 605) id 9B7BF84CE7; Tue, 21 Jul 2020 00:22:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 23A5784CE0 for ; Tue, 21 Jul 2020 00:22:54 +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 jQDQLKu9iF5D for ; Tue, 21 Jul 2020 00:22:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7B94E84CDB for ; Tue, 21 Jul 2020 00:22:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 75BB4FB28; Tue, 21 Jul 2020 00:22:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1595290973111220" MIME-Version: 1.0 Date: Tue, 21 Jul 2020 00:22:53 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/devel/py-cpplint To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20200721002253.75BB4FB28@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. --_----------=_1595290973111220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Tue Jul 21 00:22:53 UTC 2020 Modified Files: pkgsrc/devel/py-cpplint: Makefile Log Message: py-cpplint: fix sandboxed builds In (some) sandboxed environments, this would fail to build due to a series of failures relating to setup requirements. It prefers py-pip, so simply explicitly make that a TOOL_DEPENDS. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-cpplint/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1595290973111220 Content-Disposition: inline Content-Length: 779 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-cpplint/Makefile diff -u pkgsrc/devel/py-cpplint/Makefile:1.1 pkgsrc/devel/py-cpplint/Makefile:1.2 --- pkgsrc/devel/py-cpplint/Makefile:1.1 Mon Jun 29 13:09:44 2020 +++ pkgsrc/devel/py-cpplint/Makefile Tue Jul 21 00:22:53 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2020/06/29 13:09:44 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2020/07/21 00:22:53 gutteridge Exp $ DISTNAME= cpplint-1.5.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,6 +10,8 @@ HOMEPAGE= https://github.com/cpplint/cpp COMMENT= Static code checker for C++ LICENSE= modified-bsd +TOOL_DEPENDS+= ${PYPKGPREFIX}-pip-[0-9]*:../../devel/py-pip + TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov PYTHON_VERSIONED_DEPENDENCIES= test:test zipp:test --_----------=_1595290973111220--