Updatre to py-nbconvert 5.2.1
This commit is contained in:
parent
37507da329
commit
3742f3d74c
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2017/02/23 13:58:32 shadchin Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2017/05/25 11:45:25 shadchin Exp $
|
||||
|
||||
COMMENT = converting Jupyter notebooks
|
||||
|
||||
MODPY_EGG_VERSION = 5.1.1
|
||||
MODPY_EGG_VERSION = 5.2.1
|
||||
DISTNAME = nbconvert-${MODPY_EGG_VERSION}
|
||||
PKGNAME = py-${DISTNAME}
|
||||
|
||||
@ -17,6 +17,12 @@ PERMIT_PACKAGE_CDROM = Yes
|
||||
|
||||
MODULES = lang/python
|
||||
|
||||
MODPY_PI = Yes
|
||||
MODPY_SETUPTOOLS = Yes
|
||||
|
||||
FLAVORS = python3
|
||||
FLAVOR ?=
|
||||
|
||||
RUN_DEPENDS = devel/py-entrypoints${MODPY_FLAVOR} \
|
||||
devel/py-jupyter_client${MODPY_FLAVOR}>=5.0.0 \
|
||||
devel/py-jupyter_core${MODPY_FLAVOR}>=4.3.0 \
|
||||
@ -36,12 +42,6 @@ TEST_DEPENDS = ${BASE_PKGPATH}=${MODPY_EGG_VERSION} \
|
||||
devel/py-nose${MODPY_FLAVOR} \
|
||||
devel/py-test${MODPY_FLAVOR}
|
||||
|
||||
MODPY_PI = Yes
|
||||
MODPY_SETUPTOOLS = Yes
|
||||
|
||||
FLAVORS = python3
|
||||
FLAVOR ?=
|
||||
|
||||
post-install:
|
||||
mv ${PREFIX}/bin/jupyter-nbconvert{,${MODPY_BIN_SUFFIX}}
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (nbconvert-5.1.1.tar.gz) = hHcxvDmCnQ6x4VpFCsmMcXMONZjlNoPU12o/Oz/FAX0=
|
||||
SIZE (nbconvert-5.1.1.tar.gz) = 395032
|
||||
SHA256 (nbconvert-5.2.1.tar.gz) = ntaOx/6QqGcrQ3lbKeqRzHXqNVyD3ryD69EhcVIewnQ=
|
||||
SIZE (nbconvert-5.2.1.tar.gz) = 510937
|
||||
|
10
devel/py-nbconvert/patches/patch-nbconvert_exporters_html_py
Normal file
10
devel/py-nbconvert/patches/patch-nbconvert_exporters_html_py
Normal file
@ -0,0 +1,10 @@
|
||||
$OpenBSD: patch-nbconvert_exporters_html_py,v 1.1 2017/05/25 11:45:25 shadchin Exp $
|
||||
|
||||
Index: nbconvert/exporters/html.py
|
||||
--- nbconvert/exporters/html.py.orig
|
||||
+++ nbconvert/exporters/html.py
|
||||
@@ -1,3 +1,4 @@
|
||||
+# coding: utf-8
|
||||
"""HTML Exporter class"""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
@ -0,0 +1,10 @@
|
||||
$OpenBSD: patch-nbconvert_filters_markdown_mistune_py,v 1.1 2017/05/25 11:45:25 shadchin Exp $
|
||||
|
||||
Index: nbconvert/filters/markdown_mistune.py
|
||||
--- nbconvert/filters/markdown_mistune.py.orig
|
||||
+++ nbconvert/filters/markdown_mistune.py
|
||||
@@ -1,3 +1,4 @@
|
||||
+# coding: utf-8
|
||||
"""Markdown filters with mistune
|
||||
|
||||
Used from markdown.py
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2017/02/23 13:58:32 shadchin Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.5 2017/05/25 11:45:25 shadchin Exp $
|
||||
bin/jupyter-nbconvert${MODPY_BIN_SUFFIX}
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
|
||||
@ -163,6 +163,7 @@ lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE}extractoutput.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE}highlightmagics.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE}latex.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE}regexremove.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE}sanitize.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/${MODPY_PYCACHE}svg2pdf.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/base.py
|
||||
@ -174,6 +175,7 @@ lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/execute.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/extractoutput.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/highlightmagics.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/latex.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/regexremove.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/sanitize.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/svg2pdf.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/
|
||||
@ -189,6 +191,7 @@ lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_P
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_PYCACHE}test_extractoutput.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_PYCACHE}test_highlightmagics.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_PYCACHE}test_latex.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_PYCACHE}test_regexremove.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_PYCACHE}test_sanitize.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/${MODPY_PYCACHE}test_svg2pdf.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/base.py
|
||||
@ -204,6 +207,7 @@ lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/files/SVG
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/files/Skip Exceptions.ipynb
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/files/Unicode.ipynb
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/files/python.png
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/files/update-display-id.ipynb
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_clearoutput.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_coalescestreams.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_csshtmlheader.py
|
||||
@ -211,6 +215,7 @@ lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_exec
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_extractoutput.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_highlightmagics.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_latex.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_regexremove.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_sanitize.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/preprocessors/tests/test_svg2pdf.py
|
||||
lib/python${MODPY_VERSION}/site-packages/nbconvert/resources/
|
||||
|
Loading…
x
Reference in New Issue
Block a user