Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6C4D384E7C for ; Sun, 5 Nov 2023 13:38:38 +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 8AXcpaRW4eJv for ; Sun, 5 Nov 2023 13:38:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B701A84D17 for ; Sun, 5 Nov 2023 13:38:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B47BBFA2C; Sun, 5 Nov 2023 13:38:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699191517119290" MIME-Version: 1.0 Date: Sun, 5 Nov 2023 13:38:37 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231105133837.B47BBFA2C@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699191517119290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Nov 5 13:38:37 UTC 2023 Modified Files: pkgsrc/lang/python: versioned_dependencies.mk Log Message: python: add support for cffi to versioned_dependencies.mk To generate a diff of this commit: cvs rdiff -u -r1.98 -r1.99 pkgsrc/lang/python/versioned_dependencies.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699191517119290 Content-Disposition: inline Content-Length: 1384 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python/versioned_dependencies.mk diff -u pkgsrc/lang/python/versioned_dependencies.mk:1.98 pkgsrc/lang/python/versioned_dependencies.mk:1.99 --- pkgsrc/lang/python/versioned_dependencies.mk:1.98 Tue Jun 6 12:41:46 2023 +++ pkgsrc/lang/python/versioned_dependencies.mk Sun Nov 5 13:38:37 2023 @@ -1,4 +1,4 @@ -# $NetBSD: versioned_dependencies.mk,v 1.98 2023/06/06 12:41:46 riastradh Exp $ +# $NetBSD: versioned_dependencies.mk,v 1.99 2023/11/05 13:38:37 wiz Exp $ # # This file determines which separate distribution of a Python # package is used as dependency, depending on the Python version @@ -9,7 +9,7 @@ # PYTHON_VERSIONED_DEPENDENCIES # The Python package which should be added as a dependency. # -# Possible values: OpenSSL Pillow X babel cairo click coverage cryptography dns hypothesis pip setuptools setuptools_scm test +# Possible values: OpenSSL Pillow X babel cairo cffi click coverage cryptography dns hypothesis pip setuptools setuptools_scm test # Default: (nothing) # @@ -41,6 +41,9 @@ _PY_VERS_PKG.27.babel= devel/py27-babel _PY_VERS_PKG.default.cairo= graphics/py-cairo _PY_VERS_PKG.27.cairo= graphics/py-cairo118 +_PY_VERS_PKG.default.cffi= devel/py-cffi +_PY_VERS_PKG.27.cffi= devel/py27-cffi + _PY_VERS_PKG.default.click= devel/py-click _PY_VERS_PKG.27.click= devel/py-click7 --_----------=_1699191517119290--