Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id A55651A9247 for ; Wed, 4 Nov 2020 10:29:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1761584DD6; Wed, 4 Nov 2020 10:29:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 52BEF84DD5 for ; Wed, 4 Nov 2020 10:29:12 +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 LAiT9B9EI0ez for ; Wed, 4 Nov 2020 10:29:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AB3BA84DD3 for ; Wed, 4 Nov 2020 10:29:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A5B16FC08; Wed, 4 Nov 2020 10:23:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1604485425204270" MIME-Version: 1.0 Date: Wed, 4 Nov 2020 10:23:45 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-pip To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20201104102345.A5B16FC08@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1604485425204270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Nov 4 10:23:45 UTC 2020 Modified Files: pkgsrc/devel/py-pip: Makefile PLIST distinfo Log Message: py-pip: updated to 20.2.4 20.2.4 (2020-10-16) =================== Deprecations and Removals ------------------------- - Document that certain removals can be fast tracked. - Document that Python versions are generally supported until PyPI usage falls below 5%. Features -------- - New resolver: Avoid accessing indexes when the installed candidate is preferred and considered good enough. - Improve error message friendliness when an environment has packages with corrupted metadata. - Cache package listings on index packages so they are guarenteed to stay stable during a pip command session. This also improves performance when a index page is accessed multiple times during the command session. - New resolver: Tweak resolution logic to improve user experience when user-supplied requirements conflict. Bug Fixes --------- - New resolver: Correctly respect ``Requires-Python`` metadata to reject incompatible packages in ``--no-deps`` mode. - New resolver: Pick up hash declarations in constraints files and use them to filter available distributions. - New resolver: If a package appears multiple times in user specification with different ``--hash`` options, only hashes that present in all specifications should be allowed. Improved Documentation ---------------------- - Add ux documentation To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/devel/py-pip/Makefile cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/py-pip/PLIST cvs rdiff -u -r1.35 -r1.36 pkgsrc/devel/py-pip/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1604485425204270 Content-Disposition: inline Content-Length: 2695 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-pip/Makefile diff -u pkgsrc/devel/py-pip/Makefile:1.42 pkgsrc/devel/py-pip/Makefile:1.43 --- pkgsrc/devel/py-pip/Makefile:1.42 Wed Sep 9 07:26:48 2020 +++ pkgsrc/devel/py-pip/Makefile Wed Nov 4 10:23:45 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2020/09/09 07:26:48 adam Exp $ +# $NetBSD: Makefile,v 1.43 2020/11/04 10:23:45 adam Exp $ -DISTNAME= pip-20.2.3 +DISTNAME= pip-20.2.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pip/} Index: pkgsrc/devel/py-pip/PLIST diff -u pkgsrc/devel/py-pip/PLIST:1.26 pkgsrc/devel/py-pip/PLIST:1.27 --- pkgsrc/devel/py-pip/PLIST:1.26 Wed Jul 29 10:00:16 2020 +++ pkgsrc/devel/py-pip/PLIST Wed Nov 4 10:23:45 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.26 2020/07/29 10:00:16 adam Exp $ +@comment $NetBSD: PLIST,v 1.27 2020/11/04 10:23:45 adam Exp $ bin/pip${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -285,6 +285,9 @@ ${PYSITELIB}/pip/_internal/resolution/re ${PYSITELIB}/pip/_internal/resolution/resolvelib/factory.py ${PYSITELIB}/pip/_internal/resolution/resolvelib/factory.pyc ${PYSITELIB}/pip/_internal/resolution/resolvelib/factory.pyo +${PYSITELIB}/pip/_internal/resolution/resolvelib/found_candidates.py +${PYSITELIB}/pip/_internal/resolution/resolvelib/found_candidates.pyc +${PYSITELIB}/pip/_internal/resolution/resolvelib/found_candidates.pyo ${PYSITELIB}/pip/_internal/resolution/resolvelib/provider.py ${PYSITELIB}/pip/_internal/resolution/resolvelib/provider.pyc ${PYSITELIB}/pip/_internal/resolution/resolvelib/provider.pyo Index: pkgsrc/devel/py-pip/distinfo diff -u pkgsrc/devel/py-pip/distinfo:1.35 pkgsrc/devel/py-pip/distinfo:1.36 --- pkgsrc/devel/py-pip/distinfo:1.35 Wed Sep 9 07:26:48 2020 +++ pkgsrc/devel/py-pip/distinfo Wed Nov 4 10:23:45 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.35 2020/09/09 07:26:48 adam Exp $ +$NetBSD: distinfo,v 1.36 2020/11/04 10:23:45 adam Exp $ -SHA1 (pip-20.2.3.tar.gz) = 5e708de15d0959386595bea819d75fbc5d4480b3 -RMD160 (pip-20.2.3.tar.gz) = 35eb2126b13b44e77115c0915dccf1cd26c1638e -SHA512 (pip-20.2.3.tar.gz) = 9225609e936f4be841317b640f90f13a747218c9e87945a500324e39ea392b8818385ea3f0e460fc9ddb3c96b2c59f83e015d447d8e40f863df8091006c18c44 -Size (pip-20.2.3.tar.gz) = 1497161 bytes +SHA1 (pip-20.2.4.tar.gz) = feff6f85f624602444600c4de8e55abea9d96bc9 +RMD160 (pip-20.2.4.tar.gz) = 85d1dbfb806723cbf03c6664af40358888453684 +SHA512 (pip-20.2.4.tar.gz) = 5df51a73b2c7aee077405a6748f3924d76f3898e98d841e4c64e3b4bbd3a496eafd3d309f53dfc7bedf9625686251298b1108f6308bd196892e1ec98c1de09b2 +Size (pip-20.2.4.tar.gz) = 1501159 bytes --_----------=_1604485425204270--