Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Apr 2020 07:25:12 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r530580 - in head/devel/py-jupyterlab: . files
Message-ID:  <202004040725.0347PC2E044617@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Apr  4 07:25:12 2020
New Revision: 530580
URL: https://svnweb.freebsd.org/changeset/ports/530580

Log:
  Fix build with py-jupyterlab_server 1.1.0
  
  - Bump PORTREVISION for package change

Added:
  head/devel/py-jupyterlab/files/
  head/devel/py-jupyterlab/files/patch-setup.py   (contents, props changed)
Modified:
  head/devel/py-jupyterlab/Makefile

Modified: head/devel/py-jupyterlab/Makefile
==============================================================================
--- head/devel/py-jupyterlab/Makefile	Sat Apr  4 07:25:06 2020	(r530579)
+++ head/devel/py-jupyterlab/Makefile	Sat Apr  4 07:25:12 2020	(r530580)
@@ -3,6 +3,7 @@
 
 PORTNAME=	jupyterlab
 PORTVERSION=	2.0.1
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -14,7 +15,7 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}jupyterlab_server>=1.0.0<1.1:devel/py-jupyterlab_server@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}jupyterlab_server>=1.1.0:devel/py-jupyterlab_server@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}notebook>=4.3.1:www/py-notebook@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}tornado>=0:www/py-tornado@${PY_FLAVOR}
 

Added: head/devel/py-jupyterlab/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jupyterlab/files/patch-setup.py	Sat Apr  4 07:25:12 2020	(r530580)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2020-03-06 07:31:51 UTC
++++ setup.py
+@@ -139,7 +139,7 @@ setup_args = dict(
+ setup_args['install_requires'] = [
+     'notebook>=4.3.1',
+     'tornado!=6.0.0, !=6.0.1, !=6.0.2',
+-    'jupyterlab_server~=1.0.0',
++    'jupyterlab_server>=1.1.0',
+     'jinja2>=2.10'
+ ]
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004040725.0347PC2E044617>