From alex@foxybanana.com  Wed Apr 26 01:57:47 2006
Return-Path: <alex@foxybanana.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9EE5016A404
	for <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <alex@foxybanana.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] devel/py24-simplejson: Simplejson is a simple, fast, extensible JSON encoder/decoder
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>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:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Apr 26 02:00:18 GMT 2006
>Closed-Date:    Wed Apr 26 03:24:38 GMT 2006
>Last-Modified:  Wed Apr 26 03:24:38 GMT 2006
>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 <alex@foxybanana.com>
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 <bsd.port.mk>
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:
State-Changed-From-To: open->closed 
State-Changed-By: edwin 
State-Changed-When: Wed Apr 26 03:24:37 UTC 2006 
State-Changed-Why:  
Committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=96340 
>Unformatted:
