Received: by mail.netbsd.org (Postfix, from userid 605) id 3F2BC84D80; Sat, 18 Jun 2022 21:44:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7866F84D35 for ; Sat, 18 Jun 2022 21:44:16 +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 J8moRQw1HQJq for ; Sat, 18 Jun 2022 21:44: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 C608384D27 for ; Sat, 18 Jun 2022 21:44:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EC029FB1A; Sat, 18 Jun 2022 21:46:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655588765111940" MIME-Version: 1.0 Date: Sat, 18 Jun 2022 21:46:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-lama To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220618214605.EC029FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655588765111940 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:46:05 UTC 2022 Modified Files: pkgsrc/devel/py-lama: Makefile Log Message: py-lama: restrict to python 3.x To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-lama/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655588765111940 Content-Disposition: inline Content-Length: 1320 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-lama/Makefile diff -u pkgsrc/devel/py-lama/Makefile:1.10 pkgsrc/devel/py-lama/Makefile:1.11 --- pkgsrc/devel/py-lama/Makefile:1.10 Mon Jan 31 11:55:26 2022 +++ pkgsrc/devel/py-lama/Makefile Sat Jun 18 21:46:05 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2022/01/31 11:55:26 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2022/06/18 21:46:05 wiz Exp $ DISTNAME= pylama-7.7.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -14,12 +14,13 @@ LICENSE= gnu-lgpl-v3 DEPENDS+= ${PYPKGPREFIX}-codestyle>=2.3.1:../../devel/py-codestyle DEPENDS+= ${PYPKGPREFIX}-docstyle>=2.0.0:../../devel/py-docstyle DEPENDS+= ${PYPKGPREFIX}-flakes>=1.5.0:../../devel/py-flakes +DEPENDS+= ${PYPKGPREFIX}-mccabe-[0-9]*:../../devel/py-mccabe # extensions DEPENDS+= ${PYPKGPREFIX}-eradicate-[0-9]*:../../textproc/py-eradicate DEPENDS+= ${PYPKGPREFIX}-radon>=1.4.2:../../devel/py-radon +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test -PYTHON_VERSIONED_DEPENDENCIES+= mccabe -PYTHON_VERSIONED_DEPENDENCIES+= test:test +PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_PKG_RESOURCES= yes @@ -30,5 +31,4 @@ post-install: ${MV} pylama pylama-${PYVERSSUFFIX} || ${TRUE} .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1655588765111940--