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: updated to 51.3.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e02f80793eac
branches:  trunk
changeset: 445269:e02f80793eac
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Jan 18 16:02:31 2021 +0000

description:
py-setuptools: updated to 51.3.3

v51.3.3

Misc
* Fix AttributeError in Description validation.


v51.3.2

Misc
* Validation of Description field now is more lenient, emitting a warning and mangling the value to be valid (replacing newlines with spaces).


v51.3.1

Misc
* Reverted tag deduplication handling.


v51.3.0

Changes
* Newlines in metadata description/Summary now trigger a ValueError.
* Define create_module() and exec_module() methods in VendorImporter to get rid of ImportWarning -- by :user:`hroncok`
* pkg_resources behavior for zipimport now matches the regular behavior, and finds .egg-info (previoulsy would only find .dist-info) -- by :user:`thatch`
* Fixed an issue where version tags may be added multiple times


v51.2.0

Changes
* Use importlib.import_module() rather than the deprectated loader.load_module() in pkg_resources namespace delaration -- by :user:`encukou`

Documentation changes
* Fix typo in the document page about entry point. -- by :user:`jtr109`

Misc
* Avoid hitting network during test_easy_install.


v51.1.2

Misc
* Disable inclusion of package data as it causes 'tests' to be included as data.


v51.1.1

Misc
* Avoid hitting network during test_virtualenv.test_test_command.


v51.1.0

Changes
* Project adopts jaraco/skeleton for shared package maintenance.

Misc
* Restore inclusion of rst files in sdist.
* Setuptools has replaced the master branch with the main branch.
* Fixed failing test when pip 20.3+ is present. -- by :user:`yan12125`
* Fix tests with pytest 6.2 -- by :user:`yan12125`


v51.0.0

Breaking Changes
* Require Python 3.6 or later.

Documentation changes
* Fixed inconsistent RST title nesting levels caused
* Fixed a typo in Sphinx docs that made docs dev section disappear

Misc
* Removed the tests that guarantee that the vendored dependencies can be built by distutils.

diffstat:

 devel/py-setuptools/Makefile |   6 +++---
 devel/py-setuptools/PLIST    |  18 ++++++++++--------
 devel/py-setuptools/distinfo |  10 +++++-----
 3 files changed, 18 insertions(+), 16 deletions(-)

diffs (77 lines):

diff -r a2f131f140b9 -r e02f80793eac devel/py-setuptools/Makefile
--- a/devel/py-setuptools/Makefile      Mon Jan 18 15:45:28 2021 +0000
+++ b/devel/py-setuptools/Makefile      Mon Jan 18 16:02:31 2021 +0000
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.182 2020/10/27 18:10:49 adam Exp $
+# $NetBSD: Makefile,v 1.183 2021/01/18 16:02:31 adam Exp $
 
 # 48.0.0 and newer are broken on NetBSD
 # https://github.com/pypa/setuptools/issues/2364
-DISTNAME=      setuptools-50.3.2
+DISTNAME=      setuptools-51.3.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=s/setuptools/}
-EXTRACT_SUFX=  .zip
 
 MAINTAINER=    joerg%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/pypa/setuptools
@@ -20,6 +19,7 @@
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-virtualenv-[0-9]*:../../devel/py-test-virtualenv
 TEST_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+#TEST_DEPENDS+=        not packaged: jaraco.envs
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
diff -r a2f131f140b9 -r e02f80793eac devel/py-setuptools/PLIST
--- a/devel/py-setuptools/PLIST Mon Jan 18 15:45:28 2021 +0000
+++ b/devel/py-setuptools/PLIST Mon Jan 18 16:02:31 2021 +0000
@@ -1,5 +1,11 @@
-@comment $NetBSD: PLIST,v 1.52 2020/09/05 10:14:31 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.53 2021/01/18 16:02:31 adam Exp $
 bin/easy_install-${PYVERSSUFFIX}
