[101402] trunk/dports/python/py-spyder
eborisch at macports.org
eborisch at macports.org
Thu Jan 10 07:17:36 PST 2013
Revision: 101402
https://trac.macports.org/changeset/101402
Author: eborisch at macports.org
Date: 2013-01-10 07:17:36 -0800 (Thu, 10 Jan 2013)
Log Message:
-----------
py-spyder: Update to 2.1.13
Modified Paths:
--------------
trunk/dports/python/py-spyder/Portfile
Removed Paths:
-------------
trunk/dports/python/py-spyder/files/spyderlib_utils_bsdsocket.py.diff
trunk/dports/python/py-spyder/files/spyderlib_widgets_sourcecode_codeeditor.py.diff
Modified: trunk/dports/python/py-spyder/Portfile
===================================================================
--- trunk/dports/python/py-spyder/Portfile 2013-01-10 04:38:11 UTC (rev 101401)
+++ trunk/dports/python/py-spyder/Portfile 2013-01-10 15:17:36 UTC (rev 101402)
@@ -3,8 +3,7 @@
PortSystem 1.0
name py-spyder
-version 2.1.11
-revision 3
+version 2.1.13
epoch 20111202
PortGroup python 1.0
@@ -40,8 +39,8 @@
universal_variant no
checksums \
- rmd160 2726ca15aa956e3f9f92792cc56b2984fa5d2bf2 \
- sha256 b6d98442a8b529e31cd66c47c6634571aeaae40067757e95b2d6ee748fbc5877
+ rmd160 1609f0ff6a4f0e2c4b5ae53722ca935233565adc \
+ sha256 5222946d8ef96d9c770d63b3831b5af1555cf886933ab5d339321aa83ecc5a30
if {${subport} != ${name}} {
conflicts port:py${python.version}-spyder-beta
@@ -49,15 +48,13 @@
# Set the pylint executable name
set LINT_BIN_NAME pylint-${python.branch}
set WINPDB_BIN_NAME winpdb-${python.branch}
- patchfiles patch-widgets-pylintgui.py.diff \
+ patchfiles ipython_checks.diff \
+ patch-widgets-pylintgui.py.diff \
spyderlib_baseconfig.py.diff \
spyderlib_plugins_editor.py.diff \
spyderlib_spyder.py.diff \
- spyderlib_utils_bsdsocket.py.diff \
spyderlib_utils_programs.py.diff \
- spyderlib_widgets_shell.py.diff \
- spyderlib_widgets_sourcecode_codeeditor.py.diff \
- ipython_checks.diff
+ spyderlib_widgets_shell.py.diff
post-patch {
reinplace "s|@@WINPDB_BIN_NAME@@|${WINPDB_BIN_NAME}|g" \
Deleted: trunk/dports/python/py-spyder/files/spyderlib_utils_bsdsocket.py.diff
===================================================================
--- trunk/dports/python/py-spyder/files/spyderlib_utils_bsdsocket.py.diff 2013-01-10 04:38:11 UTC (rev 101401)
+++ trunk/dports/python/py-spyder/files/spyderlib_utils_bsdsocket.py.diff 2013-01-10 15:17:36 UTC (rev 101402)
@@ -1,19 +0,0 @@
---- spyderlib/utils/bsdsocket.py.orig 2012-07-20 10:02:02.000000000 -0500
-+++ spyderlib/utils/bsdsocket.py 2012-07-20 10:12:18.000000000 -0500
-@@ -32,11 +32,12 @@
- sock.settimeout(timeout)
- dlen, data = None, None
- try:
-- datalen = sock.recv(SZ)
-+ datalen = sock.recv(SZ, socket.MSG_WAITALL)
-+ if len(datalen) < SZ:
-+ sock.settimeout(None)
-+ return
- dlen, = struct.unpack("l", datalen)
-- data = ''
-- while len(data) < dlen:
-- data += sock.recv(dlen)
-+ data = sock.recv(dlen, socket.MSG_WAITALL)
- except socket.timeout:
- raise
- except socket.error:
Deleted: trunk/dports/python/py-spyder/files/spyderlib_widgets_sourcecode_codeeditor.py.diff
===================================================================
--- trunk/dports/python/py-spyder/files/spyderlib_widgets_sourcecode_codeeditor.py.diff 2013-01-10 04:38:11 UTC (rev 101401)
+++ trunk/dports/python/py-spyder/files/spyderlib_widgets_sourcecode_codeeditor.py.diff 2013-01-10 15:17:36 UTC (rev 101402)
@@ -1,21 +0,0 @@
---- spyderlib/widgets/sourcecode/codeeditor.py.orig 2011-09-05 18:29:00.000000000 -0500
-+++ spyderlib/widgets/sourcecode/codeeditor.py 2011-09-08 08:51:36.000000000 -0500
-@@ -2038,6 +2038,18 @@
- self.emit(SIGNAL('trigger_code_completion(bool)'), True)
- elif key == Qt.Key_Home and not ctrl:
- self.stdkey_home(shift)
-+ elif key == Qt.Key_Home:
-+ cursor = self.textCursor()
-+ cursor.movePosition(QTextCursor.Start)
-+ self.setTextCursor(cursor)
-+ elif key == Qt.Key_End and not ctrl:
-+ cursor = self.textCursor()
-+ cursor.movePosition(QTextCursor.EndOfLine)
-+ self.setTextCursor(cursor)
-+ elif key == Qt.Key_End:
-+ cursor = self.textCursor()
-+ cursor.movePosition(QTextCursor.End)
-+ self.setTextCursor(cursor)
- elif text == '(' and not self.has_selected_text():
- self.hide_completion_widget()
- position = self.get_position('cursor')
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130110/71462f4a/attachment.html>
More information about the macports-changes
mailing list