Date: Thu, 10 Jul 2014 08:50:25 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361429 - in head/devel: . py-omnijson Message-ID: <201407100850.s6A8oPAU054740@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Thu Jul 10 08:50:24 2014 New Revision: 361429 URL: http://svnweb.freebsd.org/changeset/ports/361429 QAT: https://qat.redports.org/buildarchive/r361429/ Log: [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 Added: head/devel/py-omnijson/ head/devel/py-omnijson/Makefile (contents, props changed) head/devel/py-omnijson/distinfo (contents, props changed) head/devel/py-omnijson/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jul 10 08:07:10 2014 (r361428) +++ head/devel/Makefile Thu Jul 10 08:50:24 2014 (r361429) @@ -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 Added: head/devel/py-omnijson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-omnijson/Makefile Thu Jul 10 08:50:24 2014 (r361429) @@ -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> Added: head/devel/py-omnijson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-omnijson/distinfo Thu Jul 10 08:50:24 2014 (r361429) @@ -0,0 +1,2 @@ +SHA256 (omnijson-0.1.2.tar.gz) = 0b73d7f3129b92b55adb3463d84d1ca7e4261042e2499759e46e0d77453d614c +SIZE (omnijson-0.1.2.tar.gz) = 16817 Added: head/devel/py-omnijson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-omnijson/pkg-descr Thu Jul 10 08:50:24 2014 (r361429) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407100850.s6A8oPAU054740>