pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-ipython



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Oct 16 18:03:49 UTC 2017

Modified Files:
        pkgsrc/devel/py-ipython: ALTERNATIVES Makefile PLIST distinfo

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-ipython/ALTERNATIVES
cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-ipython/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-ipython/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-ipython/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-ipython/ALTERNATIVES
diff -u pkgsrc/devel/py-ipython/ALTERNATIVES:1.1 pkgsrc/devel/py-ipython/ALTERNATIVES:1.2
--- pkgsrc/devel/py-ipython/ALTERNATIVES:1.1    Tue Dec 15 10:23:03 2015
+++ pkgsrc/devel/py-ipython/ALTERNATIVES        Mon Oct 16 18:03:49 2017
@@ -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@

Index: pkgsrc/devel/py-ipython/Makefile
diff -u pkgsrc/devel/py-ipython/Makefile:1.21 pkgsrc/devel/py-ipython/Makefile:1.22
--- pkgsrc/devel/py-ipython/Makefile:1.21       Sat Jun 24 08:07:14 2017
+++ pkgsrc/devel/py-ipython/Makefile    Mon Oct 16 18:03:49 2017
@@ -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 @@ HOMEPAGE=   http://ipython.org/
 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}-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}-setuptools>=18.5:../../devel/py-setuptools
 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"

Index: pkgsrc/devel/py-ipython/PLIST
diff -u pkgsrc/devel/py-ipython/PLIST:1.7 pkgsrc/devel/py-ipython/PLIST:1.8
--- pkgsrc/devel/py-ipython/PLIST:1.7   Sat Jun 24 08:07:14 2017
+++ pkgsrc/devel/py-ipython/PLIST       Mon Oct 16 18:03:49 2017
@@ -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/pylabtools.pyo
 ${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
 ${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/PyColorize.py
 ${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_win3
 ${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/process.pyo
 ${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/ulinecache.py
 ${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

Index: pkgsrc/devel/py-ipython/distinfo
diff -u pkgsrc/devel/py-ipython/distinfo:1.6 pkgsrc/devel/py-ipython/distinfo:1.7
--- pkgsrc/devel/py-ipython/distinfo:1.6        Sat Jun 24 08:07:14 2017
+++ pkgsrc/devel/py-ipython/distinfo    Mon Oct 16 18:03:49 2017
@@ -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