pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/py-jupyter_core py-jupyter_core: updated to 4.5.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/2e6f1759011a
branches: trunk
changeset: 335498:2e6f1759011a
user: adam <adam%pkgsrc.org@localhost>
date: Thu Jun 20 16:12:39 2019 +0000
description:
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:
devel/py-jupyter_core/ALTERNATIVES | 5 +++--
devel/py-jupyter_core/Makefile | 15 +++++++--------
devel/py-jupyter_core/PLIST | 14 ++++++++++----
devel/py-jupyter_core/distinfo | 10 +++++-----
4 files changed, 25 insertions(+), 19 deletions(-)
diffs (89 lines):
diff -r 116f00eab0f1 -r 2e6f1759011a devel/py-jupyter_core/ALTERNATIVES
--- a/devel/py-jupyter_core/ALTERNATIVES Thu Jun 20 16:11:08 2019 +0000
+++ b/devel/py-jupyter_core/ALTERNATIVES Thu Jun 20 16:12:39 2019 +0000
@@ -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 -r 116f00eab0f1 -r 2e6f1759011a devel/py-jupyter_core/Makefile
--- a/devel/py-jupyter_core/Makefile Thu Jun 20 16:11:08 2019 +0000
+++ b/devel/py-jupyter_core/Makefile Thu Jun 20 16:12:39 2019 +0000
@@ -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 @@
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 @@
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 -r 116f00eab0f1 -r 2e6f1759011a devel/py-jupyter_core/PLIST
--- a/devel/py-jupyter_core/PLIST Thu Jun 20 16:11:08 2019 +0000
+++ b/devel/py-jupyter_core/PLIST Thu Jun 20 16:12:39 2019 +0000
@@ -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 -r 116f00eab0f1 -r 2e6f1759011a devel/py-jupyter_core/distinfo
--- a/devel/py-jupyter_core/distinfo Thu Jun 20 16:11:08 2019 +0000
+++ b/devel/py-jupyter_core/distinfo Thu Jun 20 16:12:39 2019 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index