Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 075791A9239 for ; Mon, 31 Jan 2022 12:08:34 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D495A84EBE; Mon, 31 Jan 2022 12:08:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5F2DF84DA9 for ; Mon, 31 Jan 2022 11:55:27 +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 gOzJVCk_rSQc for ; Mon, 31 Jan 2022 11:55:26 +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 D1DBE84D59 for ; Mon, 31 Jan 2022 11:55:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CF873FB24; Mon, 31 Jan 2022 11:55:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164363012639700" MIME-Version: 1.0 Date: Mon, 31 Jan 2022 11:55:26 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220131115526.CF873FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164363012639700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 31 11:55:26 UTC 2022 Modified Files: pkgsrc/devel/py-flake8-3: Makefile pkgsrc/devel/py-lama: Makefile Log Message: *: use versioned_dependencies for py-mccabe To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-flake8-3/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-lama/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164363012639700 Content-Disposition: inline Content-Length: 2000 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-flake8-3/Makefile diff -u pkgsrc/devel/py-flake8-3/Makefile:1.1 pkgsrc/devel/py-flake8-3/Makefile:1.2 --- pkgsrc/devel/py-flake8-3/Makefile:1.1 Sat Jan 29 08:40:00 2022 +++ pkgsrc/devel/py-flake8-3/Makefile Mon Jan 31 11:55:26 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2022/01/29 08:40:00 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2022/01/31 11:55:26 wiz Exp $ DISTNAME= flake8-3.9.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,7 +13,7 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-codestyle>=2.7.0:../../devel/py-codestyle DEPENDS+= ${PYPKGPREFIX}-flakes>=2.3.0:../../devel/py-flakes -DEPENDS+= ${PYPKGPREFIX}-mccabe>=0.6.0:../../devel/py-mccabe +DEPENDS+= ${PYPKGPREFIX}-mccabe>=0.6.0:../../devel/py-mccabe06 DEPENDS+= ${PYPKGPREFIX}-configparser-[0-9]*:../../devel/py-configparser DEPENDS+= ${PYPKGPREFIX}-enum34-[0-9]*:../../devel/py-enum34 DEPENDS+= ${PYPKGPREFIX}-functools32-[0-9]*:../../devel/py-functools32 Index: pkgsrc/devel/py-lama/Makefile diff -u pkgsrc/devel/py-lama/Makefile:1.9 pkgsrc/devel/py-lama/Makefile:1.10 --- pkgsrc/devel/py-lama/Makefile:1.9 Wed Jan 5 15:41:05 2022 +++ pkgsrc/devel/py-lama/Makefile Mon Jan 31 11:55:26 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2022/01/05 15:41:05 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2022/01/31 11:55:26 wiz Exp $ DISTNAME= pylama-7.7.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -14,12 +14,12 @@ 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.5.2:../../devel/py-mccabe # extensions DEPENDS+= ${PYPKGPREFIX}-eradicate-[0-9]*:../../textproc/py-eradicate DEPENDS+= ${PYPKGPREFIX}-radon>=1.4.2:../../devel/py-radon -PYTHON_VERSIONED_DEPENDENCIES= test:test +PYTHON_VERSIONED_DEPENDENCIES+= mccabe +PYTHON_VERSIONED_DEPENDENCIES+= test:test USE_PKG_RESOURCES= yes --_----------=_164363012639700--