From owner-cvs-all@FreeBSD.ORG Sun Jan 28 00:11:16 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C1E616A589; Sun, 28 Jan 2007 00:11:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4DB6513C46B; Sun, 28 Jan 2007 00:11:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l0S0BGNp004960; Sun, 28 Jan 2007 00:11:16 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l0S0BG16004959; Sun, 28 Jan 2007 00:11:16 GMT (envelope-from miwi) Message-Id: <200701280011.l0S0BG16004959@repoman.freebsd.org> From: Martin Wilke Date: Sun, 28 Jan 2007 00:11:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/py-cjson Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Jan 2007 00:11:16 -0000 miwi 2007-01-28 00:11:16 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/py-cjson Makefile distinfo pkg-descr Log: This module implements a very fast JSON encoder/decoder for Python. JSON stands for JavaScript Object Notation and is a text based lightweight data exchange format which is easy for humans to read/write and for machines to parse/generate. JSON is completely language independent and has multiple implementations in most of the programming languages, making it ideal for data exchange and storage. The module is written in C and it is up to 250 times faster when compared to the other python JSON implementations which are written directly in python. This speed gain varies with the complexity of the data and the operation and is the the range of 10-200 times for encoding operations and in the range of 100-250 times for decoding operations. WWW: http://www.python.org/pypi/python-cjson/ PR: ports/108420 Submitted by: Li-Wen Hsu Revision Changes Path 1.2610 +1 -0 ports/devel/Makefile 1.1 +23 -0 ports/devel/py-cjson/Makefile (new) 1.1 +3 -0 ports/devel/py-cjson/distinfo (new) 1.1 +15 -0 ports/devel/py-cjson/pkg-descr (new)