From owner-svn-ports-all@freebsd.org Mon Aug 6 11:23:44 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF6831054358; Mon, 6 Aug 2018 11:23:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 83E4C74268; Mon, 6 Aug 2018 11:23:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6573F4732; Mon, 6 Aug 2018 11:23:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w76BNh4E017945; Mon, 6 Aug 2018 11:23:43 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w76BNf7h017934; Mon, 6 Aug 2018 11:23:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201808061123.w76BNf7h017934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Aug 2018 11:23:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476507 - in head: devel/py-ipdb devel/py-ipykernel devel/py-ipyparallel devel/py-ipywidgets devel/py-jira devel/py-jupyter_console math/py-yt security/py-rekall X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: devel/py-ipdb devel/py-ipykernel devel/py-ipyparallel devel/py-ipywidgets devel/py-jira devel/py-jupyter_console math/py-yt security/py-rekall X-SVN-Commit-Revision: 476507 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Aug 2018 11:23:44 -0000 Author: antoine Date: Mon Aug 6 11:23:41 2018 New Revision: 476507 URL: https://svnweb.freebsd.org/changeset/ports/476507 Log: Attempt to unbreak ports depending on ipython Modified: head/devel/py-ipdb/Makefile head/devel/py-ipykernel/Makefile head/devel/py-ipyparallel/Makefile head/devel/py-ipywidgets/Makefile head/devel/py-jira/Makefile head/devel/py-jupyter_console/Makefile head/math/py-yt/Makefile head/security/py-rekall/Makefile Modified: head/devel/py-ipdb/Makefile ============================================================================== --- head/devel/py-ipdb/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/devel/py-ipdb/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -2,7 +2,7 @@ PORTNAME= ipdb PORTVERSION= 0.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ COMMENT= IPython-enabled pdb LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=0.10.2:devel/ipython@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython5>=0.10.2:devel/ipython5@${PY_FLAVOR} NO_ARCH= yes USES= python Modified: head/devel/py-ipykernel/Makefile ============================================================================== --- head/devel/py-ipykernel/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/devel/py-ipykernel/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -2,7 +2,7 @@ PORTNAME= ipykernel PORTVERSION= 4.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ COMMENT= IPython Kernel for Jupyter LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.md -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=4.0.0:devel/ipython@${PY_FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython5>=4.0.0:devel/ipython5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jupyter_client>=0:devel/py-jupyter_client@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tornado>=4.0:www/py-tornado@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traitlets>=4.1.0:devel/py-traitlets@${PY_FLAVOR} Modified: head/devel/py-ipyparallel/Makefile ============================================================================== --- head/devel/py-ipyparallel/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/devel/py-ipyparallel/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -2,6 +2,7 @@ PORTNAME= ipyparallel PORTVERSION= 6.2.2 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:deve ${PYTHON_PKGNAMEPREFIX}decorator>=0:devel/py-decorator@${PY_FLAVOR} \ ${PY_FUTURES} \ ${PYTHON_PKGNAMEPREFIX}ipykernel>=0:devel/py-ipykernel@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ipython>=4.0.0:devel/ipython@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ipython5>=4.0.0:devel/ipython5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ipython_genutils>=0:devel/py-ipython_genutils@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jupyter_client>=0:devel/py-jupyter_client@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}notebook>=0:www/py-notebook@${PY_FLAVOR} \ Modified: head/devel/py-ipywidgets/Makefile ============================================================================== --- head/devel/py-ipywidgets/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/devel/py-ipywidgets/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -2,6 +2,7 @@ PORTNAME= ipywidgets PORTVERSION= 7.2.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -9,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= swills@FreeBSD.org COMMENT= Interactive HTML widgets for Jupyter notebooks and the IPython kernel -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=4.0.0:devel/ipython@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython5>=4.0.0:devel/ipython5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ipykernel>=4.2.2:devel/py-ipykernel@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}widgetsnbextension>=1.2:devel/py-widgetsnbextension@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traitlets>=4.2:devel/py-traitlets@${PY_FLAVOR} Modified: head/devel/py-jira/Makefile ============================================================================== --- head/devel/py-jira/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/devel/py-jira/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -3,6 +3,7 @@ PORTNAME= jira PORTVERSION= 1.0.15 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -35,7 +36,7 @@ TESTS_DESC= Install test suite dependencies MAGIC_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}filemagic>=1.6:devel/py-filemagic@${PY_FLAVOR} PARALLEL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}grequests>0:www/py-grequests@${PY_FLAVOR} -SHELL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=0.13:devel/ipython@${PY_FLAVOR} +SHELL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython5>=0.13:devel/ipython5@${PY_FLAVOR} TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} TEST_DEPENDS:= ${RUN_DEPENDS} \ Modified: head/devel/py-jupyter_console/Makefile ============================================================================== --- head/devel/py-jupyter_console/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/devel/py-jupyter_console/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -2,6 +2,7 @@ PORTNAME= jupyter_console PORTVERSION= 5.2.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +14,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.md RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jupyter_client>=0:devel/py-jupyter_client@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ipython>=0:devel/ipython@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ipython5>=0:devel/ipython5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ipykernel>=0:devel/py-ipykernel@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=1.0.4:devel/py-prompt_toolkit@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:textproc/py-pygments@${PY_FLAVOR} Modified: head/math/py-yt/Makefile ============================================================================== --- head/math/py-yt/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/math/py-yt/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -3,7 +3,7 @@ PORTNAME= yt DISTVERSION= 3.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math astro python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,7 +20,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sy ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}pyembree>0:graphics/py-pyembree@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.5.3:math/py-matplotlib@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ipython>=1.0:devel/ipython@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}ipython5>=1.0:devel/ipython5@${PY_FLAVOR} LIB_DEPENDS= libembree.so:graphics/embree \ libomp.so:devel/openmp Modified: head/security/py-rekall/Makefile ============================================================================== --- head/security/py-rekall/Makefile Mon Aug 6 11:21:54 2018 (r476506) +++ head/security/py-rekall/Makefile Mon Aug 6 11:23:41 2018 (r476507) @@ -3,6 +3,7 @@ PORTNAME= rekall DISTVERSION= 1.7.2rc1 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rekall_lib>=1.7.1:security/py-rekall_lib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}rekall-core>=1.7.1:security/py-rekall-core@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ipython>=5.0.0:devel/ipython@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}ipython5>=5.0.0:devel/ipython5@${PY_FLAVOR} NO_ARCH= yes USES= python shebangfix zip