Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Mar 2018 05:57:43 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465426 - in head/devel: . py-json_tricks
Message-ID:  <201803240557.w2O5vhCM008929@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Mar 24 05:57:43 2018
New Revision: 465426
URL: https://svnweb.freebsd.org/changeset/ports/465426

Log:
  New port: devel/py-json_tricks: Extra features for Python's JSON: comments, order, datetimes, etc
  
  While here, fixed a minor prdering problem in devel/Makefile

Added:
  head/devel/py-json_tricks/
  head/devel/py-json_tricks/Makefile   (contents, props changed)
  head/devel/py-json_tricks/distinfo   (contents, props changed)
  head/devel/py-json_tricks/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Mar 24 03:49:04 2018	(r465425)
+++ head/devel/Makefile	Sat Mar 24 05:57:43 2018	(r465426)
@@ -4550,6 +4550,7 @@
     SUBDIR += py-jsmin
     SUBDIR += py-json-py
     SUBDIR += py-json-sempai
+    SUBDIR += py-json_tricks
     SUBDIR += py-jsonlib
     SUBDIR += py-jsonlib2
     SUBDIR += py-jsonlines
@@ -5285,6 +5286,7 @@
     SUBDIR += rubygem-activesupport4
     SUBDIR += rubygem-activesupport5
     SUBDIR += rubygem-activesupport50
+    SUBDIR += rubygem-airborne
     SUBDIR += rubygem-akismet
     SUBDIR += rubygem-algebrick
     SUBDIR += rubygem-algorithms
@@ -5292,7 +5294,6 @@
     SUBDIR += rubygem-analogger
     SUBDIR += rubygem-annoy
     SUBDIR += rubygem-ansi
-    SUBDIR += rubygem-airborne
     SUBDIR += rubygem-apipie-bindings
     SUBDIR += rubygem-apipie-params
     SUBDIR += rubygem-app_config

Added: head/devel/py-json_tricks/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-json_tricks/Makefile	Sat Mar 24 05:57:43 2018	(r465426)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	json_tricks
+DISTVERSION=	3.11.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Extra features for Python's JSON: comments, order, datetimes, etc
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-json_tricks/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-json_tricks/distinfo	Sat Mar 24 05:57:43 2018	(r465426)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1521870225
+SHA256 (json_tricks-3.11.3.tar.gz) = dda43dcc3c683972922bbb2d5a79861c8f1a8cee5f28f94d3eb96f28bdd9d4a6
+SIZE (json_tricks-3.11.3.tar.gz) = 33380

Added: head/devel/py-json_tricks/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-json_tricks/pkg-descr	Sat Mar 24 05:57:43 2018	(r465426)
@@ -0,0 +1,12 @@
+The pyjson-tricks package brings several pieces of functionality to python
+handling of json files:
+
+* Store and load numpy arrays in human-readable format.
+* Store and load class instances both generic and customized.
+* Store and load date/times as a dictionary (including timezone).
+* Preserve map order {} using OrderedDict.
+* Allow for comments in json files by starting lines with #.
+* Sets, complex numbers, Decimal, Fraction, enums, compression,
+  duplicate keys, etc.
+
+WWW: https://github.com/mverleg/pyjson_tricks



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