Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/py-py py-py: updated to 1.9.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/dbb21d9c6fd2
branches:  trunk
changeset: 436562:dbb21d9c6fd2
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Aug 05 13:55:02 2020 +0000

description:
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.

diffstat:

 devel/py-py/Makefile |   4 ++--
 devel/py-py/PLIST    |  23 ++++++++++++++++++++++-
 devel/py-py/distinfo |  10 +++++-----
 3 files changed, 29 insertions(+), 8 deletions(-)

diffs (81 lines):

diff -r e0bb7e430ede -r dbb21d9c6fd2 devel/py-py/Makefile
--- a/devel/py-py/Makefile      Wed Aug 05 13:54:15 2020 +0000
+++ b/devel/py-py/Makefile      Wed Aug 05 13:55:02 2020 +0000
@@ -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/}
diff -r e0bb7e430ede -r dbb21d9c6fd2 devel/py-py/PLIST
--- a/devel/py-py/PLIST Wed Aug 05 13:54:15 2020 +0000
+++ b/devel/py-py/PLIST Wed Aug 05 13:55:02 2020 +0000
@@ -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}/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/_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/_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
diff -r e0bb7e430ede -r dbb21d9c6fd2 devel/py-py/distinfo
--- a/devel/py-py/distinfo      Wed Aug 05 13:54:15 2020 +0000
+++ b/devel/py-py/distinfo      Wed Aug 05 13:55:02 2020 +0000
@@ -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