Received: by mail.netbsd.org (Postfix, from userid 605) id 9960C84D35; Sat, 18 Jun 2022 21:24:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D056884D2A for ; Sat, 18 Jun 2022 21:24:00 +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 uv6yc6kuAgu5 for ; Sat, 18 Jun 2022 21:24:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 200EF84D27 for ; Sat, 18 Jun 2022 21:24:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3B983FB1A; Sat, 18 Jun 2022 21:25:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655587550269950" MIME-Version: 1.0 Date: Sat, 18 Jun 2022 21:25:50 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-flake8-import-order To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220618212550.3B983FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655587550269950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jun 18 21:25:50 UTC 2022 Modified Files: pkgsrc/devel/py-flake8-import-order: Makefile Log Message: py-flake8-import-order: restrict to python 2.7 Packages depending on it are already limited this way. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-flake8-import-order/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655587550269950 Content-Disposition: inline Content-Length: 1215 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-flake8-import-order/Makefile diff -u pkgsrc/devel/py-flake8-import-order/Makefile:1.15 pkgsrc/devel/py-flake8-import-order/Makefile:1.16 --- pkgsrc/devel/py-flake8-import-order/Makefile:1.15 Sat Jan 29 08:48:40 2022 +++ pkgsrc/devel/py-flake8-import-order/Makefile Sat Jun 18 21:25:50 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2022/01/29 08:48:40 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2022/06/18 21:25:50 wiz Exp $ DISTNAME= flake8-import-order-0.18.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,14 +13,14 @@ LICENSE= gnu-lgpl-v3 DEPENDS+= ${PYPKGPREFIX}-asttokens-[0-9]*:../../lang/py-asttokens DEPENDS+= ${PYPKGPREFIX}-codestyle-[0-9]*:../../devel/py-codestyle +TEST_DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8 TEST_DEPENDS+= ${PYPKGPREFIX}-lama-[0-9]*:../../devel/py-lama +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test -PYTHON_VERSIONED_DEPENDENCIES+= test:test -PYTHON_VERSIONED_DEPENDENCIES+= flake8:test +PYTHON_VERSIONS_INCOMPATIBLE= 27 do-test: cd ${WRKSRC} && pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1655587550269950--