svn commit: r530560 - in head/devel: . py-nbdime

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Apr 4 07:30:58 UTC 2020


Author: sunpoet
Date: Sat Apr  4 07:22:12 2020
New Revision: 530560
URL: https://svnweb.freebsd.org/changeset/ports/530560

Log:
  Add py-nbdime 2.0.0
  
  nbdime provides tools for diffing and merging of Jupyter Notebooks.
  - nbdiff compare notebooks in a terminal-friendly way
  - nbmerge three-way merge of notebooks with automatic conflict resolution
  - nbdiff-web shows you a rich rendered diff of notebooks
  - nbmerge-web gives you a web-based three-way merge tool for notebooks
  - nbshow present a single notebook in a terminal-friendly way
  
  WWW: https://github.com/jupyter/nbdime

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Apr  4 07:22:04 2020	(r530559)
+++ head/devel/Makefile	Sat Apr  4 07:22:12 2020	(r530560)
@@ -4631,6 +4631,7 @@
     SUBDIR += py-natsort
     SUBDIR += py-natural
     SUBDIR += py-nbconvert
+    SUBDIR += py-nbdime
     SUBDIR += py-nbformat
     SUBDIR += py-nodeenv
     SUBDIR += py-nose

Added: head/devel/py-nbdime/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nbdime/Makefile	Sat Apr  4 07:22:12 2020	(r530560)
@@ -0,0 +1,31 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	nbdime
+PORTVERSION=	2.0.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Diff and merge of Jupyter notebooks
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}colorama>=0:devel/py-colorama@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}GitPython>=0:devel/py-gitpython@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}Jinja2>=2.9:devel/py-Jinja2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}nbformat>=0:devel/py-nbformat@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}notebook>=0:www/py-notebook@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}tornado>=0:www/py-tornado@${PY_FLAVOR}
+
+USES=		python:3.5+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-nbdime/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nbdime/distinfo	Sat Apr  4 07:22:12 2020	(r530560)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585907182
+SHA256 (nbdime-2.0.0.tar.gz) = 896f79a23557f190b73a3981fdceb128a2d24454701daef74d82aac2aa10715d
+SIZE (nbdime-2.0.0.tar.gz) = 7768807

Added: head/devel/py-nbdime/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nbdime/pkg-descr	Sat Apr  4 07:22:12 2020	(r530560)
@@ -0,0 +1,8 @@
+nbdime provides tools for diffing and merging of Jupyter Notebooks.
+- nbdiff compare notebooks in a terminal-friendly way
+- nbmerge three-way merge of notebooks with automatic conflict resolution
+- nbdiff-web shows you a rich rendered diff of notebooks
+- nbmerge-web gives you a web-based three-way merge tool for notebooks
+- nbshow present a single notebook in a terminal-friendly way
+
+WWW: https://github.com/jupyter/nbdime


More information about the svn-ports-all mailing list