Index: head/devel/py-ijson/Makefile =================================================================== --- head/devel/py-ijson/Makefile (revision 504039) +++ head/devel/py-ijson/Makefile (revision 504040) @@ -1,21 +1,21 @@ # Created by: Po-Chuan Hsieh # $FreeBSD$ PORTNAME= ijson -PORTVERSION= 2.3 +PORTVERSION= 2.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Iterative JSON parser with a standard Python iterator interface LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Index: head/devel/py-ijson/distinfo =================================================================== --- head/devel/py-ijson/distinfo (revision 504039) +++ head/devel/py-ijson/distinfo (revision 504040) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555346513 -SHA256 (ijson-2.3.tar.gz) = ef5f9f6bf9e44f2e1721e72bcc82c7ac6bb012b525e0f8642dedf7ddc44cf474 -SIZE (ijson-2.3.tar.gz) = 10344 +TIMESTAMP = 1560366516 +SHA256 (ijson-2.4.tar.gz) = b78bbb5617716ebf47aff67932bee4ec811909ef69b93c3925b2fe1f0fe4b98c +SIZE (ijson-2.4.tar.gz) = 17570 Index: head/devel/py-ijson/pkg-descr =================================================================== --- head/devel/py-ijson/pkg-descr (revision 504039) +++ head/devel/py-ijson/pkg-descr (revision 504040) @@ -1,11 +1,11 @@ Ijson is an iterative JSON parser with a standard Python iterator interface. Ijson provides several implementations of the actual parsing in the form of backends located in ijson/backends: - yajl2_cffi: wrapper around YAJL 2.x using CFFI, this is the fastest. - yajl2: wrapper around YAJL 2.x using ctypes, for when you can't use CFFI for some reason. - yajl: deprecated YAJL 1.x + ctypes wrapper, for even older systems. - python: pure Python parser, good to use with PyPy -WWW: https://github.com/isagalaev/ijson +WWW: https://github.com/ICRAR/ijson