pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-py
Module Name: pkgsrc
Committed By: adam
Date: Wed Aug 5 13:55:02 UTC 2020
Modified Files:
pkgsrc/devel/py-py: Makefile PLIST distinfo
Log Message:
py-py: updated to 1.9.0
1.9.0
- Add type annotation stubs for the following modules:
* ``py.error``
* ``py.iniconfig``
* ``py.path`` (not including SVN paths)
* ``py.io``
* ``py.xml``
There are no plans to type other modules at this time.
The type annotations are provided in external .pyi files, not inline in the
code, and may therefore contain small errors or omissions. If you use ``py``
in conjunction with a type checker, and encounter any type errors you believe
should be accepted, please report it in an issue.
1.8.2
- On Windows, ``py.path.local``s which differ only in case now have the same
Python hash value. Previously, such paths were considered equal but had
different hashes, which is not allowed and breaks the assumptions made by
dicts, sets and other users of hashes.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-py/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-py/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-py/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-py/Makefile
diff -u pkgsrc/devel/py-py/Makefile:1.19 pkgsrc/devel/py-py/Makefile:1.20
--- pkgsrc/devel/py-py/Makefile:1.19 Fri Jan 3 12:33:19 2020
+++ pkgsrc/devel/py-py/Makefile Wed Aug 5 13:55:02 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2020/01/03 12:33:19 adam Exp $
+# $NetBSD: Makefile,v 1.20 2020/08/05 13:55:02 adam Exp $
-DISTNAME= py-1.8.1
+DISTNAME= py-1.9.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/py/}
Index: pkgsrc/devel/py-py/PLIST
diff -u pkgsrc/devel/py-py/PLIST:1.4 pkgsrc/devel/py-py/PLIST:1.5
--- pkgsrc/devel/py-py/PLIST:1.4 Tue Jul 3 07:12:15 2018
+++ pkgsrc/devel/py-py/PLIST Wed Aug 5 13:55:02 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2018/07/03 07:12:15 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2020/08/05 13:55:02 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -6,6 +6,7 @@ ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/py/__init__.py
${PYSITELIB}/py/__init__.pyc
+${PYSITELIB}/py/__init__.pyi
${PYSITELIB}/py/__init__.pyo
${PYSITELIB}/py/__metainfo.py
${PYSITELIB}/py/__metainfo.pyc
@@ -94,9 +95,23 @@ ${PYSITELIB}/py/_std.pyo
${PYSITELIB}/py/_vendored_packages/__init__.py
${PYSITELIB}/py/_vendored_packages/__init__.pyc
${PYSITELIB}/py/_vendored_packages/__init__.pyo
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/DESCRIPTION.rst
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/INSTALLER
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/METADATA
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/RECORD
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/WHEEL
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/metadata.json
+${PYSITELIB}/py/_vendored_packages/apipkg-1.4.dist-info/top_level.txt
${PYSITELIB}/py/_vendored_packages/apipkg.py
${PYSITELIB}/py/_vendored_packages/apipkg.pyc
${PYSITELIB}/py/_vendored_packages/apipkg.pyo
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/DESCRIPTION.rst
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/INSTALLER
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/METADATA
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/RECORD
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/WHEEL
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/metadata.json
+${PYSITELIB}/py/_vendored_packages/iniconfig-1.0.0.dist-info/top_level.txt
${PYSITELIB}/py/_vendored_packages/iniconfig.py
${PYSITELIB}/py/_vendored_packages/iniconfig.pyc
${PYSITELIB}/py/_vendored_packages/iniconfig.pyo
@@ -106,6 +121,12 @@ ${PYSITELIB}/py/_version.pyo
${PYSITELIB}/py/_xmlgen.py
${PYSITELIB}/py/_xmlgen.pyc
${PYSITELIB}/py/_xmlgen.pyo
+${PYSITELIB}/py/error.pyi
+${PYSITELIB}/py/iniconfig.pyi
+${PYSITELIB}/py/io.pyi
+${PYSITELIB}/py/path.pyi
+${PYSITELIB}/py/py.typed
${PYSITELIB}/py/test.py
${PYSITELIB}/py/test.pyc
${PYSITELIB}/py/test.pyo
+${PYSITELIB}/py/xml.pyi
Index: pkgsrc/devel/py-py/distinfo
diff -u pkgsrc/devel/py-py/distinfo:1.18 pkgsrc/devel/py-py/distinfo:1.19
--- pkgsrc/devel/py-py/distinfo:1.18 Fri Jan 3 12:33:19 2020
+++ pkgsrc/devel/py-py/distinfo Wed Aug 5 13:55:02 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.18 2020/01/03 12:33:19 adam Exp $
+$NetBSD: distinfo,v 1.19 2020/08/05 13:55:02 adam Exp $
-SHA1 (py-1.8.1.tar.gz) = b3acb8d29944773f78a4d7cdb1269b2460f226af
-RMD160 (py-1.8.1.tar.gz) = 4c42071e3b8a18d5fdabeb6555307a8f39b8e8fd
-SHA512 (py-1.8.1.tar.gz) = ba18fc5cc7a291c251f04e8565a35e94603eae718aad48252821f9d3b115a7cca4e640ea54d800eb71ec8ce345052d731fec9a115778b068526f394c5c45fb2a
-Size (py-1.8.1.tar.gz) = 205568 bytes
+SHA1 (py-1.9.0.tar.gz) = 8cbe522347596ffc292fd9b1ceaa4564a551ac76
+RMD160 (py-1.9.0.tar.gz) = c18799a8822a4edd8bef3a32fb55a94c55a67da6
+SHA512 (py-1.9.0.tar.gz) = 965b2adfe1b13177629ccfcdf6d0a13460683ca7a01d585163deb1af15d926fc86680d9e51660f6cbb8569f822a4d54ce281c029e363d244ddf67e33b102ad0a
+Size (py-1.9.0.tar.gz) = 210098 bytes
Home |
Main Index |
Thread Index |
Old Index