summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2006-10-13 07:16:45 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2006-10-13 07:16:45 +0000
commite18b838fd903ca4a6c3dca6db8a75eedefd645e4 (patch)
tree984ef244bb83f4a2bfc290e7cc31fd2928e81ef0 /lang/python
parent- Add a forgotten man page and fix deinstall (diff)
Revert the default version of Python to 2.4 for the ports freeze
period. Python 2.5 brought a vast range of incompatibility to a large number of ports, so the python@ team will do more basic compatibility work in a private repository and merge it later. Sorry for the inconvenience. Approved by: portmgr (kris)
Notes
Notes: svn path=/head/; revision=175244
Diffstat (limited to 'lang/python')
-rw-r--r--lang/python/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile
index 853ba7705af1..069966fc5f61 100644
--- a/lang/python/Makefile
+++ b/lang/python/Makefile
@@ -6,7 +6,8 @@
#
PORTNAME= python
-PORTVERSION= 2.5
+PORTVERSION= 2.4.3
+PORTEPOCH= 1
CATEGORIES= lang python ipv6
MASTER_SITES= # empty
DISTFILES= # empty
@@ -16,7 +17,7 @@ MAINTAINER= python@FreeBSD.org
COMMENT= The "meta-port" for the stable version of Python interpreter
USE_PYTHON_RUN= yes
-PYTHON_VERSION= python2.5
+PYTHON_VERSION= python2.4
NO_BUILD= yes
do-install: # empty
@@ -26,13 +27,13 @@ PORTUPGRADE?= ${LOCALBASE}/sbin/portupgrade
PKG_WHICH?= ${LOCALBASE}/sbin/pkg_which
upgrade-site-packages:
@if [ -x ${PORTUPGRADE} ]; then \
- for ver in 2.1 2.2 2.3 2.4; do \
+ for ver in 2.1 2.2 2.3 2.5; do \
if [ -d ${PREFIX}/lib/python$$ver ]; then \
UPD=`${FIND} ${PREFIX}/lib/python$$ver \
-type f -print0 | \
${XARGS} -0 ${PKG_WHICH} | \
${GREP} -Fv '?' | \
- ${EGREP} -v '^python2?[0-4]?-2' | \
+ ${EGREP} -v '^python2?[0-5]?-2' | \
${SORT} -u`; \
if [ "$$UPD" ]; then \
${PORTUPGRADE} -f $$UPD; \