[NEW] devel/py-omnijson: Wraps the best Python JSON installed

Wraps the best JSON installed, falling back on an internal simplejson.

Features:

    * Loads whichever is the fastest JSON module installed
    * Falls back on built in pure-python simplejson, just in case.
    * Proper API (loads(), dumps())
    * Verndorizable
    * Supports Python 2.5-3.2 out of the box

WWW: https://github.com/kennethreitz/omnijson
This commit is contained in:
Kubilay Kocak 2014-07-10 08:50:24 +00:00
parent 44d1bfb1e0
commit d333ae9ef4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=361429
4 changed files with 34 additions and 0 deletions

View file

@ -3747,6 +3747,7 @@
SUBDIR += py-ode
SUBDIR += py-odfpy
SUBDIR += py-olefileio_pl
SUBDIR += py-omnijson
SUBDIR += py-omniorb
SUBDIR += py-optik
SUBDIR += py-orbit

View file

@ -0,0 +1,20 @@
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= omnijson
PORTVERSION= 0.1.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Wraps the best Python JSON installed
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (omnijson-0.1.2.tar.gz) = 0b73d7f3129b92b55adb3463d84d1ca7e4261042e2499759e46e0d77453d614c
SIZE (omnijson-0.1.2.tar.gz) = 16817

View file

@ -0,0 +1,11 @@
Wraps the best JSON installed, falling back on an internal simplejson.
Features:
* Loads whichever is the fastest JSON module installed
* Falls back on built in pure-python simplejson, just in case.
* Proper API (loads(), dumps())
* Verndorizable
* Supports Python 2.5-3.2 out of the box
WWW: https://github.com/kennethreitz/omnijson