svn commit: r481431 - in head/devel: . py-jsonpickle

Yuri Victorovich yuri at FreeBSD.org
Sun Oct 7 06:24:21 UTC 2018


Author: yuri
Date: Sun Oct  7 06:24:19 2018
New Revision: 481431
URL: https://svnweb.freebsd.org/changeset/ports/481431

Log:
  New port: devel/py-jsonpickle: Python library for serializing any arbitrary object graph into JSON

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  7 06:10:49 2018	(r481430)
+++ head/devel/Makefile	Sun Oct  7 06:24:19 2018	(r481431)
@@ -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

Added: head/devel/py-jsonpickle/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonpickle/Makefile	Sun Oct  7 06:24:19 2018	(r481431)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	jsonpickle
+DISTVERSION=	1.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at 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>

Added: head/devel/py-jsonpickle/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonpickle/distinfo	Sun Oct  7 06:24:19 2018	(r481431)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1538893231
+SHA256 (jsonpickle-1.0.tar.gz) = d43ede55b3d9b5524a8e11566ea0b11c9c8109116ef6a509a1b619d2041e7397
+SIZE (jsonpickle-1.0.tar.gz) = 70899

Added: head/devel/py-jsonpickle/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonpickle/pkg-descr	Sun Oct  7 06:24:19 2018	(r481431)
@@ -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/


More information about the svn-ports-all mailing list