pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/py-setuptools py-setuptools: update to 42.0.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/60926c196980
branches: trunk
changeset: 344782:60926c196980
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Nov 26 12:41:36 2019 +0000
description:
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 <https://pip.pypa.io/en/stable/>`_ 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 <https://pypi.org/p/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 <https://pypi.org/project/setuptools_scm>`_ to configure
options on the distribution at finalization time.
diffstat:
devel/py-setuptools/Makefile | 4 ++--
devel/py-setuptools/PLIST | 17 ++++++++++-------
devel/py-setuptools/distinfo | 10 +++++-----
3 files changed, 17 insertions(+), 14 deletions(-)
diffs (85 lines):
diff -r a854c7e17282 -r 60926c196980 devel/py-setuptools/Makefile
--- a/devel/py-setuptools/Makefile Tue Nov 26 12:40:05 2019 +0000
+++ b/devel/py-setuptools/Makefile Tue Nov 26 12:41:36 2019 +0000
@@ -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/}
diff -r a854c7e17282 -r 60926c196980 devel/py-setuptools/PLIST
--- a/devel/py-setuptools/PLIST Tue Nov 26 12:40:05 2019 +0000
+++ b/devel/py-setuptools/PLIST Tue Nov 26 12:41:36 2019 +0000
@@ -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/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/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/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
diff -r a854c7e17282 -r 60926c196980 devel/py-setuptools/distinfo
--- a/devel/py-setuptools/distinfo Tue Nov 26 12:40:05 2019 +0000
+++ b/devel/py-setuptools/distinfo Tue Nov 26 12:41:36 2019 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index