Date: Sat, 21 Mar 2020 14:22:00 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528855 - in head/devel: py-ipykernel py-jupyter_client py-nbconvert Message-ID: <202003211422.02LEM05c071212@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Sat Mar 21 14:22:00 2020 New Revision: 528855 URL: https://svnweb.freebsd.org/changeset/ports/528855 Log: devel/py-jupyter_client: Update to 6.1.0 - Add test target. - Remove support for Python 2.x. - Update consumers to use Python >= 3.5 (avoid break bulk -a). Changelog: https://github.com/jupyter/jupyter_client/blob/6.1.0/docs/changelog.rst PR: 244933 Approved by: koobs (python, maintainer) Modified: head/devel/py-ipykernel/Makefile head/devel/py-jupyter_client/Makefile head/devel/py-jupyter_client/distinfo head/devel/py-nbconvert/Makefile Modified: head/devel/py-ipykernel/Makefile ============================================================================== --- head/devel/py-ipykernel/Makefile Sat Mar 21 13:10:39 2020 (r528854) +++ head/devel/py-ipykernel/Makefile Sat Mar 21 14:22:00 2020 (r528855) @@ -2,6 +2,7 @@ PORTNAME= ipykernel PORTVERSION= 4.10.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +19,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython5>=4.0.0:de ${PYTHON_PKGNAMEPREFIX}tornado>=4.0:www/py-tornado@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traitlets>=4.1.0:devel/py-traitlets@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/devel/py-jupyter_client/Makefile ============================================================================== --- head/devel/py-jupyter_client/Makefile Sat Mar 21 13:10:39 2020 (r528854) +++ head/devel/py-jupyter_client/Makefile Sat Mar 21 14:22:00 2020 (r528855) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jupyter_client -PORTVERSION= 5.3.4 +PORTVERSION= 6.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,10 +17,17 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:deve ${PYTHON_PKGNAMEPREFIX}pyzmq>=13:net/py-pyzmq@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tornado>=4.1:www/py-tornado@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traitlets>=0:devel/py-traitlets@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ipykernel5>=0:devel/py-ipykernel5@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs -o addopts= .include <bsd.port.mk> Modified: head/devel/py-jupyter_client/distinfo ============================================================================== --- head/devel/py-jupyter_client/distinfo Sat Mar 21 13:10:39 2020 (r528854) +++ head/devel/py-jupyter_client/distinfo Sat Mar 21 14:22:00 2020 (r528855) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572528643 -SHA256 (jupyter_client-5.3.4.tar.gz) = 60e6faec1031d63df57f1cc671ed673dced0ed420f4377ea33db37b1c188b910 -SIZE (jupyter_client-5.3.4.tar.gz) = 275850 +TIMESTAMP = 1584725172 +SHA256 (jupyter_client-6.1.0.tar.gz) = 61429e7d2c4b385135d31054944dd3f23a1c6affb0ca3d4328d42fc9ba82b7f5 +SIZE (jupyter_client-6.1.0.tar.gz) = 290120 Modified: head/devel/py-nbconvert/Makefile ============================================================================== --- head/devel/py-nbconvert/Makefile Sat Mar 21 13:10:39 2020 (r528854) +++ head/devel/py-nbconvert/Makefile Sat Mar 21 14:22:00 2020 (r528855) @@ -2,6 +2,7 @@ PORTNAME= nbconvert PORTVERSION= 5.6.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -25,7 +26,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.4:devel/ ${PYTHON_PKGNAMEPREFIX}testpath>=0:devel/py-testpath@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traitlets>=4.2:devel/py-traitlets@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003211422.02LEM05c071212>