1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00

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

This commit is contained in:
Yuri Victorovich 2018-10-07 06:28:08 +00:00
parent c6a8430aee
commit 9224dfeb6e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=481432
4 changed files with 29 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= deepdiff
DISTVERSION= 3.3.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1538892954
SHA256 (deepdiff-3.3.0.tar.gz) = ecad8e16a96ffd27e8f40c9801a6ab16ec6a7e7e6e6859a7710ba4695f22702c
SIZE (deepdiff-3.3.0.tar.gz) = 27055

View File

@ -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