Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 2016 04:31:43 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r405513 - in head/devel: . py-canonicaljson
Message-ID:  <201601080431.u084VhbJ085656@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <brendan+freebsd@bbqsrc.net>

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 <brendan+freebsd@bbqsrc.net>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601080431.u084VhbJ085656>