summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2019-06-20 16:12:39 +0000
committeradam <adam@pkgsrc.org>2019-06-20 16:12:39 +0000
commit4e8033990a556a56fd309d0b7cd4edf459c62748 (patch)
tree311d30bb3fed8185c47c88f77f780be072cabe2e /devel
parent0a41cb5505c676b42cb1f9c77213f970de56b6d0 (diff)
downloadpkgsrc-4e8033990a556a56fd309d0b7cd4edf459c62748.tar.gz
py-jupyter_core: updated to 4.5.0
4.5.0 - jupyter --version now tries to show the version number of various other installed Jupyter packages, not just jupyter_core. This will hopefully make it clearer that there are various packages with their own version numbers. - Allow a :envvar:JUPYTER_CONFIG_PATH environment variable to specify a search path of additional locations for config. - jupyter subcommand no longer modifies the :envvar:PATH environment variable when it runs jupyter-subcommand. - Jupyter's 'runtime' directory no longer uses XDG_RUNTIME_DIR. While it has some attractive properties, it has led to various problems; see the pull request for details. - Fix JupyterApp to respect the raise_config_file_errors traitlet. - Various improvements to the bash completion scripts in this repository - The setup.py script now always uses setuptools, like most other Jupyter projects. - The LICENSE file is included in wheels.
Diffstat (limited to 'devel')
-rw-r--r--devel/py-jupyter_core/ALTERNATIVES5
-rw-r--r--devel/py-jupyter_core/Makefile15
-rw-r--r--devel/py-jupyter_core/PLIST14
-rw-r--r--devel/py-jupyter_core/distinfo10
4 files changed, 25 insertions, 19 deletions
diff --git a/devel/py-jupyter_core/ALTERNATIVES b/devel/py-jupyter_core/ALTERNATIVES
index 3b05fcf4744..5eb44dc5aa4 100644
--- a/devel/py-jupyter_core/ALTERNATIVES
+++ b/devel/py-jupyter_core/ALTERNATIVES
@@ -1,2 +1,3 @@
-bin/jupyter @PREFIX@/bin/jupyter@PYVERSSUFFIX@
-bin/jupyter-migrate @PREFIX@/bin/jupyter-migrate@PYVERSSUFFIX@
+bin/jupyter @PREFIX@/bin/jupyter-@PYVERSSUFFIX@
+bin/jupyter-migrate @PREFIX@/bin/jupyter-migrate-@PYVERSSUFFIX@
+bin/jupyter-troubleshoot @PREFIX@/bin/jupyter-troubleshoot-@PYVERSSUFFIX@
diff --git a/devel/py-jupyter_core/Makefile b/devel/py-jupyter_core/Makefile
index bd136bcbfd3..6e6c8bcf470 100644
--- a/devel/py-jupyter_core/Makefile
+++ b/devel/py-jupyter_core/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2019/05/23 19:22:59 rillig Exp $
+# $NetBSD: Makefile,v 1.5 2019/06/20 16:12:39 adam Exp $
-DISTNAME= jupyter_core-4.4.0
+DISTNAME= jupyter_core-4.5.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=j/jupyter_core/}
@@ -12,7 +11,7 @@ COMMENT= Jupyter core package
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-traitlets>=4.1.0:../../devel/py-traitlets
-BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
USE_LANGUAGES= # none
@@ -24,12 +23,12 @@ SUBST_VARS.fix-prefix= PREFIX
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
- ${MV} jupyter jupyter${PYVERSSUFFIX} && \
- ${MV} jupyter-migrate jupyter-migrate${PYVERSSUFFIX} || ${TRUE}
+ ${MV} jupyter jupyter-${PYVERSSUFFIX} && \
+ ${MV} jupyter-migrate jupyter-migrate-${PYVERSSUFFIX} && \
+ ${MV} jupyter-troubleshoot jupyter-troubleshoot-${PYVERSSUFFIX} || ${TRUE}
do-test:
cd ${WRKSRC}/jupyter_core && py.test-${PYVERSSUFFIX}
-.include "../../lang/python/distutils.mk"
-.include "../../lang/python/application.mk"
+.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/py-jupyter_core/PLIST b/devel/py-jupyter_core/PLIST
index f9e49e6396e..90b470a7d19 100644
--- a/devel/py-jupyter_core/PLIST
+++ b/devel/py-jupyter_core/PLIST
@@ -1,10 +1,16 @@
-@comment $NetBSD: PLIST,v 1.1 2017/04/23 04:23:52 markd Exp $
-bin/jupyter${PYVERSSUFFIX}
-bin/jupyter-migrate${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.2 2019/06/20 16:12:39 adam Exp $
+bin/jupyter-${PYVERSSUFFIX}
+bin/jupyter-migrate-${PYVERSSUFFIX}
+bin/jupyter-troubleshoot-${PYVERSSUFFIX}
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/jupyter.py
${PYSITELIB}/jupyter.pyc
${PYSITELIB}/jupyter.pyo
-${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/jupyter_core/__init__.py
${PYSITELIB}/jupyter_core/__init__.pyc
${PYSITELIB}/jupyter_core/__init__.pyo
diff --git a/devel/py-jupyter_core/distinfo b/devel/py-jupyter_core/distinfo
index ecbf49c4a93..04108f54182 100644
--- a/devel/py-jupyter_core/distinfo
+++ b/devel/py-jupyter_core/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.3 2018/02/06 01:40:48 minskim Exp $
+$NetBSD: distinfo,v 1.4 2019/06/20 16:12:39 adam Exp $
-SHA1 (jupyter_core-4.4.0.tar.gz) = 24ac33f4a1b1ff8e946cb1d563eb5989fdf8c6ef
-RMD160 (jupyter_core-4.4.0.tar.gz) = 1949d15f4f635b6919cbd07dbdd05f98702728cd
-SHA512 (jupyter_core-4.4.0.tar.gz) = 387f7f98f640b85ff0a24f11e1beae5a851d7eb3ba4a423be028940cb018c0d0ddf42ae8a1c397e3e4cafa560d3a5385b39bb8794448c7c010be7f0ddcba8a9e
-Size (jupyter_core-4.4.0.tar.gz) = 63613 bytes
+SHA1 (jupyter_core-4.5.0.tar.gz) = c223ba429fa348b7796a71d709ae705f9a39fb2c
+RMD160 (jupyter_core-4.5.0.tar.gz) = 4d2fba3ec9b47497154b7b3d4e119f9e0d3d86df
+SHA512 (jupyter_core-4.5.0.tar.gz) = c22f3cd61aac8fbcad31e0e420854dc43e2a414284e1c2657b180870e3ecc0ce2ff0e2bc7262b9b37786f31b6f7e094d6998a49b68bad6b0f6bac59c789a14e6
+Size (jupyter_core-4.5.0.tar.gz) = 60892 bytes
SHA1 (patch-jupyter__core_paths.py) = 2ed2b8bda891e323f7102e36fd66cfd61340b822