pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-wrapt
Module Name: pkgsrc
Committed By: adam
Date: Thu Mar 31 08:43:02 UTC 2022
Modified Files:
pkgsrc/devel/py-wrapt: Makefile PLIST distinfo
Log Message:
py-wrapt: updated to 1.14.0
Version 1.14.0
Bugs Fixed
Python 3.11 dropped inspect.formatargspec() which was used in creating signature changing decorators. Now bundling a version of this function which uses Parameter and Signature from inspect module
when available. The replacement function is exposed as wrapt.formatargspec() if need it for your own code.
When using a decorator on a class, isinstance() checks wouldn’t previously work as expected and you had to manually use Type.__wrapped__ to access the real type when doing instance checks. The
__instancecheck__ hook is now implemented such that you don’t have to use Type.__wrapped__ instead of Type as last argument to isinstance().
Eliminated deprecation warnings related to Python module import system, which would have turned into broken code in Python 3.12. This was used by the post import hook mechanism.
New Features
Binary wheels provided on PyPi for aarch64 Linux systems and macOS native silicon where supported by Python when using pypa/cibuildwheel.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/py-wrapt/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-wrapt/PLIST
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-wrapt/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-wrapt/Makefile
diff -u pkgsrc/devel/py-wrapt/Makefile:1.12 pkgsrc/devel/py-wrapt/Makefile:1.13
--- pkgsrc/devel/py-wrapt/Makefile:1.12 Tue Jan 4 20:53:48 2022
+++ pkgsrc/devel/py-wrapt/Makefile Thu Mar 31 08:43:02 2022
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2022/01/04 20:53:48 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2022/03/31 08:43:02 adam Exp $
-DISTNAME= wrapt-1.13.3
+DISTNAME= wrapt-1.14.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=w/wrapt/}
Index: pkgsrc/devel/py-wrapt/PLIST
diff -u pkgsrc/devel/py-wrapt/PLIST:1.3 pkgsrc/devel/py-wrapt/PLIST:1.4
--- pkgsrc/devel/py-wrapt/PLIST:1.3 Mon Oct 11 18:02:12 2021
+++ pkgsrc/devel/py-wrapt/PLIST Thu Mar 31 08:43:02 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2021/10/11 18:02:12 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2022/03/31 08:43:02 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -8,6 +8,9 @@ ${PYSITELIB}/wrapt/__init__.py
${PYSITELIB}/wrapt/__init__.pyc
${PYSITELIB}/wrapt/__init__.pyo
${PYSITELIB}/wrapt/_wrappers.so
+${PYSITELIB}/wrapt/arguments.py
+${PYSITELIB}/wrapt/arguments.pyc
+${PYSITELIB}/wrapt/arguments.pyo
${PYSITELIB}/wrapt/decorators.py
${PYSITELIB}/wrapt/decorators.pyc
${PYSITELIB}/wrapt/decorators.pyo
Index: pkgsrc/devel/py-wrapt/distinfo
diff -u pkgsrc/devel/py-wrapt/distinfo:1.11 pkgsrc/devel/py-wrapt/distinfo:1.12
--- pkgsrc/devel/py-wrapt/distinfo:1.11 Sun Oct 31 09:21:37 2021
+++ pkgsrc/devel/py-wrapt/distinfo Thu Mar 31 08:43:02 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.11 2021/10/31 09:21:37 adam Exp $
+$NetBSD: distinfo,v 1.12 2022/03/31 08:43:02 adam Exp $
-BLAKE2s (wrapt-1.13.3.tar.gz) = b99bdc3641b41e47da016be4da5fc41f0b865f36391240d030a5cd0847566940
-SHA512 (wrapt-1.13.3.tar.gz) = c80505b1d52eebc405cdb69a2e5a1d4d429e3091d04ae21d4af38175576818d30fdd57ef1e5422bd29022079e2996ee2ce97a3e8e4fada78387f24aa41fa2e32
-Size (wrapt-1.13.3.tar.gz) = 48871 bytes
+BLAKE2s (wrapt-1.14.0.tar.gz) = 7abed5c23fd911b74fd63acb8008c77283501ae7f09835a860c91609dbde5d4f
+SHA512 (wrapt-1.14.0.tar.gz) = 9c56807f419908427a4690eef9cce317153f11fb2a70cc8fd753f409a83818bf17d671856e04ca7efdcd801af7bacef72441d67d3faf110fb31de5734e58d4ae
+Size (wrapt-1.14.0.tar.gz) = 50796 bytes
Home |
Main Index |
Thread Index |
Old Index