From owner-svn-ports-all@FreeBSD.ORG Sat Oct 6 16:02:56 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33CFB1065670; Sat, 6 Oct 2012 16:02:56 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1483B8FC14; Sat, 6 Oct 2012 16:02:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q96G2tCT093511; Sat, 6 Oct 2012 16:02:55 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q96G2tVo093507; Sat, 6 Oct 2012 16:02:55 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210061602.q96G2tVo093507@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sat, 6 Oct 2012 16:02:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305380 - head/devel/py-simplejson X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 16:02:56 -0000 Author: rm Date: Sat Oct 6 16:02:55 2012 New Revision: 305380 URL: http://svn.freebsd.org/changeset/ports/305380 Log: - trim Makefile header - shorten COMMENT - add missing newline to distinfo - whitespace fix and tab -> space change in pkg-descr Modified: head/devel/py-simplejson/Makefile head/devel/py-simplejson/distinfo head/devel/py-simplejson/pkg-descr Modified: head/devel/py-simplejson/Makefile ============================================================================== --- head/devel/py-simplejson/Makefile Sat Oct 6 16:01:58 2012 (r305379) +++ head/devel/py-simplejson/Makefile Sat Oct 6 16:02:55 2012 (r305380) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-simplejson -# Date created: 25 Apr 2006 -# Whom: Alexander Botero-Lowry -# +# Created by: Alexander Botero-Lowry # $FreeBSD$ -# PORTNAME= simplejson PORTVERSION= 2.6.1 @@ -12,7 +8,7 @@ MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= python@FreeBSD.org -COMMENT= Simplejson is a simple, fast, extensible JSON encoder/decoder +COMMENT= Simple, fast, extensible JSON encoder/decoder LICENSE= MIT Modified: head/devel/py-simplejson/distinfo ============================================================================== --- head/devel/py-simplejson/distinfo Sat Oct 6 16:01:58 2012 (r305379) +++ head/devel/py-simplejson/distinfo Sat Oct 6 16:02:55 2012 (r305380) @@ -1,2 +1,2 @@ SHA256 (simplejson-2.6.1.tar.gz) = b15befbd41157ec21795efcd960828be193cec6334b3e94bb99e02b32daad17c -SIZE (simplejson-2.6.1.tar.gz) = 53180 \ No newline at end of file +SIZE (simplejson-2.6.1.tar.gz) = 53180 Modified: head/devel/py-simplejson/pkg-descr ============================================================================== --- head/devel/py-simplejson/pkg-descr Sat Oct 6 16:01:58 2012 (r305379) +++ head/devel/py-simplejson/pkg-descr Sat Oct 6 16:02:55 2012 (r305380) @@ -1,15 +1,15 @@ simplejson is a simple, fast, extensible JSON encoder/decoder for Python -simplejson is compatible with Python 2.4 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 +simplejson is compatible with Python 2.4 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 +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 +The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). -WWW: https://github.com/simplejson/simplejson +WWW: https://github.com/simplejson/simplejson