Received: by mail.netbsd.org (Postfix, from userid 605) id C6A1D84DCD; Sat, 26 Oct 2019 22:51:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 505B984D4D for ; Sat, 26 Oct 2019 22:51:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id dTE6YkPu3Fej for ; Sat, 26 Oct 2019 22:51:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C78F584D27 for ; Sat, 26 Oct 2019 22:51:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C19A3FA8B; Sat, 26 Oct 2019 22:51:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572130290285370" MIME-Version: 1.0 Date: Sat, 26 Oct 2019 22:51:30 +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: <20191026225130.C19A3FA8B@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. --_----------=_1572130290285370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Oct 26 22:51:30 UTC 2019 Modified Files: pkgsrc/devel/py-ipython: Makefile distinfo Log Message: py-ipython: updated to 7.9.0 IPython 7.9 is a small release with a couple of improvement and bug fixes. - Xterm terminal title should be restored on exit - special variables ``_``,``__``, ``___`` are not set anymore when cache size is 0 or less. - Autoreload should have regained some speed by using a new heuristic logic to find all objects needing reload. This should avoid large objects traversal like pandas dataframes. - Get ready for Python 4. - `%env` Magic nonw has euristic to hide potentially sensitive values To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 pkgsrc/devel/py-ipython/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/py-ipython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572130290285370 Content-Disposition: inline Content-Length: 1729 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.40 pkgsrc/devel/py-ipython/Makefile:1.41 --- pkgsrc/devel/py-ipython/Makefile:1.40 Mon Sep 2 07:55:53 2019 +++ pkgsrc/devel/py-ipython/Makefile Sat Oct 26 22:51:30 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.40 2019/09/02 07:55:53 adam Exp $ +# $NetBSD: Makefile,v 1.41 2019/10/26 22:51:30 adam Exp $ -DISTNAME= ipython-7.8.0 +DISTNAME= ipython-7.9.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipython/} Index: pkgsrc/devel/py-ipython/distinfo diff -u pkgsrc/devel/py-ipython/distinfo:1.20 pkgsrc/devel/py-ipython/distinfo:1.21 --- pkgsrc/devel/py-ipython/distinfo:1.20 Mon Sep 2 07:55:53 2019 +++ pkgsrc/devel/py-ipython/distinfo Sat Oct 26 22:51:30 2019 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.20 2019/09/02 07:55:53 adam Exp $ +$NetBSD: distinfo,v 1.21 2019/10/26 22:51:30 adam Exp $ -SHA1 (ipython-7.8.0.tar.gz) = c3d6f2a7071b48639b6ba48b16db76a4c83dbe43 -RMD160 (ipython-7.8.0.tar.gz) = cb00443f657eaaa6df5394fc86d076e65082b337 -SHA512 (ipython-7.8.0.tar.gz) = a7244c9b342dda1fc547bd85e15a2369becbd2fa212a91beb90564c6113ecba98c382a1f5037afcc1ba17b9cd9a7f000838e1bf3fbf78c8da799b9006d3a217a -Size (ipython-7.8.0.tar.gz) = 5198219 bytes +SHA1 (ipython-7.9.0.tar.gz) = d71d6b6215c5cbbab7087df9d61b858fe25d6e62 +RMD160 (ipython-7.9.0.tar.gz) = f7814918d76d323a725f8dc522a2a64830421f5e +SHA512 (ipython-7.9.0.tar.gz) = cc4bb9365598e8e73afce961bfa58782d6b3e61e238f7697c52a374c4d5885acab356c2433ae6f0410ad3978260b1d99ef6233c5b46a537950429a75ad1f7c38 +Size (ipython-7.9.0.tar.gz) = 5124623 bytes SHA1 (patch-setupbase.py) = 241463d5368a4c80c8194244f5c3895196b44da5 --_----------=_1572130290285370--