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 2499A1A9239 for ; Thu, 27 Jan 2022 08:44:14 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 309BA84D41; Thu, 27 Jan 2022 08:44:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6CCF484D25 for ; Thu, 27 Jan 2022 08:44:12 +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 yZTWgHs-GVYs for ; Thu, 27 Jan 2022 08:44:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C036C84CBC for ; Thu, 27 Jan 2022 08:44:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BA02EFB24; Thu, 27 Jan 2022 08:44:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1643273051155490" MIME-Version: 1.0 Date: Thu, 27 Jan 2022 08:44:11 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/archivers/py-zipp1 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220127084411.BA02EFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1643273051155490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 27 08:44:11 UTC 2022 Modified Files: pkgsrc/archivers/py-zipp1: Makefile Log Message: py-zipp1: restrict to python 2.7 since that's what we have the package for To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/archivers/py-zipp1/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1643273051155490 Content-Disposition: inline Content-Length: 1250 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/py-zipp1/Makefile diff -u pkgsrc/archivers/py-zipp1/Makefile:1.6 pkgsrc/archivers/py-zipp1/Makefile:1.7 --- pkgsrc/archivers/py-zipp1/Makefile:1.6 Thu Jan 13 19:31:20 2022 +++ pkgsrc/archivers/py-zipp1/Makefile Thu Jan 27 08:44:11 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2022/01/13 19:31:20 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2022/01/27 08:44:11 wiz Exp $ DISTNAME= zipp-1.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,6 +12,7 @@ COMMENT= Backport of pathlib-compatible LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-contextlib2-[0-9]*:../../devel/py-contextlib2 +BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm5 TEST_DEPENDS+= ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2 TEST_DEPENDS+= ${PYPKGPREFIX}-unittest2-[0-9]*:../../devel/py-unittest2 # not available for python 2.x @@ -20,8 +21,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-unittest2- TEST_DEPENDS+= ${PYPKGPREFIX}-func_timeout-[0-9]*:../../devel/py-func_timeout USE_LANGUAGES= # none -PYTHON_VERSIONED_DEPENDENCIES= setuptools_scm:build +PYTHON_VERSIONS_ACCEPTED= 27 .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1643273051155490--