svn commit: r465426 - in head/devel: . py-json_tricks
Yuri Victorovich
yuri at FreeBSD.org
Sat Mar 24 05:57:44 UTC 2018
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 at 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
More information about the svn-ports-all
mailing list