[104962] trunk/dports/python/py-ipython

stromnov at macports.org stromnov at macports.org
Fri Apr 5 23:38:06 PDT 2013


Revision: 104962
          https://trac.macports.org/changeset/104962
Author:   stromnov at macports.org
Date:     2013-04-05 23:38:06 -0700 (Fri, 05 Apr 2013)
Log Message:
-----------
py-ipython: update to version 0.13.2

Modified Paths:
--------------
    trunk/dports/python/py-ipython/Portfile

Removed Paths:
-------------
    trunk/dports/python/py-ipython/files/IPython_external_qt.py.diff
    trunk/dports/python/py-ipython/files/ipython33-version.diff

Modified: trunk/dports/python/py-ipython/Portfile
===================================================================
--- trunk/dports/python/py-ipython/Portfile	2013-04-06 00:54:24 UTC (rev 104961)
+++ trunk/dports/python/py-ipython/Portfile	2013-04-06 06:38:06 UTC (rev 104962)
@@ -8,8 +8,8 @@
 set realname        ipython
 
 name                py-${realname}
-version             0.13.1
-revision            3
+version             0.13.2
+revision            0
 license             BSD
 platforms           darwin
 supported_archs     noarch
@@ -27,12 +27,9 @@
 master_sites        http://archive.ipython.org/release/${version}
 distname            ${realname}-${version}
 
-checksums           rmd160  9e798d6853064da4a10a807aac0980f14b35ab32 \
-                    sha256  3bbf1095c4fd1fbf0a0871d9e26571a1ce3c4113d83ee3b688fa58e7e917f8c0
+checksums           rmd160  afdd4e7fed6b3d23d5577b66671c9b868ef1f847 \
+                    sha256  17fbeea1dff2318d617d90fdf7af4eb35dc48c61389a2dffaab8ff100fb100ea
 
-# Upstream addresses in current git version; remove patch when updated.
-patchfiles          IPython_external_qt.py.diff
-
 python.versions     24 25 26 27 31 32 33
 
 subport py24-${realname} {

Deleted: trunk/dports/python/py-ipython/files/IPython_external_qt.py.diff
===================================================================
--- trunk/dports/python/py-ipython/files/IPython_external_qt.py.diff	2013-04-06 00:54:24 UTC (rev 104961)
+++ trunk/dports/python/py-ipython/files/IPython_external_qt.py.diff	2013-04-06 06:38:06 UTC (rev 104962)
@@ -1,47 +0,0 @@
---- IPython/external/qt.py.orig	2012-10-20 19:30:53.000000000 -0500
-+++ IPython/external/qt.py	2013-03-05 15:56:01.000000000 -0600
-@@ -7,6 +7,8 @@
- """
- 
- import os
-+import distutils.version as DV
-+VER_LT = lambda a, b: DV.LooseVersion(a) < DV.LooseVersion(b)
- 
- # Available APIs.
- QT_API_PYQT = 'pyqt'
-@@ -25,7 +27,7 @@
- if QT_API is None:
-     try:
-         import PySide
--        if PySide.__version__ < '1.0.3':
-+        if VER_LT(PySide.__version__, '1.0.3'):
-             # old PySide, fallback on PyQt
-             raise ImportError
-         from PySide import QtCore, QtGui, QtSvg
-@@ -35,7 +37,7 @@
-             prepare_pyqt4()
-             import PyQt4
-             from PyQt4 import QtCore, QtGui, QtSvg
--            if QtCore.PYQT_VERSION_STR < '4.7':
-+            if VER_LT(QtCore.PYQT_VERSION_STR, '4.7'):
-                 # PyQt 4.6 has issues with null strings returning as None
-                 raise ImportError
-             QT_API = QT_API_PYQT
-@@ -49,7 +51,7 @@
- # Now peform the imports.
- if QT_API == QT_API_PYQT:
-     from PyQt4 import QtCore, QtGui, QtSvg
--    if QtCore.PYQT_VERSION_STR < '4.7':
-+    if VER_LT(QtCore.PYQT_VERSION_STR, '4.7'):
-         raise ImportError("IPython requires PyQt4 >= 4.7, found %s"%QtCore.PYQT_VERSION_STR)
- 
-     # Alias PyQt-specific functions for PySide compatibility.
-@@ -58,7 +60,7 @@
- 
- elif QT_API == QT_API_PYSIDE:
-     import PySide
--    if PySide.__version__ < '1.0.3':
-+    if VER_LT(PySide.__version__, '1.0.3'):
-         raise ImportError("IPython requires PySide >= 1.0.3, found %s"%PySide.__version__)
-     from PySide import QtCore, QtGui, QtSvg
- 

Deleted: trunk/dports/python/py-ipython/files/ipython33-version.diff
===================================================================
--- trunk/dports/python/py-ipython/files/ipython33-version.diff	2013-04-06 00:54:24 UTC (rev 104961)
+++ trunk/dports/python/py-ipython/files/ipython33-version.diff	2013-04-06 06:38:06 UTC (rev 104962)
@@ -1,20 +0,0 @@
-diff -uNr work/ipython-0.13.orig/IPython/core/magic_arguments.py work/ipython-0.13/IPython/core/magic_arguments.py
---- IPython/core/magic_arguments.py	2012-06-12 01:49:08.000000000 -0400
-+++ IPython/core/magic_arguments.py	2012-10-04 13:09:42.000000000 -0400
-@@ -66,7 +66,6 @@
-                  usage=None,
-                  description=None,
-                  epilog=None,
--                 version=None,
-                  parents=None,
-                  formatter_class=MagicHelpFormatter,
-                  prefix_chars='-',
-@@ -76,7 +75,7 @@
-         if parents is None:
-             parents = []
-         super(MagicArgumentParser, self).__init__(prog=prog, usage=usage,
--            description=description, epilog=epilog, version=version,
-+            description=description, epilog=epilog,
-             parents=parents, formatter_class=formatter_class,
-             prefix_chars=prefix_chars, argument_default=argument_default,
-             conflict_handler=conflict_handler, add_help=add_help)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130405/cfaf5f28/attachment.html>


More information about the macports-changes mailing list