Received: by mail.netbsd.org (Postfix, from userid 605) id C04DE84DE4; Tue, 19 Feb 2019 08:29:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4730884D51 for ; Tue, 19 Feb 2019 08:29:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id S9XtKK9mSbIQ for ; Tue, 19 Feb 2019 08:29:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A033984C81 for ; Tue, 19 Feb 2019 08:29:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8E3DFFB16; Tue, 19 Feb 2019 08:29:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1550564996126740" MIME-Version: 1.0 Date: Tue, 19 Feb 2019 08:29:56 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-ipython To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190219082956.8E3DFFB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1550564996126740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Feb 19 08:29:56 UTC 2019 Modified Files: pkgsrc/devel/py-ipython: Makefile PLIST distinfo Log Message: py-ipython: updated to 7.3.0 IPython 7.3.0 IPython 7.3.0 bring several bug fixes and small improvements that you will described bellow. The biggest change to this release is the implementation of the %conda and %pip magics, that will attempt to install packages in the **current environment**. You may still need to restart your interpreter or kernel for the change to be taken into account, but it should simplify installation of packages into remote environment. Installing using pip/conda from the command line is still the prefer method. The %pip magic was already present, but was only printing a warning; now it will actually forward commands to pip. Misc bug fixes and improvements: - Compatibility with Python 3.8. - Do not expand shell variable in execution magics, and added the no_var_expand decorator for magic requiring a similar functionality - Add %pip and %conda magic - Re-initialize posix aliases after a %reset - Allow the IPython command line to run *.ipynb files To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/devel/py-ipython/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-ipython/PLIST cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-ipython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1550564996126740 Content-Disposition: inline Content-Length: 2653 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-ipython/Makefile diff -u pkgsrc/devel/py-ipython/Makefile:1.32 pkgsrc/devel/py-ipython/Makefile:1.33 --- pkgsrc/devel/py-ipython/Makefile:1.32 Fri Nov 30 09:59:40 2018 +++ pkgsrc/devel/py-ipython/Makefile Tue Feb 19 08:29:56 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.32 2018/11/30 09:59:40 adam Exp $ +# $NetBSD: Makefile,v 1.33 2019/02/19 08:29:56 adam Exp $ -DISTNAME= ipython-7.2.0 +DISTNAME= ipython-7.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipython/} Index: pkgsrc/devel/py-ipython/PLIST diff -u pkgsrc/devel/py-ipython/PLIST:1.10 pkgsrc/devel/py-ipython/PLIST:1.11 --- pkgsrc/devel/py-ipython/PLIST:1.10 Wed Nov 21 17:31:50 2018 +++ pkgsrc/devel/py-ipython/PLIST Tue Feb 19 08:29:56 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2018/11/21 17:31:50 adam Exp $ +@comment $NetBSD: PLIST,v 1.11 2019/02/19 08:29:56 adam Exp $ bin/iptest-${PYVERSSUFFIX} bin/ipython-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_FILE} @@ -149,6 +149,9 @@ ${PYSITELIB}/IPython/core/magics/namespa ${PYSITELIB}/IPython/core/magics/osm.py ${PYSITELIB}/IPython/core/magics/osm.pyc ${PYSITELIB}/IPython/core/magics/osm.pyo +${PYSITELIB}/IPython/core/magics/packaging.py +${PYSITELIB}/IPython/core/magics/packaging.pyc +${PYSITELIB}/IPython/core/magics/packaging.pyo ${PYSITELIB}/IPython/core/magics/pylab.py ${PYSITELIB}/IPython/core/magics/pylab.pyc ${PYSITELIB}/IPython/core/magics/pylab.pyo Index: pkgsrc/devel/py-ipython/distinfo diff -u pkgsrc/devel/py-ipython/distinfo:1.13 pkgsrc/devel/py-ipython/distinfo:1.14 --- pkgsrc/devel/py-ipython/distinfo:1.13 Fri Nov 30 09:59:40 2018 +++ pkgsrc/devel/py-ipython/distinfo Tue Feb 19 08:29:56 2019 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.13 2018/11/30 09:59:40 adam Exp $ +$NetBSD: distinfo,v 1.14 2019/02/19 08:29:56 adam Exp $ -SHA1 (ipython-7.2.0.tar.gz) = a7d77e97989e72a4fb767045b9c215fdac586c36 -RMD160 (ipython-7.2.0.tar.gz) = 067d31e86e2b04d721477e18e1e3645c1c71d60b -SHA512 (ipython-7.2.0.tar.gz) = 2236b620d66592d8cb453d03393d818c924f230dbc50f4b1a898fd746bf5c2dde345caa695024e508c81ee5e0e58452613bc31febf8e6df5485efb273327f95b -Size (ipython-7.2.0.tar.gz) = 5112895 bytes +SHA1 (ipython-7.3.0.tar.gz) = 9e739ddb2313f887eaab85ec3fb6fd1d072d45d8 +RMD160 (ipython-7.3.0.tar.gz) = b893f1e24bf37b92e97006b43382a16ba36e4b41 +SHA512 (ipython-7.3.0.tar.gz) = 3fc0de6b7d1af9e48fd265df57ea2a51d73464d0d7d475cc6d84f219eb6f6705c843ceb2656ee2e8d8fd66d1dcc5b26ff6e7080a7560a981e97d206fd65ebacc +Size (ipython-7.3.0.tar.gz) = 5115887 bytes SHA1 (patch-setupbase.py) = 8cd647afb3f26f19f5b8d872af7835b73615b324 --_----------=_1550564996126740--