From owner-svn-ports-head@freebsd.org Wed Apr 20 06:17:47 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67C84B15262; Wed, 20 Apr 2016 06:17:47 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 36DCB1C86; Wed, 20 Apr 2016 06:17:47 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3K6HkZM016236; Wed, 20 Apr 2016 06:17:46 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3K6HkaA016231; Wed, 20 Apr 2016 06:17:46 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201604200617.u3K6HkaA016231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 20 Apr 2016 06:17:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413671 - in head/www: . py-demjson 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.21 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: Wed, 20 Apr 2016 06:17:47 -0000 Author: brnrd Date: Wed Apr 20 06:17:45 2016 New Revision: 413671 URL: https://svnweb.freebsd.org/changeset/ports/413671 Log: www/py-demjson: encoder, decoder, and lint/validator for JSON - New python port - Add README documents Reviewed by: feld (mentor) Approved by: feld (mentor) Differential Revision: D5969 Added: head/www/py-demjson/ head/www/py-demjson/Makefile (contents, props changed) head/www/py-demjson/distinfo (contents, props changed) head/www/py-demjson/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Apr 20 05:03:46 2016 (r413670) +++ head/www/Makefile Wed Apr 20 06:17:45 2016 (r413671) @@ -1520,6 +1520,7 @@ SUBDIR += py-cssmin SUBDIR += py-cssselect SUBDIR += py-cssutils + SUBDIR += py-demjson SUBDIR += py-django SUBDIR += py-django-allauth SUBDIR += py-django-annoying Added: head/www/py-demjson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-demjson/Makefile Wed Apr 20 06:17:45 2016 (r413671) @@ -0,0 +1,27 @@ +# Created by: Bernard Spil +# $FreeBSD$ + +PORTNAME= demjson +PORTVERSION= 2.2.4 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= Bernard Spil +COMMENT= encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 7159 + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= autoplist distutils + +DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} +PORTDOCS= README.txt README.md + +post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_MAN} ${WRKSRC}/README.txt ${STAGEDIR}${DOCSDIR}/ + +.include Added: head/www/py-demjson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-demjson/distinfo Wed Apr 20 06:17:45 2016 (r413671) @@ -0,0 +1,2 @@ +SHA256 (demjson-2.2.4.tar.gz) = 31de2038a0fdd9c4c11f8bf3b13fe77bc2a128307f965c8d5fb4dc6d6f6beb79 +SIZE (demjson-2.2.4.tar.gz) = 131457 Added: head/www/py-demjson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-demjson/pkg-descr Wed Apr 20 06:17:45 2016 (r413671) @@ -0,0 +1,10 @@ +The "demjson" module, and the included "jsonlint" script, provide methods for +encoding and decoding JSON formatted data, as well as checking JSON data for +errors and/or portability issues. The jsonlint command/script can be used from +the command line without needing any programming. Although the standard Python +library now includes basic JSON support (which it did not when demjson was first +written), this module provides a much more comprehensive implementation with +many features not found elsewhere. It is especially useful for error checking +or for parsing JavaScript data which may not strictly be valid JSON data. + +WWW: http://deron.meranda.us/python/demjson/