diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2007-07-30 09:42:28 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2007-07-30 09:42:28 +0000 |
commit | 4942ce5a7d8a3d0cbebaf4d202011850d1f7569f (patch) | |
tree | db1f21912f461000d609ddcd5d130946bcfe9e09 /net/py-soappy-devel/files/patch-python25 | |
parent | In ATLAS/INSTALL.txt it is said that gcc42 is superior to both gcc3 and gcc41 (diff) |
- Make Python 2.5.1 the default Python version
- Add significantly better support in bsd.python.mk for working with
Python Eggs and the easy_install system
Tested by: pointyhat runs
Approved by: pav (portmgr)
Most work by: perky
Thanks to: pav
Notes
Notes:
svn path=/head/; revision=196700
Diffstat (limited to 'net/py-soappy-devel/files/patch-python25')
-rw-r--r-- | net/py-soappy-devel/files/patch-python25 | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net/py-soappy-devel/files/patch-python25 b/net/py-soappy-devel/files/patch-python25 new file mode 100644 index 000000000000..59027527c954 --- /dev/null +++ b/net/py-soappy-devel/files/patch-python25 @@ -0,0 +1,56 @@ +--- ./SOAPpy/Client.py.orig Fri Mar 30 08:44:36 2007 ++++ ./SOAPpy/Client.py Fri Mar 30 08:44:40 2007 +@@ -40,10 +40,10 @@ + ################################################################################ + """ + ++from __future__ import nested_scopes + ident = '$Id: Client.py,v 1.27 2005/02/21 20:27:09 warnes Exp $' + from version import __version__ + +-from __future__ import nested_scopes + + #import xml.sax + import urllib +--- ./SOAPpy/GSIServer.py.orig Fri Mar 30 08:44:40 2007 ++++ ./SOAPpy/GSIServer.py Fri Mar 30 08:44:44 2007 +@@ -43,10 +43,10 @@ + ################################################################################ + """ + ++from __future__ import nested_scopes + ident = '$Id: GSIServer.py,v 1.5 2005/02/15 16:32:22 warnes Exp $' + from version import __version__ + +-from __future__ import nested_scopes + + #import xml.sax + import re +--- ./SOAPpy/Server.py.orig Fri Mar 30 08:44:49 2007 ++++ ./SOAPpy/Server.py Fri Mar 30 08:44:52 2007 +@@ -40,10 +40,10 @@ + ################################################################################ + """ + ++from __future__ import nested_scopes + ident = '$Id: Server.py,v 1.21 2005/02/15 16:32:22 warnes Exp $' + from version import __version__ + +-from __future__ import nested_scopes + + #import xml.sax + import re +--- ./SOAPpy/Types.py.orig Fri Mar 30 08:44:52 2007 ++++ ./SOAPpy/Types.py Fri Mar 30 08:44:56 2007 +@@ -33,10 +33,10 @@ + ################################################################################ + """ + ++from __future__ import nested_scopes + ident = '$Id: Types.py,v 1.19 2005/02/22 04:29:43 warnes Exp $' + from version import __version__ + +-from __future__ import nested_scopes + + import UserList + import base64 |