Received: by mail.netbsd.org (Postfix, from userid 605) id C878B84D5B; Mon, 31 Oct 2022 09:53:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 041D884D59 for ; Mon, 31 Oct 2022 09:53:32 +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 sYWNwhy6BpDX for ; Mon, 31 Oct 2022 09:53:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4C73B84CFD for ; Mon, 31 Oct 2022 09:53:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 49E54FA90; Mon, 31 Oct 2022 09:53:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667210011263280" MIME-Version: 1.0 Date: Mon, 31 Oct 2022 09:53:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221031095331.49E54FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667210011263280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 31 09:53:31 UTC 2022 Modified Files: pkgsrc/lang/python: pyversion.mk Log Message: Support Python 3.11 To generate a diff of this commit: cvs rdiff -u -r1.142 -r1.143 pkgsrc/lang/python/pyversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667210011263280 Content-Disposition: inline Content-Length: 1507 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python/pyversion.mk diff -u pkgsrc/lang/python/pyversion.mk:1.142 pkgsrc/lang/python/pyversion.mk:1.143 --- pkgsrc/lang/python/pyversion.mk:1.142 Sun Oct 2 22:58:52 2022 +++ pkgsrc/lang/python/pyversion.mk Mon Oct 31 09:53:31 2022 @@ -1,4 +1,4 @@ -# $NetBSD: pyversion.mk,v 1.142 2022/10/02 22:58:52 gdt Exp $ +# $NetBSD: pyversion.mk,v 1.143 2022/10/31 09:53:31 adam Exp $ # This file determines which Python version is used as a dependency for # a package. @@ -8,7 +8,7 @@ # PYTHON_VERSION_DEFAULT # The preferred Python version to use. # -# Possible values: 27 37 38 39 310 +# Possible values: 27 37 38 39 310 311 # Default: 310 # # === Infrastructure variables === @@ -27,13 +27,13 @@ # order of the entries matters, since earlier entries are # preferred over later ones. # -# Possible values: 310 39 38 37 27 -# Default: 310 39 38 37 27 +# Possible values: 311 310 39 38 37 27 +# Default: 311 310 39 38 37 27 # # PYTHON_VERSIONS_INCOMPATIBLE # The Python versions that are NOT acceptable for the package. # -# Possible values: 27 37 38 39 310 +# Possible values: 27 37 38 39 310 311 # Default: (empty) # # PYTHON_FOR_BUILD_ONLY @@ -85,7 +85,7 @@ BUILD_DEFS+= PYTHON_VERSION_DEFAULT BUILD_DEFS_EFFECTS+= PYPACKAGE PYTHON_VERSION_DEFAULT?= 310 -PYTHON_VERSIONS_ACCEPTED?= 310 39 38 37 27 +PYTHON_VERSIONS_ACCEPTED?= 311 310 39 38 37 27 PYTHON_VERSIONS_INCOMPATIBLE?= # empty by default # transform the list into individual variables --_----------=_1667210011263280--