diff options
author | rillig <rillig@pkgsrc.org> | 2006-09-07 16:22:54 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-09-07 16:22:54 +0000 |
commit | e102b5135c68475958c6dad0877cf8fa5052d71d (patch) | |
tree | 6cdbe6bf2c5d1fceaeae529bff64fc19b76dfe0f /lang/python | |
parent | d1ba99ec9654488336ecc10a607d3ce1eacbc7b8 (diff) | |
download | pkgsrc-e102b5135c68475958c6dad0877cf8fa5052d71d.tar.gz |
Added the usual documentation.
Whenever this file is used, PYTHON_VERSION_DEFAULT is added to
BUILD_DEFS to inform the user that the Python version is configurable.
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/pyversion.mk | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/lang/python/pyversion.mk b/lang/python/pyversion.mk index e9f4ea2ede6..9ccfc132909 100644 --- a/lang/python/pyversion.mk +++ b/lang/python/pyversion.mk @@ -1,10 +1,46 @@ -# $NetBSD: pyversion.mk,v 1.43 2006/08/08 09:49:57 drochner Exp $ +# $NetBSD: pyversion.mk,v 1.44 2006/09/07 16:22:54 rillig Exp $ + +# This file determines which Python version is used as a dependency for +# a package. +# +# The following variables may be set by the pkgsrc user in mk.conf: +# +# PYTHON_VERSION_DEFAULT +# The preferred Python version to use. +# +# Possible values: 15 20 21 22 23 24 +# Default: 24 +# +# The following variables may be set by a package before including this +# file: +# +# PYTHON_VERSIONS_ACCEPTED +# The Python versions that are acceptable for the package. The +# order of the entries matters. +# +# Possible values: 24 23 22 21 20 15 +# Default: (all) +# +# PYTHON_VERSIONS_INCOMPATIBLE +# The Python versions that are NOT acceptable for the package. +# +# Possible values: 15 20 21 22 23 24 +# Default: (depends on the platform) +# +# PYTHON_FOR_BUILD_ONLY +# Whether Python is needed only at build time or at run time. +# +# Possible values: (defined) (undefined) +# Default: (undefined) +# .if !defined(PYTHON_PYVERSION_MK) PYTHON_PYVERSION_MK= defined .include "../../mk/bsd.prefs.mk" +BUILD_DEFS+= PYTHON_VERSION_DEFAULT + PYTHON_VERSION_DEFAULT?= 24 .if ${OPSYS} == "Darwin" PYTHON_VERSIONS_INCOMPATIBLE+= 22 21 20 15 |