+${PYSITELIB}/${EGG_FILE}/PKG-INFO
+${PYSITELIB}/${EGG_FILE}/SOURCES.txt
+${PYSITELIB}/${EGG_FILE}/dependency_links.txt
+${PYSITELIB}/${EGG_FILE}/entry_points.txt
+${PYSITELIB}/${EGG_FILE}/requires.txt
+${PYSITELIB}/${EGG_FILE}/top_level.txt
 ${PYSITELIB}/_distutils_hack/__init__.py
 ${PYSITELIB}/_distutils_hack/__init__.pyc
 ${PYSITELIB}/_distutils_hack/__init__.pyo
@@ -58,13 +64,9 @@
 ${PYSITELIB}/pkg_resources/extern/__init__.py
 ${PYSITELIB}/pkg_resources/extern/__init__.pyc
 ${PYSITELIB}/pkg_resources/extern/__init__.pyo
-${PYSITELIB}/${EGG_FILE}/PKG-INFO
-${PYSITELIB}/${EGG_FILE}/SOURCES.txt
-${PYSITELIB}/${EGG_FILE}/dependency_links.txt
-${PYSITELIB}/${EGG_FILE}/entry_points.txt
-${PYSITELIB}/${EGG_FILE}/requires.txt
-${PYSITELIB}/${EGG_FILE}/top_level.txt
-${PYSITELIB}/${EGG_FILE}/zip-safe
+${PYSITELIB}/pkg_resources/tests/data/my-test-package-source/setup.py
+${PYSITELIB}/pkg_resources/tests/data/my-test-package-source/setup.pyc
+${PYSITELIB}/pkg_resources/tests/data/my-test-package-source/setup.pyo
 ${PYSITELIB}/setuptools/__init__.py
 ${PYSITELIB}/setuptools/__init__.pyc
 ${PYSITELIB}/setuptools/__init__.pyo
diff -r a2f131f140b9 -r e02f80793eac devel/py-setuptools/distinfo
--- a/devel/py-setuptools/distinfo      Mon Jan 18 15:45:28 2021 +0000
+++ b/devel/py-setuptools/distinfo      Mon Jan 18 16:02:31 2021 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.160 2020/10/27 18:10:49 adam Exp $
+$NetBSD: distinfo,v 1.161 2021/01/18 16:02:31 adam Exp $
 
-SHA1 (setuptools-50.3.2.zip) = 2c9279e6b2d521f6799294200a432925113177dc
-RMD160 (setuptools-50.3.2.zip) = 097e5696f747661b22e9f5723b6efb4488a548cc
-SHA512 (setuptools-50.3.2.zip) = d036f6005825f4e93043e080b141c7155524d1f59c3276e8b10b5d6d1ec9aa8e8c342859edf0a85dbe0a31261e0383ea435e1c0d0189f7130b453f55d1e1e5b9
-Size (setuptools-50.3.2.zip) = 2059552 bytes
+SHA1 (setuptools-51.3.3.tar.gz) = fa2f1ed181c619bd4138f4b0a0d65e5fd728e5ba
+RMD160 (setuptools-51.3.3.tar.gz) = e7ae7b7c6e5b16fa19747890848e7b924fabea63
+SHA512 (setuptools-51.3.3.tar.gz) = 5a3572466a68c6f650111448ce3343f64c62044650bb8635edbff97e2bc7b216b8bbe3b4e3bccf34e6887f3bedc911b27ca5f9a515201cae49cf44fbacf03345
+Size (setuptools-51.3.3.tar.gz) = 2053035 bytes
 SHA1 (patch-setup.py) = dd94c9a4e15b8b0dc428515f73369ed168b8c7b2
 SHA1 (patch-setuptools___distutils_sysconfig.py) = a7b51250f81fcdb1263874f13be9e05daa19d956
 SHA1 (patch-setuptools___distutils_unixccompiler.py) = 0458b62ffed862c506c9181ed851b6a13f53aa30



Home | Main Index | Thread Index | Old Index