Received: by mail.netbsd.org (Postfix, from userid 605) id BCB2E84D69; Tue, 26 Nov 2019 12:41:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4197284CD8 for ; Tue, 26 Nov 2019 12:41:37 +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 LlMs5ujnnAtK for ; Tue, 26 Nov 2019 12:41:36 +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 8488384D04 for ; Tue, 26 Nov 2019 12:41:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 82409FA97; Tue, 26 Nov 2019 12:41:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1574772096205850" MIME-Version: 1.0 Date: Tue, 26 Nov 2019 12:41:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-setuptools To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20191126124136.82409FA97@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. --_----------=_1574772096205850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Nov 26 12:41:36 UTC 2019 Modified Files: pkgsrc/devel/py-setuptools: Makefile PLIST distinfo Log Message: py-setuptools: update to 42.0.1. v42.0.1 ------- * #1918: Fix regression in handling wheels compatibility tags. v42.0.0 ------- * #1830, #1909: Mark the easy_install script and setuptools command as deprecated, and use `pip `_ when available to fetch/build wheels for missing ``setup_requires``/``tests_require`` requirements, with the following differences in behavior: * support for ``python_requires`` * better support for wheels (proper handling of priority with respect to PEP 425 tags) * PEP 517/518 support * eggs are not supported * no support for the ``allow_hosts`` easy_install option (``index_url``/``find_links`` are still honored) * pip environment variables are honored (and take precedence over easy_install options) * #1898: Removed the "upload" and "register" commands in favor of `twine `_. * #1767: Add support for the ``license_files`` option in ``setup.cfg`` to automatically include multiple license files in a source distribution. * #1829: Update handling of wheels compatibility tags: * add support for manylinux2010 * fix use of removed 'm' ABI flag in Python 3.8 on Windows * #1861: Fix empty namespace package installation from wheel. * #1877: Setuptools now exposes a new entry point hook "setuptools.finalize_distribution_options", enabling plugins like `setuptools_scm `_ to configure options on the distribution at finalization time. To generate a diff of this commit: cvs rdiff -u -r1.172 -r1.173 pkgsrc/devel/py-setuptools/Makefile cvs rdiff -u -r1.48 -r1.49 pkgsrc/devel/py-setuptools/PLIST cvs rdiff -u -r1.150 -r1.151 pkgsrc/devel/py-setuptools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1574772096205850 Content-Disposition: inline Content-Length: 4301 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-setuptools/Makefile diff -u pkgsrc/devel/py-setuptools/Makefile:1.172 pkgsrc/devel/py-setuptools/Makefile:1.173 --- pkgsrc/devel/py-setuptools/Makefile:1.172 Tue Oct 29 15:15:40 2019 +++ pkgsrc/devel/py-setuptools/Makefile Tue Nov 26 12:41:36 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.172 2019/10/29 15:15:40 adam Exp $ +# $NetBSD: Makefile,v 1.173 2019/11/26 12:41:36 wiz Exp $ -DISTNAME= setuptools-41.6.0 +DISTNAME= setuptools-42.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=s/setuptools/} Index: pkgsrc/devel/py-setuptools/PLIST diff -u pkgsrc/devel/py-setuptools/PLIST:1.48 pkgsrc/devel/py-setuptools/PLIST:1.49 --- pkgsrc/devel/py-setuptools/PLIST:1.48 Tue Oct 29 15:15:40 2019 +++ pkgsrc/devel/py-setuptools/PLIST Tue Nov 26 12:41:36 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.48 2019/10/29 15:15:40 adam Exp $ +@comment $NetBSD: PLIST,v 1.49 2019/11/26 12:41:36 wiz Exp $ bin/easy_install-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_FILE}/PKG-INFO ${PYSITELIB}/${EGG_FILE}/SOURCES.txt @@ -94,6 +94,9 @@ ${PYSITELIB}/setuptools/_vendor/packagin ${PYSITELIB}/setuptools/_vendor/packaging/specifiers.py ${PYSITELIB}/setuptools/_vendor/packaging/specifiers.pyc ${PYSITELIB}/setuptools/_vendor/packaging/specifiers.pyo +${PYSITELIB}/setuptools/_vendor/packaging/tags.py +${PYSITELIB}/setuptools/_vendor/packaging/tags.pyc +${PYSITELIB}/setuptools/_vendor/packaging/tags.pyo ${PYSITELIB}/setuptools/_vendor/packaging/utils.py ${PYSITELIB}/setuptools/_vendor/packaging/utils.pyc ${PYSITELIB}/setuptools/_vendor/packaging/utils.pyo @@ -203,21 +206,24 @@ ${PYSITELIB}/setuptools/depends.pyo ${PYSITELIB}/setuptools/dist.py ${PYSITELIB}/setuptools/dist.pyc ${PYSITELIB}/setuptools/dist.pyo +${PYSITELIB}/setuptools/errors.py +${PYSITELIB}/setuptools/errors.pyc +${PYSITELIB}/setuptools/errors.pyo ${PYSITELIB}/setuptools/extension.py ${PYSITELIB}/setuptools/extension.pyc ${PYSITELIB}/setuptools/extension.pyo ${PYSITELIB}/setuptools/extern/__init__.py ${PYSITELIB}/setuptools/extern/__init__.pyc ${PYSITELIB}/setuptools/extern/__init__.pyo -${PYSITELIB}/setuptools/glibc.py -${PYSITELIB}/setuptools/glibc.pyc -${PYSITELIB}/setuptools/glibc.pyo ${PYSITELIB}/setuptools/glob.py ${PYSITELIB}/setuptools/glob.pyc ${PYSITELIB}/setuptools/glob.pyo ${PYSITELIB}/setuptools/gui-32.exe ${PYSITELIB}/setuptools/gui-64.exe ${PYSITELIB}/setuptools/gui.exe +${PYSITELIB}/setuptools/installer.py +${PYSITELIB}/setuptools/installer.pyc +${PYSITELIB}/setuptools/installer.pyo ${PYSITELIB}/setuptools/launch.py ${PYSITELIB}/setuptools/launch.pyc ${PYSITELIB}/setuptools/launch.pyo @@ -236,9 +242,6 @@ ${PYSITELIB}/setuptools/namespaces.pyo ${PYSITELIB}/setuptools/package_index.py ${PYSITELIB}/setuptools/package_index.pyc ${PYSITELIB}/setuptools/package_index.pyo -${PYSITELIB}/setuptools/pep425tags.py -${PYSITELIB}/setuptools/pep425tags.pyc -${PYSITELIB}/setuptools/pep425tags.pyo ${PYSITELIB}/setuptools/py27compat.py ${PYSITELIB}/setuptools/py27compat.pyc ${PYSITELIB}/setuptools/py27compat.pyo Index: pkgsrc/devel/py-setuptools/distinfo diff -u pkgsrc/devel/py-setuptools/distinfo:1.150 pkgsrc/devel/py-setuptools/distinfo:1.151 --- pkgsrc/devel/py-setuptools/distinfo:1.150 Tue Oct 29 15:15:40 2019 +++ pkgsrc/devel/py-setuptools/distinfo Tue Nov 26 12:41:36 2019 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.150 2019/10/29 15:15:40 adam Exp $ +$NetBSD: distinfo,v 1.151 2019/11/26 12:41:36 wiz Exp $ -SHA1 (setuptools-41.6.0.zip) = 79f4ba0be27967d8f02b0d21a1e34fba9432481d -RMD160 (setuptools-41.6.0.zip) = 8df5351d046fdfd6289c430c94fbbe33416f589a -SHA512 (setuptools-41.6.0.zip) = 1bed75e7173ea0399f078c96cf5c1818dada7a4b86a93e61ff72da6a25694e321b9047e024617aa775b71a25fe8cb0848323902e1fb9c8c8a1f39434f0de6434 -Size (setuptools-41.6.0.zip) = 852541 bytes +SHA1 (setuptools-42.0.1.zip) = f1d8d9fe8f018f80c35b43d176b7abde9b97372d +RMD160 (setuptools-42.0.1.zip) = 76f45f334e6c20c08578847384b5156348b0f74a +SHA512 (setuptools-42.0.1.zip) = d8eea952dc3cd925ddf3aaf059e9042dcb2684fd841446d92f309fcf8ad1869a380784d137006ca1b46ee539b4e1867e5b61eae80553295897df702966447232 +Size (setuptools-42.0.1.zip) = 852264 bytes SHA1 (patch-setup.py) = dd94c9a4e15b8b0dc428515f73369ed168b8c7b2 --_----------=_1574772096205850--