diff options
author | tnn <tnn@pkgsrc.org> | 2008-04-25 16:27:45 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-04-25 16:27:45 +0000 |
commit | 1d1107a0e7321edf5be3cae1a8a35db88c235317 (patch) | |
tree | 2632a2377d5ba9309e869087ec2c5d6319cd14b0 /lang/python | |
parent | d332b7e9e29e8a45f5bf0a677aa82c7dc707df4a (diff) | |
download | pkgsrc-1d1107a0e7321edf5be3cae1a8a35db88c235317.tar.gz |
Remove python 2.1 from the default set of acceptable python packages
so that packages that require it must specify so explicitly.
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/pyversion.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/pyversion.mk b/lang/python/pyversion.mk index 57fe9edafef..e7249166a4c 100644 --- a/lang/python/pyversion.mk +++ b/lang/python/pyversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: pyversion.mk,v 1.58 2008/04/25 16:11:11 tnn Exp $ +# $NetBSD: pyversion.mk,v 1.59 2008/04/25 16:27:45 tnn Exp $ # This file determines which Python version is used as a dependency for # a package. @@ -22,7 +22,7 @@ # automatically include future versions. # # Possible values: 25 24 23 21 15 -# Default: (all) +# Default: 25 24 23 # # PYTHON_VERSIONS_INCOMPATIBLE # The Python versions that are NOT acceptable for the package. @@ -62,7 +62,7 @@ BUILD_DEFS+= PYTHON_VERSION_DEFAULT BUILD_DEFS_EFFECTS+= PYPACKAGE PYTHON_VERSION_DEFAULT?= 24 -PYTHON_VERSIONS_ACCEPTED?= 25 24 23 21 +PYTHON_VERSIONS_ACCEPTED?= 25 24 23 PYTHON_VERSIONS_INCOMPATIBLE?= # empty by default .if ${OPSYS} == "Darwin" |