pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-ipython py-ipython: update to 6.2.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/54c57f57a573
branches:  trunk
changeset: 370403:54c57f57a573
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Oct 16 18:03:49 2017 +0000

description:
py-ipython: update to 6.2.1

IPython 6.2.1:
IPython 6.2.1 ships with two minor fixes leading to no completions when using Jedi 0.11+, and crash on some linux system with virtualenv

IPython 6.2:
IPython 6.2 contains all the bugs fixes and features available in IPython 5.5, like built in progress bar support, and system-wide configuration

diffstat:

 devel/py-ipython/ALTERNATIVES |   3 ---
 devel/py-ipython/Makefile     |  33 ++++++++++++++-------------------
 devel/py-ipython/PLIST        |  34 ++++------------------------------
 devel/py-ipython/distinfo     |  10 +++++-----
 4 files changed, 23 insertions(+), 57 deletions(-)

diffs (173 lines):

diff -r 37948cae8ccd -r 54c57f57a573 devel/py-ipython/ALTERNATIVES
--- a/devel/py-ipython/ALTERNATIVES     Mon Oct 16 17:21:26 2017 +0000
+++ b/devel/py-ipython/ALTERNATIVES     Mon Oct 16 18:03:49 2017 +0000
@@ -1,5 +1,2 @@
-bin/ipcluster @PREFIX@/bin/ipcluster@PYVERSSUFFIX@
-bin/ipcontroller @PREFIX@/bin/ipcontroller@PYVERSSUFFIX@
-bin/ipengine @PREFIX@/bin/ipengine@PYVERSSUFFIX@
 bin/iptest @PREFIX@/bin/iptest@PYVERSSUFFIX@
 bin/ipython @PREFIX@/bin/ipython@PYVERSSUFFIX@
diff -r 37948cae8ccd -r 54c57f57a573 devel/py-ipython/Makefile
--- a/devel/py-ipython/Makefile Mon Oct 16 17:21:26 2017 +0000
+++ b/devel/py-ipython/Makefile Mon Oct 16 18:03:49 2017 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.21 2017/06/24 08:07:14 adam Exp $
+# $NetBSD: Makefile,v 1.22 2017/10/16 18:03:49 adam Exp $
 
-DISTNAME=      ipython-5.4.1
+DISTNAME=      ipython-6.2.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    devel lang
+CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=i/ipython/}
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -10,32 +10,27 @@
 COMMENT=       Interactive computing environment for Python
 LICENSE=       modified-bsd
 
-.include "../../lang/python/distutils.mk"
-
-.if ${PYPKGPREFIX} == py27
-DEPENDS+=      ${PYPKGPREFIX}-backports.shutil_get_terminal_size-[0-9]*:../../devel/py-backports.shutil_get_terminal_size
-DEPENDS+=      ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2
-DEPENDS+=      ${PYPKGPREFIX}-scandir-[0-9]*:../../devel/py-scandir
-.endif
-
 DEPENDS+=      ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator
+DEPENDS+=      ${PYPKGPREFIX}-jedi>=0.10:../../editors/py-jedi
 DEPENDS+=      ${PYPKGPREFIX}-pexpect-[0-9]*:../../devel/py-pexpect
+DEPENDS+=      ${PYPKGPREFIX}-pickleshare-[0-9]*:../../databases/py-pickleshare
 DEPENDS+=      ${PYPKGPREFIX}-prompt_toolkit>=1.0.4:../../devel/py-prompt_toolkit
+DEPENDS+=      ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments
 DEPENDS+=      ${PYPKGPREFIX}-setuptools>=18.5:../../devel/py-setuptools
-DEPENDS+=      ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments
-DEPENDS+=      ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
-DEPENDS+=      ${PYPKGPREFIX}-pickleshare-[0-9]*:../../databases/py-pickleshare
 DEPENDS+=      ${PYPKGPREFIX}-simplegeneric>0.8:../../devel/py-simplegeneric
 DEPENDS+=      ${PYPKGPREFIX}-traitlets>=4.2:../../devel/py-traitlets
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-nose>=0.10.1:../../devel/py-nose
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-testpath-[0-9]*:../../devel/py-testpath
 
 USE_LANGUAGES= # none
 
