fb303d5c42
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
21 lines
445 B
Makefile
21 lines
445 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ijson
|
|
PORTVERSION= 2.3
|
|
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 <bsd.port.mk>
|