svn commit: r481432 - in head/devel: . py-deepdiff

Yuri Victorovich yuri at FreeBSD.org
Sun Oct 7 06:28:10 UTC 2018


Author: yuri
Date: Sun Oct  7 06:28:08 2018
New Revision: 481432
URL: https://svnweb.freebsd.org/changeset/ports/481432

Log:
  New port: devel/py-deepdiff: Deep difference and search of any Python object/data

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  7 06:24:19 2018	(r481431)
+++ head/devel/Makefile	Sun Oct  7 06:28:08 2018	(r481432)
@@ -4489,6 +4489,7 @@
     SUBDIR += py-debtcollector
     SUBDIR += py-decorator
     SUBDIR += py-decoratortools
+    SUBDIR += py-deepdiff
     SUBDIR += py-defusedxml
     SUBDIR += py-delfick_error
     SUBDIR += py-deliciousapi

Added: head/devel/py-deepdiff/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-deepdiff/Makefile	Sun Oct  7 06:28:08 2018	(r481432)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	deepdiff
+DISTVERSION=	3.3.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Deep difference and search of any Python object/data
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}jsonpickle>0:devel/py-jsonpickle@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-deepdiff/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-deepdiff/distinfo	Sun Oct  7 06:28:08 2018	(r481432)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1538892954
+SHA256 (deepdiff-3.3.0.tar.gz) = ecad8e16a96ffd27e8f40c9801a6ab16ec6a7e7e6e6859a7710ba4695f22702c
+SIZE (deepdiff-3.3.0.tar.gz) = 27055

Added: head/devel/py-deepdiff/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-deepdiff/pkg-descr	Sun Oct  7 06:28:08 2018	(r481432)
@@ -0,0 +1,5 @@
+Deep difference of dictionaries, iterables, strings and other objects. It will
+recursively look for all the changes. Tested on Python 2.7, 3.3, 3.4, 3.5, 3.6,
+Pypy, Pypy3.
+
+WWW: https://github.com/seperman/deepdiff


More information about the svn-ports-all mailing list