diff options
author | yuri <yuri@FreeBSD.org> | 2018-10-07 14:24:19 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-10-07 14:24:19 +0800 |
commit | 65621697e901fe9f1397dbe1b69f7b48e0b6254c (patch) | |
tree | 5dedbf73b02521d5b7733f8fe281716a3f5da10f | |
parent | 841a492e8f56983a87a9b5ac6fe18b77652485a7 (diff) | |
download | freebsd-ports-gnome-65621697e901fe9f1397dbe1b69f7b48e0b6254c.tar.gz freebsd-ports-gnome-65621697e901fe9f1397dbe1b69f7b48e0b6254c.tar.zst freebsd-ports-gnome-65621697e901fe9f1397dbe1b69f7b48e0b6254c.zip |
New port: devel/py-jsonpickle: Python library for serializing any arbitrary object graph into JSON
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-jsonpickle/Makefile | 19 | ||||
-rw-r--r-- | devel/py-jsonpickle/distinfo | 3 | ||||
-rw-r--r-- | devel/py-jsonpickle/pkg-descr | 10 |
4 files changed, 33 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 383bfed011ee..255195fe7bd1 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4670,6 +4670,7 @@ SUBDIR += py-jsonlib2 SUBDIR += py-jsonlines SUBDIR += py-jsonpatch + SUBDIR += py-jsonpickle SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib diff --git a/devel/py-jsonpickle/Makefile b/devel/py-jsonpickle/Makefile new file mode 100644 index 000000000000..7fe44986e1a3 --- /dev/null +++ b/devel/py-jsonpickle/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= jsonpickle +DISTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python library for serializing any arbitrary object graph into JSON + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-jsonpickle/distinfo b/devel/py-jsonpickle/distinfo new file mode 100644 index 000000000000..bacc568f450c --- /dev/null +++ b/devel/py-jsonpickle/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538893231 +SHA256 (jsonpickle-1.0.tar.gz) = d43ede55b3d9b5524a8e11566ea0b11c9c8109116ef6a509a1b619d2041e7397 +SIZE (jsonpickle-1.0.tar.gz) = 70899 diff --git a/devel/py-jsonpickle/pkg-descr b/devel/py-jsonpickle/pkg-descr new file mode 100644 index 000000000000..fc62f19feb9c --- /dev/null +++ b/devel/py-jsonpickle/pkg-descr @@ -0,0 +1,10 @@ +jsonpickle is a Python library for serialization and deserialization of complex +Python objects to and from JSON. The standard Python libraries for encoding +Python into JSON, such as the stdlib's json, simplejson, and demjson, can only +handle Python primitives that have a direct JSON equivalent (e.g. dicts, lists, +strings, ints, etc.). jsonpickle builds on top of these libraries and allows +more complex data structures to be serialized to JSON. jsonpickle is highly +configurable and extendable-allowing the user to choose the JSON backend and add +additional backends. + +WWW: https://jsonpickle.github.io/ |