Received: by mail.netbsd.org (Postfix, from userid 605) id 893C284D9D; Sun, 25 Mar 2018 20:30:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7F57F84D9D for ; Sun, 25 Mar 2018 20:30:39 +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 OCjV9d3xmxdY for ; Sun, 25 Mar 2018 20:30:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A644084D03 for ; Sun, 25 Mar 2018 20:30:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 877F7FB40; Sun, 25 Mar 2018 20:30:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1522009838291300" MIME-Version: 1.0 Date: Sun, 25 Mar 2018 20:30:38 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/textproc/py-tinycss2 To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20180325203038.877F7FB40@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. --_----------=_1522009838291300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Mar 25 20:30:38 UTC 2018 Modified Files: pkgsrc/textproc/py-tinycss2: Makefile Log Message: Convert test dependencies to TEST_DEPENDS. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-tinycss2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1522009838291300 Content-Disposition: inline Content-Length: 1304 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-tinycss2/Makefile diff -u pkgsrc/textproc/py-tinycss2/Makefile:1.4 pkgsrc/textproc/py-tinycss2/Makefile:1.5 --- pkgsrc/textproc/py-tinycss2/Makefile:1.4 Thu Oct 12 06:43:44 2017 +++ pkgsrc/textproc/py-tinycss2/Makefile Sun Mar 25 20:30:38 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2017/10/12 06:43:44 adam Exp $ +# $NetBSD: Makefile,v 1.5 2018/03/25 20:30:38 joerg Exp $ DISTNAME= tinycss2-0.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,10 +13,10 @@ LICENSE= modified-bsd USE_LANGUAGES= # empty DEPENDS+= ${PYPKGPREFIX}-webencodings>=0.4:../../textproc/py-webencodings -BUILD_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov -BUILD_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8 -BUILD_DEPENDS+= ${PYPKGPREFIX}-test-isort-[0-9]*:../../devel/py-test-isort -BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov +TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8 +TEST_DEPENDS+= ${PYPKGPREFIX}-test-isort-[0-9]*:../../devel/py-test-isort +TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1522009838291300--