From owner-svn-ports-head@freebsd.org Mon Jan 9 19:35:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57634CA6040; Mon, 9 Jan 2017 19:35:42 +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 mx1.freebsd.org (Postfix) with ESMTPS id 33CE71C44; Mon, 9 Jan 2017 19:35:42 +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 v09JZfbZ049831; Mon, 9 Jan 2017 19:35:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v09JZf57049827; Mon, 9 Jan 2017 19:35:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201701091935.v09JZf57049827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 9 Jan 2017 19:35:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431023 - in head/www: . py-notebook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jan 2017 19:35:42 -0000 Author: antoine Date: Mon Jan 9 19:35:40 2017 New Revision: 431023 URL: https://svnweb.freebsd.org/changeset/ports/431023 Log: New port: www/py-notebook The Jupyter Notebook is a web application that allows you to create and share documents that contain live code, equations, visualizations, and explanatory text. The Notebook has support for multiple programming languages, sharing, and interactive widgets. WWW: http://jupyter.org/ Added: head/www/py-notebook/ head/www/py-notebook/Makefile (contents, props changed) head/www/py-notebook/distinfo (contents, props changed) head/www/py-notebook/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jan 9 19:23:19 2017 (r431022) +++ head/www/Makefile Mon Jan 9 19:35:40 2017 (r431023) @@ -1684,6 +1684,7 @@ SUBDIR += py-meld3 SUBDIR += py-mt SUBDIR += py-nevow + SUBDIR += py-notebook SUBDIR += py-octoprint SUBDIR += py-pafy SUBDIR += py-paste Added: head/www/py-notebook/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-notebook/Makefile Mon Jan 9 19:35:40 2017 (r431023) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= notebook +PORTVERSION= 4.3.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Web-based notebook environment for interactive computing + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}terminado>=0.3.3:net/py-terminado \ + ${PYTHON_PKGNAMEPREFIX}traitlets>=0:devel/py-traitlets \ + ${PYTHON_PKGNAMEPREFIX}tornado>=4:www/py-tornado \ + ${PYTHON_PKGNAMEPREFIX}nbformat>=0:devel/py-nbformat \ + ${PYTHON_PKGNAMEPREFIX}nbconvert>=0:devel/py-nbconvert \ + ${PYTHON_PKGNAMEPREFIX}jupyter_core>=0:devel/py-jupyter_core \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2 \ + ${PYTHON_PKGNAMEPREFIX}ipython_genutils>=0:devel/py-ipython_genutils \ + ${PYTHON_PKGNAMEPREFIX}ipykernel>=0:devel/py-ipykernel + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/www/py-notebook/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-notebook/distinfo Mon Jan 9 19:35:40 2017 (r431023) @@ -0,0 +1,3 @@ +TIMESTAMP = 1483909300 +SHA256 (notebook-4.3.1.tar.gz) = 922b911f3cd1b20cf37d5ac365521586678fca4b8d20476fc369907b4a0ae1af +SIZE (notebook-4.3.1.tar.gz) = 10162992 Added: head/www/py-notebook/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-notebook/pkg-descr Mon Jan 9 19:35:40 2017 (r431023) @@ -0,0 +1,6 @@ +The Jupyter Notebook is a web application that allows you to create and share +documents that contain live code, equations, visualizations, and explanatory +text. The Notebook has support for multiple programming languages, sharing, and +interactive widgets. + +WWW: http://jupyter.org/