From owner-svn-ports-head@FreeBSD.ORG Thu Jul 10 08:50:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F0F7978; Thu, 10 Jul 2014 08:50:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4070B21D6; Thu, 10 Jul 2014 08:50:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6A8oQrb054747; Thu, 10 Jul 2014 08:50:26 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6A8oPAU054740; Thu, 10 Jul 2014 08:50:25 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407100850.s6A8oPAU054740@svn.freebsd.org> From: Kubilay Kocak Date: Thu, 10 Jul 2014 08:50:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361429 - in head/devel: . py-omnijson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 08:50:26 -0000 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 +# $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 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