summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2011-02-22 09:12:37 +0000
committerobache <obache@pkgsrc.org>2011-02-22 09:12:37 +0000
commit660d26596fb8a6f3ac3b2d7ce4623109ec1cecb8 (patch)
tree8aca106dea237ba68d93130253a77f8fe2966a2f /lang/python
parenta35a87f745ebe1a58943611b92be0a4749b3419e (diff)
downloadpkgsrc-660d26596fb8a6f3ac3b2d7ce4623109ec1cecb8.tar.gz
fix for python27.
Diffstat (limited to 'lang/python')
-rw-r--r--lang/python/pyversion.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/pyversion.mk b/lang/python/pyversion.mk
index 9e064514576..9030c03d73e 100644
--- a/lang/python/pyversion.mk
+++ b/lang/python/pyversion.mk
@@ -1,4 +1,4 @@
-# $NetBSD: pyversion.mk,v 1.83 2011/02/22 09:01:28 obache Exp $
+# $NetBSD: pyversion.mk,v 1.84 2011/02/22 09:12:37 obache Exp $
# This file determines which Python version is used as a dependency for
# a package.
@@ -69,13 +69,13 @@ BUILD_DEFS+= PYTHON_VERSION_DEFAULT
BUILD_DEFS_EFFECTS+= PYPACKAGE
PYTHON_VERSION_DEFAULT?= 26
-PYTHON_VERSIONS_ACCEPTED?= 26 25 24
+PYTHON_VERSIONS_ACCEPTED?= 27 26 25 24
PYTHON_VERSIONS_INCOMPATIBLE?= # empty by default
BUILDLINK_API_DEPENDS.python24?= python24>=2.4
BUILDLINK_API_DEPENDS.python25?= python25>=2.5.1
BUILDLINK_API_DEPENDS.python26?= python26>=2.6
-BUILDLINK_API_DEPENDS.python27?= python26>=2.7
+BUILDLINK_API_DEPENDS.python27?= python27>=2.7
# transform the list into individual variables
.for pv in ${PYTHON_VERSIONS_ACCEPTED}