Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_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 CA0701A9239 for ; Thu, 30 Dec 2021 16:20:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id F164284D5B; Thu, 30 Dec 2021 16:20:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3959E84D31 for ; Thu, 30 Dec 2021 16:20:12 +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 z_LDei3wLtWq for ; Thu, 30 Dec 2021 16:20:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5AFD484D1C for ; Thu, 30 Dec 2021 16:20:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 543FBFAEC; Thu, 30 Dec 2021 16:20:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1640881211121390" MIME-Version: 1.0 Date: Thu, 30 Dec 2021 16:20:11 +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: <20211230162011.543FBFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1640881211121390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Dec 30 16:20:11 UTC 2021 Modified Files: pkgsrc/devel/py-setuptools: Makefile PLIST distinfo Log Message: py-setuptools: update to 60.2.0. v60.2.0 ------- Changes ^^^^^^^ * #2974: Setuptools now relies on the Python logging infrastructure to log messages. Instead of using ``distutils.log.*``, use ``logging.getLogger(name).*``. * #2987: Sync with pypa/distutils@2def21c5d74fdd2fe7996ee4030ac145a9d751bd, including fix for missing get_versions attribute (#2969), more reliance on sysconfig from stdlib. Misc ^^^^ * #2962: Avoid attempting to use local distutils when the presiding version of Setuptools on the path doesn't have one. * #2983: Restore 'add_shim' as the way to invoke the hook. Avoids compatibility issues between different versions of Setuptools with the distutils local implementation. v60.1.1 ------- Misc ^^^^ * #2980: Bypass distutils loader when setuptools module is no longer available on sys.path. v60.1.0 ------- Changes ^^^^^^^ * #2958: In distutils_hack, only add the metadata finder once. In ensure_local_distutils, rely on a context manager for reliable manipulation. * #2963: Merge with pypa/distutils@a5af364910. Includes revisited fix for pypa/distutils#15 and improved MinGW/Cygwin support from pypa/distutils#77. v60.0.5 ------- Misc ^^^^ * #2960: Install schemes fall back to default scheme for headers. v60.0.4 ------- Misc ^^^^ * #2954: Merge with pypa/distutils@eba2bcd310. Adds platsubdir to config vars available for substitution. v60.0.3 ------- Misc ^^^^ * #2940: Avoid KeyError in distutils hack when pip is imported during ensurepip. v60.0.2 ------- Misc ^^^^ * #2938: Select 'posix_user' for the scheme unless falling back to stdlib, then use 'unix_user'. v60.0.1 ------- Misc ^^^^ * #2944: Add support for extended install schemes in easy_install. v60.0.0 ------- Breaking Changes ^^^^^^^^^^^^^^^^ * #2896: Setuptools once again makes its local copy of distutils the default. To override, set SETUPTOOLS_USE_DISTUTILS=stdlib. v59.8.0 ------- Changes ^^^^^^^ * #2935: Merge pypa/distutils@460b59f0e68dba17e2465e8dd421bbc14b994d1f. v59.7.0 ------- Changes ^^^^^^^ * #2930: Require Python 3.7 To generate a diff of this commit: cvs rdiff -u -r1.196 -r1.197 pkgsrc/devel/py-setuptools/Makefile cvs rdiff -u -r1.58 -r1.59 pkgsrc/devel/py-setuptools/PLIST cvs rdiff -u -r1.174 -r1.175 pkgsrc/devel/py-setuptools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1640881211121390 Content-Disposition: inline Content-Length: 2541 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.196 pkgsrc/devel/py-setuptools/Makefile:1.197 --- pkgsrc/devel/py-setuptools/Makefile:1.196 Thu Dec 30 15:19:02 2021 +++ pkgsrc/devel/py-setuptools/Makefile Thu Dec 30 16:20:11 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.196 2021/12/30 15:19:02 wiz Exp $ +# $NetBSD: Makefile,v 1.197 2021/12/30 16:20:11 wiz Exp $ -DISTNAME= setuptools-59.6.0 +DISTNAME= setuptools-60.2.0 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.58 pkgsrc/devel/py-setuptools/PLIST:1.59 --- pkgsrc/devel/py-setuptools/PLIST:1.58 Tue Nov 23 10:32:17 2021 +++ pkgsrc/devel/py-setuptools/PLIST Thu Dec 30 16:20:11 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.58 2021/11/23 10:32:17 wiz Exp $ +@comment $NetBSD: PLIST,v 1.59 2021/12/30 16:20:11 wiz Exp $ ${PYSITELIB}/_distutils_hack/__init__.py ${PYSITELIB}/_distutils_hack/__init__.pyc ${PYSITELIB}/_distutils_hack/__init__.pyo @@ -402,6 +402,9 @@ ${PYSITELIB}/setuptools/installer.pyo ${PYSITELIB}/setuptools/launch.py ${PYSITELIB}/setuptools/launch.pyc ${PYSITELIB}/setuptools/launch.pyo +${PYSITELIB}/setuptools/logging.py +${PYSITELIB}/setuptools/logging.pyc +${PYSITELIB}/setuptools/logging.pyo ${PYSITELIB}/setuptools/monkey.py ${PYSITELIB}/setuptools/monkey.pyc ${PYSITELIB}/setuptools/monkey.pyo Index: pkgsrc/devel/py-setuptools/distinfo diff -u pkgsrc/devel/py-setuptools/distinfo:1.174 pkgsrc/devel/py-setuptools/distinfo:1.175 --- pkgsrc/devel/py-setuptools/distinfo:1.174 Mon Dec 13 16:19:09 2021 +++ pkgsrc/devel/py-setuptools/distinfo Thu Dec 30 16:20:11 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.174 2021/12/13 16:19:09 adam Exp $ +$NetBSD: distinfo,v 1.175 2021/12/30 16:20:11 wiz Exp $ -BLAKE2s (setuptools-59.6.0.tar.gz) = d9672d1788560e57185eb09a111569ebc0eae228d54cb36fb995ff14d080368f -SHA512 (setuptools-59.6.0.tar.gz) = 25472ec7c167e07113c6645880952458969b146766b64224ec8f40dfc2a29b23e47104b63e806292ec81ee4e9dbbdc4663228f39b4412b586cba644f69b52309 -Size (setuptools-59.6.0.tar.gz) = 2281973 bytes +BLAKE2s (setuptools-60.2.0.tar.gz) = 76b05237eb1c41b1492bcd70484670b844307a252e508f1904cfbbe7be8a4eae +SHA512 (setuptools-60.2.0.tar.gz) = 9c7185843ead283ef97311018f1bb683c2e969f0333d5b246c7f1687c5ec6a9d6a2dafc39540ea7354e969d5a3f84e74c07dbce010970dd0ed46ebb48300a0bf +Size (setuptools-60.2.0.tar.gz) = 2282807 bytes --_----------=_1640881211121390--