Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Jan 2017 19:08:56 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r431019 - in head/devel: . py-nbformat
Message-ID:  <201701091908.v09J8up4037285@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Mon Jan  9 19:08:56 2017
New Revision: 431019
URL: https://svnweb.freebsd.org/changeset/ports/431019

Log:
  New port: devel/py-nbformat
  This package contains the base implementation of the Jupyter Notebook format,
  and Python APIs for working with notebooks.
  WWW: http://jupyter.org/

Added:
  head/devel/py-nbformat/
  head/devel/py-nbformat/Makefile   (contents, props changed)
  head/devel/py-nbformat/distinfo   (contents, props changed)
  head/devel/py-nbformat/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jan  9 19:05:33 2017	(r431018)
+++ head/devel/Makefile	Mon Jan  9 19:08:56 2017	(r431019)
@@ -4382,6 +4382,7 @@
     SUBDIR += py-nagioscheck
     SUBDIR += py-natsort
     SUBDIR += py-natural
+    SUBDIR += py-nbformat
     SUBDIR += py-ncurses
     SUBDIR += py-nose
     SUBDIR += py-nose-cov

Added: head/devel/py-nbformat/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nbformat/Makefile	Mon Jan  9 19:08:56 2017	(r431019)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	nbformat
+PORTVERSION=	4.2.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	python@FreeBSD.org
+COMMENT=	Jupyter Notebook format
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING.md
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ipython_genutils>=0:devel/py-ipython_genutils \
+		${PYTHON_PKGNAMEPREFIX}jsonschema>=2.4:devel/py-jsonschema \
+		${PYTHON_PKGNAMEPREFIX}jupyter_core>=0:devel/py-jupyter_core \
+		${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3 \
+		${PYTHON_PKGNAMEPREFIX}traitlets>=4.1:devel/py-traitlets
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest \
+		${PYTHON_PKGNAMEPREFIX}testpath>=0:devel/py-testpath
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+do-test:
+	@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYTHON_VER})
+
+.include <bsd.port.mk>

Added: head/devel/py-nbformat/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nbformat/distinfo	Mon Jan  9 19:08:56 2017	(r431019)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1483907218
+SHA256 (nbformat-4.2.0.tar.gz) = 389a5b630a30539074f238a48fb9864592f63d611baccfa2ffaf14ffe239de06
+SIZE (nbformat-4.2.0.tar.gz) = 110309

Added: head/devel/py-nbformat/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nbformat/pkg-descr	Mon Jan  9 19:08:56 2017	(r431019)
@@ -0,0 +1,4 @@
+This package contains the base implementation of the Jupyter Notebook format,
+and Python APIs for working with notebooks.
+
+WWW: http://jupyter.org/



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