diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-06-08 22:30:55 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-06-08 22:30:55 +0000 |
commit | 81100672d4de2795c4284cf568383d48955cbdcb (patch) | |
tree | 47e3d403298c2fd50b0ec056f62df5c31925decb /devel/pyrex | |
parent | 6d138c2d46f8ea88c939a76298099dbcf07491af (diff) |
- Update lang/python26 and make Python 2.6.2 to the default Python version
Tested by: 3 pointyhat runs
Thanks to: pav, gahr, lwhsu, mva, amdmi3
Notes
Notes:
svn path=/head/; revision=235453
Diffstat (limited to 'devel/pyrex')
-rw-r--r-- | devel/pyrex/Makefile | 1 | ||||
-rw-r--r-- | devel/pyrex/files/patch-Pyrex-Compiler_Errors.py | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/devel/pyrex/Makefile b/devel/pyrex/Makefile index fea3fa7c6218..d8c1bac5223f 100644 --- a/devel/pyrex/Makefile +++ b/devel/pyrex/Makefile @@ -7,6 +7,7 @@ PORTNAME= pyrex PORTVERSION= 0.9.8.5 +PORTREVISION= 1 CATEGORIES= devel lang python MASTER_SITES= http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/ PKGNAMEPREFIX= ${PYTHONPKGNAMEPREFIX} diff --git a/devel/pyrex/files/patch-Pyrex-Compiler_Errors.py b/devel/pyrex/files/patch-Pyrex-Compiler_Errors.py new file mode 100644 index 000000000000..23218766ec99 --- /dev/null +++ b/devel/pyrex/files/patch-Pyrex-Compiler_Errors.py @@ -0,0 +1,11 @@ +--- Pyrex/Compiler/Errors.py.orig 2009-05-18 12:29:49.000000000 +0200 ++++ Pyrex/Compiler/Errors.py 2009-05-18 12:32:21.000000000 +0200 +@@ -14,7 +14,7 @@ + + def __init__(self, position = None, message = ""): + self.position = position +- self.message = message ++ self._message = message + if position: + pos_str = "%s:%d:%d: " % position + else: |