From owner-svn-ports-all@freebsd.org Fri Jan 8 04:31:45 2016 Return-Path: Delivered-To: svn-ports-all@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 2A2AFA679D5; Fri, 8 Jan 2016 04:31:45 +0000 (UTC) (envelope-from koobs@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 DF2651A78; Fri, 8 Jan 2016 04:31:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u084Vi7Z085660; Fri, 8 Jan 2016 04:31:44 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u084VhbJ085656; Fri, 8 Jan 2016 04:31:43 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601080431.u084VhbJ085656@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 8 Jan 2016 04:31:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405513 - in head/devel: . py-canonicaljson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Fri, 08 Jan 2016 04:31:45 -0000 Author: koobs Date: Fri Jan 8 04:31:43 2016 New Revision: 405513 URL: https://svnweb.freebsd.org/changeset/ports/405513 Log: [NEW] devel/py-canonicaljson: Canonical JSON A JSON library for Python that provides features such as sorted keys, no insignificant whitespace, minimal escaping where necessary and supports frozendict immutable dictionaries. WWW: https://github.com/matrix-org/python-canonicaljson PR: 205914 Submitted by: Brendan Molloy Added: head/devel/py-canonicaljson/ head/devel/py-canonicaljson/Makefile (contents, props changed) head/devel/py-canonicaljson/distinfo (contents, props changed) head/devel/py-canonicaljson/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jan 8 04:26:45 2016 (r405512) +++ head/devel/Makefile Fri Jan 8 04:31:43 2016 (r405513) @@ -3944,6 +3944,7 @@ SUBDIR += py-bluelet SUBDIR += py-boto SUBDIR += py-botocore + SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-cclib SUBDIR += py-celery Added: head/devel/py-canonicaljson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-canonicaljson/Makefile Fri Jan 8 04:31:43 2016 (r405513) @@ -0,0 +1,30 @@ +# Created by: Brendan Molloy +# $FreeBSD$ + +PORTNAME= canonicaljson +PORTVERSION= 1.0.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= brendan+freebsd@bbqsrc.net +COMMENT= Canonical JSON + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +USES= python +USE_GITHUB= yes +USE_PYTHON= autoplist distutils + +GH_ACCOUNT= matrix-org +GH_PROJECT= python-canonicaljson + +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && ${PYTHON_CMD} -m pytest) + +.include Added: head/devel/py-canonicaljson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-canonicaljson/distinfo Fri Jan 8 04:31:43 2016 (r405513) @@ -0,0 +1,2 @@ +SHA256 (matrix-org-python-canonicaljson-v1.0.0_GH0.tar.gz) = 99da302069a91eb2305a5a0a8965738f7345baf6f6ba7266d3cc77e1d5fe827a +SIZE (matrix-org-python-canonicaljson-v1.0.0_GH0.tar.gz) = 6103 Added: head/devel/py-canonicaljson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-canonicaljson/pkg-descr Fri Jan 8 04:31:43 2016 (r405513) @@ -0,0 +1,5 @@ +A JSON library for Python that provides features such as sorted keys, no +insignificant whitespace, minimal escaping where necessary and supports +frozendict immutable dictionaries. + +WWW: https://github.com/matrix-org/python-canonicaljson