pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-jsonref



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Jan 22 13:34:19 UTC 2024

Modified Files:
        pkgsrc/textproc/py-jsonref: Makefile PLIST distinfo

Log Message:
py-jsonref: updated to 1.1.0

v1.1.0
Fixes documents where the root is a reference object not being cached
Allows a reference object to refer to a fragment within itself.
Extra properties of a reference object will now have references resolved.

v1.0.1
Fix issue with proxies=False where it would not recurse through references to remove the proxies.

v1.0.0
replace_refs is now a function rather than a class method of JsonRef (The class method is still around, but deprecated.)
New options were also added to replace_refs
jsonloader is now a plan function rather than an instance of a class. (This is a breaking change if you were subclassing JsonLoader)


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

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-jsonref/Makefile
diff -u pkgsrc/textproc/py-jsonref/Makefile:1.4 pkgsrc/textproc/py-jsonref/Makefile:1.5
--- pkgsrc/textproc/py-jsonref/Makefile:1.4     Tue Jan  4 20:54:57 2022
+++ pkgsrc/textproc/py-jsonref/Makefile Mon Jan 22 13:34:19 2024
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2022/01/04 20:54:57 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2024/01/22 13:34:19 adam Exp $
 
-DISTNAME=      jsonref-0.2
+DISTNAME=      jsonref-1.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=j/jsonref/}
 
@@ -11,11 +10,11 @@ HOMEPAGE=   https://github.com/gazpachokin
 COMMENT=       JSON References for Python
 LICENSE=       mit
 
-PYTHON_VERSIONED_DEPENDENCIES= test:test
+TOOL_DEPENDS+= ${PYPKGPREFIX}-pdm_backend-[0-9]*:../../devel/py-pdm_backend
 
-do-test:
-       cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests.py
+USE_LANGUAGES= # none
 
-.include "../../lang/python/egg.mk"
-.include "../../lang/python/versioned_dependencies.mk"
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/textproc/py-jsonref/distinfo
diff -u pkgsrc/textproc/py-jsonref/distinfo:1.4 pkgsrc/textproc/py-jsonref/distinfo:1.5
--- pkgsrc/textproc/py-jsonref/distinfo:1.4     Tue Oct 26 11:23:06 2021
+++ pkgsrc/textproc/py-jsonref/distinfo Mon Jan 22 13:34:19 2024
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:23:06 nia Exp $
+$NetBSD: distinfo,v 1.5 2024/01/22 13:34:19 adam Exp $
 
-BLAKE2s (jsonref-0.2.tar.gz) = 281f7c76c966d848f35019966aca1b48ea5a84d1b67ac04cf56c03176fe4c1d2
-SHA512 (jsonref-0.2.tar.gz) = 415eaefcaf2c7a02bf70749522fef0d96f1e0cc5772edd50ca016a564258df21dd3eb178b7a33ee61e606125fb802a29b0cb8855a81c6116baf6393208927b0f
-Size (jsonref-0.2.tar.gz) = 13032 bytes
+BLAKE2s (jsonref-1.1.0.tar.gz) = 03287f32104bf275381c268b60ee6a0bc87e25d7c59fa16e70a0b50fe0dd26f8
+SHA512 (jsonref-1.1.0.tar.gz) = 6992c5bdf89aa44a6379a16d0184d2c1578c8ceaf143c20e5f83242c6369c86749dcd5da21545ea9fee2322e8ad2bdec5d268b27918fcd1f7624c8fe1f87f12e
+Size (jsonref-1.1.0.tar.gz) = 8814 bytes
+SHA1 (patch-pyproject.toml) = 64f7b77782bac9cd34dd2f6c71ca04a874a20d99

Index: pkgsrc/textproc/py-jsonref/PLIST
diff -u pkgsrc/textproc/py-jsonref/PLIST:1.2 pkgsrc/textproc/py-jsonref/PLIST:1.3
--- pkgsrc/textproc/py-jsonref/PLIST:1.2        Tue Nov 20 11:52:43 2018
+++ pkgsrc/textproc/py-jsonref/PLIST    Mon Jan 22 13:34:19 2024
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.2 2018/11/20 11:52:43 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.3 2024/01/22 13:34:19 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
 ${PYSITELIB}/jsonref.py
 ${PYSITELIB}/jsonref.pyc
 ${PYSITELIB}/jsonref.pyo



Home | Main Index | Thread Index | Old Index