From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Apr 26 02:00:20 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CF3F16A403 for ; Wed, 26 Apr 2006 02:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A09643D49 for ; Wed, 26 Apr 2006 02:00:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k3Q20Jn4099801 for ; Wed, 26 Apr 2006 02:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k3Q20JNe099800; Wed, 26 Apr 2006 02:00:19 GMT (envelope-from gnats) Resent-Date: Wed, 26 Apr 2006 02:00:19 GMT Resent-Message-Id: <200604260200.k3Q20JNe099800@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Botero-Lowry Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EE5016A404 for ; Wed, 26 Apr 2006 01:57:47 +0000 (UTC) (envelope-from alex@foxybanana.com) Received: from suede.reed.edu (suede.reed.edu [134.10.2.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20C7043D46 for ; Wed, 26 Apr 2006 01:57:46 +0000 (GMT) (envelope-from alex@foxybanana.com) Received: from Laptop.mine.box (c029h217.dorm.reed.edu [134.10.29.217]) by suede.reed.edu (8.13.6/8.13.6) with ESMTP id k3Q1viCR024438 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NOT) for ; Tue, 25 Apr 2006 18:57:44 -0700 Received: from Laptop.mine.box (localhost [127.0.0.1]) by Laptop.mine.box (8.13.4/8.13.4) with ESMTP id k3Q1ug33034157 for ; Tue, 25 Apr 2006 18:56:42 -0700 (PDT) (envelope-from alex@Laptop.mine.box) Received: (from alex@localhost) by Laptop.mine.box (8.13.4/8.13.4/Submit) id k3Q1ug30034156; Tue, 25 Apr 2006 18:56:42 -0700 (PDT) (envelope-from alex) Message-Id: <200604260156.k3Q1ug30034156@Laptop.mine.box> Date: Tue, 25 Apr 2006 18:56:42 -0700 (PDT) From: Alexander Botero-Lowry To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/96340: [NEW PORT] devel/py24-simplejson: Simplejson is a simple, fast, extensible JSON encoder/decoder X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Apr 2006 02:00:20 -0000 >Number: 96340 >Category: ports >Synopsis: [NEW PORT] devel/py24-simplejson: Simplejson is a simple, fast, extensible JSON encoder/decoder >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 26 02:00:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alexander Botero-Lowry >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD Laptop.mine.box 6.0-STABLE FreeBSD 6.0-STABLE #1: Tue Feb 7 19:06:16 PST >Description: simplejson is a simple, fast, extensible JSON encoder/decoder for Python simplejson is compatible with Python 2.3 and later with no external dependencies. It covers the full JSON specification for both encoding and decoding, with unicode support. By default, encoding is done in an encoding neutral fashion (plain ASCII with \uXXXX escapes for unicode characters). The encoder may be subclassed to provide serialization in any kind of situation, without any special support by the objects to be serialized (somewhat like pickle). The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). WWW: http://svn.red-bean.com/bob/simplejson/ Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- py24-simplejson-1.3.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-simplejson # py-simplejson/Makefile # py-simplejson/pkg-descr # py-simplejson/distinfo # py-simplejson/pkg-plist # echo c - py-simplejson mkdir -p py-simplejson > /dev/null 2>&1 echo x - py-simplejson/Makefile sed 's/^X//' >py-simplejson/Makefile << 'END-of-py-simplejson/Makefile' X# New ports collection makefile for: py-simplejson X# Date created: 25 Apr 2006 X# Whom: Alexander Botero-Lowry X# X# $FreeBSD$ X# X XPORTNAME= simplejson XPORTVERSION= 1.3 XCATEGORIES= devel python XMASTER_SITES= http://cheeseshop.python.org/packages/source/s/simplejson/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= alex@foxybanana.com XCOMMENT= Simplejson is a simple, fast, extensible JSON encoder/decoder X XBUILD_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools XRUN_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools X XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes X X.include END-of-py-simplejson/Makefile echo x - py-simplejson/pkg-descr sed 's/^X//' >py-simplejson/pkg-descr << 'END-of-py-simplejson/pkg-descr' Xsimplejson is a simple, fast, extensible JSON encoder/decoder for Python X Xsimplejson is compatible with Python 2.3 and later with no external Xdependencies. It covers the full JSON specification for both encoding and Xdecoding, with unicode support. By default, encoding is done in an encoding Xneutral fashion (plain ASCII with \uXXXX escapes for unicode characters). X XThe encoder may be subclassed to provide serialization in any kind of Xsituation, without any special support by the objects to be serialized X(somewhat like pickle). X XThe decoder can handle incoming JSON strings of any specified encoding X(UTF-8 by default). X XWWW: http://svn.red-bean.com/bob/simplejson/ END-of-py-simplejson/pkg-descr echo x - py-simplejson/distinfo sed 's/^X//' >py-simplejson/distinfo << 'END-of-py-simplejson/distinfo' XMD5 (simplejson-1.3.tar.gz) = fbe039b9b863572651a0f665acea34c9 XSHA256 (simplejson-1.3.tar.gz) = e68c59d56ba92bded0189a02e39d2483aea20cd23b6ec1b5d8fe1b4900d1cb26 XSIZE (simplejson-1.3.tar.gz) = 49181 END-of-py-simplejson/distinfo echo x - py-simplejson/pkg-plist sed 's/^X//' >py-simplejson/pkg-plist << 'END-of-py-simplejson/pkg-plist' X%%PYTHON_SITELIBDIR%%/simplejson-1.3-py2.4.egg END-of-py-simplejson/pkg-plist exit --- py24-simplejson-1.3.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: