svn commit: r493309 - in head/devel: . py-jsonpath-rw

Yuri Victorovich yuri at FreeBSD.org
Mon Feb 18 18:35:23 UTC 2019


Author: yuri
Date: Mon Feb 18 18:35:21 2019
New Revision: 493309
URL: https://svnweb.freebsd.org/changeset/ports/493309

Log:
  New port: devel/py-jsonpath-rw: Implementation of JSONPath for Python

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Feb 18 18:28:25 2019	(r493308)
+++ head/devel/Makefile	Mon Feb 18 18:35:21 2019	(r493309)
@@ -4718,6 +4718,7 @@
     SUBDIR += py-jsonlib2
     SUBDIR += py-jsonlines
     SUBDIR += py-jsonpatch
+    SUBDIR += py-jsonpath-rw
     SUBDIR += py-jsonpickle
     SUBDIR += py-jsonpointer
     SUBDIR += py-jsonref

Added: head/devel/py-jsonpath-rw/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonpath-rw/Makefile	Mon Feb 18 18:35:21 2019	(r493309)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	jsonpath-rw
+PORTVERSION=	1.4.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Implementation of JSONPath for Python
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}ply>0:devel/py-ply@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-jsonpath-rw/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonpath-rw/distinfo	Mon Feb 18 18:35:21 2019	(r493309)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1550514507
+SHA256 (jsonpath-rw-1.4.0.tar.gz) = 05c471281c45ae113f6103d1268ec7a4831a2e96aa80de45edc89b11fac4fbec
+SIZE (jsonpath-rw-1.4.0.tar.gz) = 13814

Added: head/devel/py-jsonpath-rw/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonpath-rw/pkg-descr	Mon Feb 18 18:35:21 2019	(r493309)
@@ -0,0 +1,8 @@
+This library provides a robust and significantly extended implementation of
+JSONPath for Python.
+
+This library differs from other JSONPath implementations in that it is a full
+language implementation, meaning the JSONPath expressions are first class
+objects, easy to analyze, transform, parse, print, and extend.
+
+WWW: https://github.com/kennknowles/python-jsonpath-rw


More information about the svn-ports-head mailing list