pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-jsonschema-path



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Jun  3 09:35:57 UTC 2026

Modified Files:
        pkgsrc/textproc/py-jsonschema-path: Makefile PLIST distinfo

Log Message:
py-jsonschema-path: updated to 0.5.0

0.5.0

Features

Resolved cache enabled and SchemaPath per-instance cache removed
Resolved cache evolution rebind
Per-accessor identity

Backward incompatible changes

Resolved cache is enabled by default
SchemaPath per-accessor __eq__/__hash__


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/py-jsonschema-path/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/py-jsonschema-path/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-jsonschema-path/distinfo

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

Modified files:

Index: pkgsrc/textproc/py-jsonschema-path/Makefile
diff -u pkgsrc/textproc/py-jsonschema-path/Makefile:1.7 pkgsrc/textproc/py-jsonschema-path/Makefile:1.8
--- pkgsrc/textproc/py-jsonschema-path/Makefile:1.7     Thu Oct  9 07:57:59 2025
+++ pkgsrc/textproc/py-jsonschema-path/Makefile Wed Jun  3 09:35:57 2026
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2025/10/09 07:57:59 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2026/06/03 09:35:57 adam Exp $
 
-DISTNAME=      jsonschema_path-0.3.4
+DISTNAME=      jsonschema_path-0.5.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
-PKGREVISION=   1
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=j/jsonschema-path/}
 
@@ -12,7 +11,8 @@ COMMENT=      JSONSchema Spec with object-ori
 LICENSE=       apache-2.0
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core>=2.2.1:../../devel/py-poetry-core
-DEPENDS+=      ${PYPKGPREFIX}-pathable>=0.4.1:../../devel/py-pathable
+DEPENDS+=      ${PYPKGPREFIX}-attrs>=22.2.0:../../devel/py-attrs
+DEPENDS+=      ${PYPKGPREFIX}-pathable>=0.6.0:../../devel/py-pathable
 DEPENDS+=      ${PYPKGPREFIX}-referencing>=0.36.0:../../textproc/py-referencing
 DEPENDS+=      ${PYPKGPREFIX}-requests>=2.31.0:../../devel/py-requests
 DEPENDS+=      ${PYPKGPREFIX}-yaml>=5.1:../../textproc/py-yaml

Index: pkgsrc/textproc/py-jsonschema-path/PLIST
diff -u pkgsrc/textproc/py-jsonschema-path/PLIST:1.2 pkgsrc/textproc/py-jsonschema-path/PLIST:1.3
--- pkgsrc/textproc/py-jsonschema-path/PLIST:1.2        Tue Sep 30 14:26:21 2025
+++ pkgsrc/textproc/py-jsonschema-path/PLIST    Wed Jun  3 09:35:57 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2025/09/30 14:26:21 wiz Exp $
+@comment $NetBSD: PLIST,v 1.3 2026/06/03 09:35:57 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
 ${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
@@ -6,9 +6,15 @@ ${PYSITELIB}/${WHEEL_INFODIR}/licenses/L
 ${PYSITELIB}/jsonschema_path/__init__.py
 ${PYSITELIB}/jsonschema_path/__init__.pyc
 ${PYSITELIB}/jsonschema_path/__init__.pyo
+${PYSITELIB}/jsonschema_path/_referencing_compat.py
+${PYSITELIB}/jsonschema_path/_referencing_compat.pyc
+${PYSITELIB}/jsonschema_path/_referencing_compat.pyo
 ${PYSITELIB}/jsonschema_path/accessors.py
 ${PYSITELIB}/jsonschema_path/accessors.pyc
 ${PYSITELIB}/jsonschema_path/accessors.pyo
+${PYSITELIB}/jsonschema_path/caches.py
+${PYSITELIB}/jsonschema_path/caches.pyc
+${PYSITELIB}/jsonschema_path/caches.pyo
 ${PYSITELIB}/jsonschema_path/handlers/__init__.py
 ${PYSITELIB}/jsonschema_path/handlers/__init__.pyc
 ${PYSITELIB}/jsonschema_path/handlers/__init__.pyo
@@ -30,6 +36,9 @@ ${PYSITELIB}/jsonschema_path/handlers/ut
 ${PYSITELIB}/jsonschema_path/loaders.py
 ${PYSITELIB}/jsonschema_path/loaders.pyc
 ${PYSITELIB}/jsonschema_path/loaders.pyo
+${PYSITELIB}/jsonschema_path/nodes.py
+${PYSITELIB}/jsonschema_path/nodes.pyc
+${PYSITELIB}/jsonschema_path/nodes.pyo
 ${PYSITELIB}/jsonschema_path/paths.py
 ${PYSITELIB}/jsonschema_path/paths.pyc
 ${PYSITELIB}/jsonschema_path/paths.pyo
@@ -37,6 +46,9 @@ ${PYSITELIB}/jsonschema_path/py.typed
 ${PYSITELIB}/jsonschema_path/readers.py
 ${PYSITELIB}/jsonschema_path/readers.pyc
 ${PYSITELIB}/jsonschema_path/readers.pyo
+${PYSITELIB}/jsonschema_path/resolvers.py
+${PYSITELIB}/jsonschema_path/resolvers.pyc
+${PYSITELIB}/jsonschema_path/resolvers.pyo
 ${PYSITELIB}/jsonschema_path/retrievers.py
 ${PYSITELIB}/jsonschema_path/retrievers.pyc
 ${PYSITELIB}/jsonschema_path/retrievers.pyo

Index: pkgsrc/textproc/py-jsonschema-path/distinfo
diff -u pkgsrc/textproc/py-jsonschema-path/distinfo:1.4 pkgsrc/textproc/py-jsonschema-path/distinfo:1.5
--- pkgsrc/textproc/py-jsonschema-path/distinfo:1.4     Sat Jan 25 11:28:19 2025
+++ pkgsrc/textproc/py-jsonschema-path/distinfo Wed Jun  3 09:35:57 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2025/01/25 11:28:19 adam Exp $
+$NetBSD: distinfo,v 1.5 2026/06/03 09:35:57 adam Exp $
 
-BLAKE2s (jsonschema_path-0.3.4.tar.gz) = 72b9919063522d203d10e57b2732ac4a9b119c9c41789359d9a770b7cace2193
-SHA512 (jsonschema_path-0.3.4.tar.gz) = 01f04eb2faf12fc369a1b87dd0cce31ae4a7304bfff4683b0c87fc9e7372e45dd5a5b3f6148ab2deddc18da9d1a462bef3c5506ffe0ef3da5200d7be6a531437
-Size (jsonschema_path-0.3.4.tar.gz) = 11159 bytes
+BLAKE2s (jsonschema_path-0.5.0.tar.gz) = e34ba70f09b1babe3b73550589c3b5b8a87fbef50d2ecb08be7c2a2b95c18379
+SHA512 (jsonschema_path-0.5.0.tar.gz) = c4b46e6e737501c2fe7cac4748dd63a07b7f4da430fc87b97038d90965f62253a16c0f50e119de01a744a519e04519f20d4f17b110f99174093300d0f29ee6eb
+Size (jsonschema_path-0.5.0.tar.gz) = 19597 bytes



Home | Main Index | Thread Index | Old Index