pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-jupyter_core



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jun 20 16:12:39 UTC 2019

Modified Files:
        pkgsrc/devel/py-jupyter_core: ALTERNATIVES Makefile PLIST distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-jupyter_core/ALTERNATIVES \
    pkgsrc/devel/py-jupyter_core/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-jupyter_core/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-jupyter_core/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-jupyter_core/ALTERNATIVES
diff -u pkgsrc/devel/py-jupyter_core/ALTERNATIVES:1.1 pkgsrc/devel/py-jupyter_core/ALTERNATIVES:1.2
--- pkgsrc/devel/py-jupyter_core/ALTERNATIVES:1.1       Sun Apr 23 04:23:52 2017
+++ pkgsrc/devel/py-jupyter_core/ALTERNATIVES   Thu Jun 20 16:12:39 2019
@@ -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@
Index: pkgsrc/devel/py-jupyter_core/PLIST
diff -u pkgsrc/devel/py-jupyter_core/PLIST:1.1 pkgsrc/devel/py-jupyter_core/PLIST:1.2
--- pkgsrc/devel/py-jupyter_core/PLIST:1.1      Sun Apr 23 04:23:52 2017
+++ pkgsrc/devel/py-jupyter_core/PLIST  Thu Jun 20 16:12:39 2019
@@ -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

Index: pkgsrc/devel/py-jupyter_core/Makefile
diff -u pkgsrc/devel/py-jupyter_core/Makefile:1.4 pkgsrc/devel/py-jupyter_core/Makefile:1.5
--- pkgsrc/devel/py-jupyter_core/Makefile:1.4   Thu May 23 19:22:59 2019
+++ pkgsrc/devel/py-jupyter_core/Makefile       Thu Jun 20 16:12:39 2019
@@ -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"

Index: pkgsrc/devel/py-jupyter_core/distinfo
diff -u pkgsrc/devel/py-jupyter_core/distinfo:1.3 pkgsrc/devel/py-jupyter_core/distinfo:1.4
--- pkgsrc/devel/py-jupyter_core/distinfo:1.3   Tue Feb  6 01:40:48 2018
+++ pkgsrc/devel/py-jupyter_core/distinfo       Thu Jun 20 16:12:39 2019
@@ -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