-REPLACE_PYTHON=        */*/*.py */*/*/*.py
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 post-install:
-       ${MV} ${DESTDIR}${PREFIX}/bin/iptest ${DESTDIR}${PREFIX}/bin/iptest${PYVERSSUFFIX}
-       ${MV} ${DESTDIR}${PREFIX}/bin/ipython ${DESTDIR}${PREFIX}/bin/ipython${PYVERSSUFFIX}
-       ${MV} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ipython.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ipython${PYVERSSUFFIX}.1
+       cd ${DESTDIR}${PREFIX} && \
+       ${MV} bin/iptest bin/iptest${PYVERSSUFFIX} && \
+       ${MV} bin/ipython bin/ipython${PYVERSSUFFIX} && \
+       ${MV} ${PKGMANDIR}/man1/ipython.1 ${PKGMANDIR}/man1/ipython${PYVERSSUFFIX}.1 || ${TRUE}
 
-.include "../../lang/python/application.mk"
+.include "../../lang/python/distutils.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 37948cae8ccd -r 54c57f57a573 devel/py-ipython/PLIST
--- a/devel/py-ipython/PLIST    Mon Oct 16 17:21:26 2017 +0000
+++ b/devel/py-ipython/PLIST    Mon Oct 16 18:03:49 2017 +0000
@@ -1,10 +1,9 @@
-@comment $NetBSD: PLIST,v 1.7 2017/06/24 08:07:14 adam Exp $
-${PLIST.py2x}bin/iptest2
-${PLIST.py3x}bin/iptest3
+@comment $NetBSD: PLIST,v 1.8 2017/10/16 18:03:49 adam Exp $
 bin/iptest${PYVERSSUFFIX}
-${PLIST.py2x}bin/ipython2
-${PLIST.py3x}bin/ipython3
+bin/iptest3
 bin/ipython${PYVERSSUFFIX}
+bin/ipython3
+${PYSITELIB}/${EGG_FILE}
 ${PYSITELIB}/IPython/__init__.py
 ${PYSITELIB}/IPython/__init__.pyc
 ${PYSITELIB}/IPython/__init__.pyo
@@ -183,9 +182,6 @@
 ${PYSITELIB}/IPython/core/release.py
 ${PYSITELIB}/IPython/core/release.pyc
 ${PYSITELIB}/IPython/core/release.pyo
-${PYSITELIB}/IPython/core/shadowns.py
-${PYSITELIB}/IPython/core/shadowns.pyc
-${PYSITELIB}/IPython/core/shadowns.pyo
 ${PYSITELIB}/IPython/core/shellapp.py
 ${PYSITELIB}/IPython/core/shellapp.pyc
 ${PYSITELIB}/IPython/core/shellapp.pyo
@@ -374,9 +370,6 @@
 ${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.py
 ${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.pyc
 ${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.pyo
-${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.py
-${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.pyc
-${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.pyo
 ${PYSITELIB}/IPython/external/mathjax.py
 ${PYSITELIB}/IPython/external/mathjax.pyc
 ${PYSITELIB}/IPython/external/mathjax.pyo
@@ -712,9 +705,6 @@
 ${PYSITELIB}/IPython/utils/__init__.py
 ${PYSITELIB}/IPython/utils/__init__.pyc
 ${PYSITELIB}/IPython/utils/__init__.pyo
-${PYSITELIB}/IPython/utils/_get_terminal_size.py
-${PYSITELIB}/IPython/utils/_get_terminal_size.pyc
-${PYSITELIB}/IPython/utils/_get_terminal_size.pyo
 ${PYSITELIB}/IPython/utils/_process_cli.py
 ${PYSITELIB}/IPython/utils/_process_cli.pyc
 ${PYSITELIB}/IPython/utils/_process_cli.pyo
@@ -730,18 +720,9 @@
 ${PYSITELIB}/IPython/utils/_process_win32_controller.py
 ${PYSITELIB}/IPython/utils/_process_win32_controller.pyc
 ${PYSITELIB}/IPython/utils/_process_win32_controller.pyo
-${PYSITELIB}/IPython/utils/_signatures.py
-${PYSITELIB}/IPython/utils/_signatures.pyc
-${PYSITELIB}/IPython/utils/_signatures.pyo
 ${PYSITELIB}/IPython/utils/_sysinfo.py
 ${PYSITELIB}/IPython/utils/_sysinfo.pyc
 ${PYSITELIB}/IPython/utils/_sysinfo.pyo
-${PYSITELIB}/IPython/utils/_tokenize_py2.py
-${PYSITELIB}/IPython/utils/_tokenize_py2.pyc
-${PYSITELIB}/IPython/utils/_tokenize_py2.pyo
-${PYSITELIB}/IPython/utils/_tokenize_py3.py
-${PYSITELIB}/IPython/utils/_tokenize_py3.pyc
-${PYSITELIB}/IPython/utils/_tokenize_py3.pyo
 ${PYSITELIB}/IPython/utils/capture.py
 ${PYSITELIB}/IPython/utils/capture.pyc
 ${PYSITELIB}/IPython/utils/capture.pyo
@@ -814,9 +795,6 @@
 ${PYSITELIB}/IPython/utils/py3compat.py
 ${PYSITELIB}/IPython/utils/py3compat.pyc
 ${PYSITELIB}/IPython/utils/py3compat.pyo
-${PYSITELIB}/IPython/utils/rlineimpl.py
-${PYSITELIB}/IPython/utils/rlineimpl.pyc
-${PYSITELIB}/IPython/utils/rlineimpl.pyo
 ${PYSITELIB}/IPython/utils/sentinel.py
 ${PYSITELIB}/IPython/utils/sentinel.pyc
 ${PYSITELIB}/IPython/utils/sentinel.pyo
@@ -919,11 +897,7 @@
 ${PYSITELIB}/IPython/utils/version.py
 ${PYSITELIB}/IPython/utils/version.pyc
 ${PYSITELIB}/IPython/utils/version.pyo
-${PYSITELIB}/IPython/utils/warn.py
-${PYSITELIB}/IPython/utils/warn.pyc
-${PYSITELIB}/IPython/utils/warn.pyo
 ${PYSITELIB}/IPython/utils/wildcard.py
 ${PYSITELIB}/IPython/utils/wildcard.pyc
 ${PYSITELIB}/IPython/utils/wildcard.pyo
-${PYSITELIB}/${EGG_FILE}
 man/man1/ipython${PYVERSSUFFIX}.1
diff -r 37948cae8ccd -r 54c57f57a573 devel/py-ipython/distinfo
--- a/devel/py-ipython/distinfo Mon Oct 16 17:21:26 2017 +0000
+++ b/devel/py-ipython/distinfo Mon Oct 16 18:03:49 2017 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2017/06/24 08:07:14 adam Exp $
+$NetBSD: distinfo,v 1.7 2017/10/16 18:03:49 adam Exp $
 
-SHA1 (ipython-5.4.1.tar.gz) = 7585dc12127e0174f7b8c1cf1460e745485b88e1
-RMD160 (ipython-5.4.1.tar.gz) = 5910b2bd94b889741bc70d1f956f2c9d52bc31f4
-SHA512 (ipython-5.4.1.tar.gz) = b37dae27a558585ec4f42fa22e86380ac81990207ec680fc7b0e6f97ac81c99d915cfe77488bc0b91a61c34e0c00b323df08aa06b142ce0fc88ce30203102907
-Size (ipython-5.4.1.tar.gz) = 4973571 bytes
+SHA1 (ipython-6.2.1.tar.gz) = 2b27777e44632ab154571419e71c79c146445ad2
+RMD160 (ipython-6.2.1.tar.gz) = f7094dd45769f922d15f84ea3f3352e5da4ec812
+SHA512 (ipython-6.2.1.tar.gz) = ddc9f8004293ec6b7653f857b00d79b6d28ea3b79be894dc7f8ec993c7dc53b244de21a65322915f6bbcf82bbbd0f5632ff378774247315b67c6142cf9228222
+Size (ipython-6.2.1.tar.gz) = 5075151 bytes
 SHA1 (patch-setupbase.py) = 8cd647afb3f26f19f5b8d872af7835b73615b324



Home | Main Index | Thread Index | Old Index