pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-setuptools



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Apr 26 13:34:30 UTC 2023

Modified Files:
        pkgsrc/devel/py-setuptools: Makefile PLIST distinfo

Log Message:
py-setuptools: updated to 67.7.2

v67.7.2

Misc
* Fixed wrong URLs used in warnings and logs.

v67.7.1

Misc
* Fixes setuptools.dist:invalid_unless_false when value is false don't raise error

v67.7.0

Changes
* Overhaul warning system for better visibility.

Documentation changes
* Added a note about historical presence of wheel in build-system.requires, in pyproject.toml.
* Improved the documentation example regarding making a thin PEP 517 in-tree backend wrapper of setuptools.build_meta that is future-proof and supports PEP 660 hook too

Misc
* Add a stacklevel parameter to warnings.warn() to provide more information to the user.


To generate a diff of this commit:
cvs rdiff -u -r1.231 -r1.232 pkgsrc/devel/py-setuptools/Makefile
cvs rdiff -u -r1.78 -r1.79 pkgsrc/devel/py-setuptools/PLIST
cvs rdiff -u -r1.207 -r1.208 pkgsrc/devel/py-setuptools/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-setuptools/Makefile
diff -u pkgsrc/devel/py-setuptools/Makefile:1.231 pkgsrc/devel/py-setuptools/Makefile:1.232
--- pkgsrc/devel/py-setuptools/Makefile:1.231   Tue Apr  4 15:03:50 2023
+++ pkgsrc/devel/py-setuptools/Makefile Wed Apr 26 13:34:30 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.231 2023/04/04 15:03:50 adam Exp $
+# $NetBSD: Makefile,v 1.232 2023/04/26 13:34:30 adam Exp $
 
-DISTNAME=      setuptools-67.6.1
+DISTNAME=      setuptools-67.7.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=s/setuptools/}
@@ -19,10 +19,11 @@ TEST_DEPENDS+=      ${PYPKGPREFIX}-jaraco.pat
 TEST_DEPENDS+= ${PYPKGPREFIX}-pip>=19.1:../../devel/py-pip
 TEST_DEPENDS+= ${PYPKGPREFIX}-pip-run>=8.8:../../devel/py-pip-run
 TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-checkdocs>=2.4:../../devel/py-test-checkdocs
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-fixture-config-[0-9]*:../../devel/py-test-fixture-config
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout-[0-9]*:../../devel/py-test-timeout
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-virtualenv-[0-9]*:../../devel/py-test-virtualenv
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
 TEST_DEPENDS+= ${PYPKGPREFIX}-tomli_w>=1.0.0:../../textproc/py-tomli_w
 TEST_DEPENDS+= ${PYPKGPREFIX}-virtualenv>=13.0.0:../../devel/py-virtualenv
 TEST_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel

Index: pkgsrc/devel/py-setuptools/PLIST
diff -u pkgsrc/devel/py-setuptools/PLIST:1.78 pkgsrc/devel/py-setuptools/PLIST:1.79
--- pkgsrc/devel/py-setuptools/PLIST:1.78       Tue Apr  4 15:03:50 2023
+++ pkgsrc/devel/py-setuptools/PLIST    Wed Apr 26 13:34:30 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.78 2023/04/04 15:03:50 adam Exp $
+@comment $NetBSD: PLIST,v 1.79 2023/04/26 13:34:30 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -141,9 +141,6 @@ ${PYSITELIB}/pkg_resources/extern/__init
 ${PYSITELIB}/setuptools/__init__.py
 ${PYSITELIB}/setuptools/__init__.pyc
 ${PYSITELIB}/setuptools/__init__.pyo
-${PYSITELIB}/setuptools/_deprecation_warning.py
-${PYSITELIB}/setuptools/_deprecation_warning.pyc
-${PYSITELIB}/setuptools/_deprecation_warning.pyo
 ${PYSITELIB}/setuptools/_distutils/__init__.py
 ${PYSITELIB}/setuptools/_distutils/__init__.pyc
 ${PYSITELIB}/setuptools/_distutils/__init__.pyo
@@ -645,6 +642,9 @@ ${PYSITELIB}/setuptools/namespaces.pyo
 ${PYSITELIB}/setuptools/package_index.py
 ${PYSITELIB}/setuptools/package_index.pyc
 ${PYSITELIB}/setuptools/package_index.pyo
+${PYSITELIB}/setuptools/py312compat.py
+${PYSITELIB}/setuptools/py312compat.pyc
+${PYSITELIB}/setuptools/py312compat.pyo
 ${PYSITELIB}/setuptools/py34compat.py
 ${PYSITELIB}/setuptools/py34compat.pyc
 ${PYSITELIB}/setuptools/py34compat.pyo
@@ -659,6 +659,9 @@ ${PYSITELIB}/setuptools/unicode_utils.py
 ${PYSITELIB}/setuptools/version.py
 ${PYSITELIB}/setuptools/version.pyc
 ${PYSITELIB}/setuptools/version.pyo
+${PYSITELIB}/setuptools/warnings.py
+${PYSITELIB}/setuptools/warnings.pyc
+${PYSITELIB}/setuptools/warnings.pyo
 ${PYSITELIB}/setuptools/wheel.py
 ${PYSITELIB}/setuptools/wheel.pyc
 ${PYSITELIB}/setuptools/wheel.pyo

Index: pkgsrc/devel/py-setuptools/distinfo
diff -u pkgsrc/devel/py-setuptools/distinfo:1.207 pkgsrc/devel/py-setuptools/distinfo:1.208
--- pkgsrc/devel/py-setuptools/distinfo:1.207   Tue Apr  4 15:03:50 2023
+++ pkgsrc/devel/py-setuptools/distinfo Wed Apr 26 13:34:30 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.207 2023/04/04 15:03:50 adam Exp $
+$NetBSD: distinfo,v 1.208 2023/04/26 13:34:30 adam Exp $
 
-BLAKE2s (setuptools-67.6.1.tar.gz) = 2c1d07b9dfbedf83298ef3b5bfe80229cc37a858f1a3fb32d9d0a362e6efae07
-SHA512 (setuptools-67.6.1.tar.gz) = 197910ad4c4058af0107e240d2e27bc2c1ff373cb3fba33af09eb3cc42614c45e4bb73a65802f253466eafd94517e08b51e98f50213817ad03d88ee0ccf9adbc
-Size (setuptools-67.6.1.tar.gz) = 2486256 bytes
+BLAKE2s (setuptools-67.7.2.tar.gz) = d60c9f002a5942a37ee529b6da0d3649b190ca353fde189a6497e42fea1b24ff
+SHA512 (setuptools-67.7.2.tar.gz) = 06db096193ef52111f064c327daefb12ea2bb2ebc6712436bae01f986165455fe89a1d2220cbaaa6391a182e2aee19b9cf7a709c158af8c5ab6232dfbc258bd9
+Size (setuptools-67.7.2.tar.gz) = 2491608 bytes



Home | Main Index | Thread Index | Old Index