From owner-svn-ports-all@freebsd.org Sun Oct 7 06:28:10 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F71110B3697; Sun, 7 Oct 2018 06:28:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C958476478; Sun, 7 Oct 2018 06:28:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF878103EC; Sun, 7 Oct 2018 06:28:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w976S9Rb076591; Sun, 7 Oct 2018 06:28:09 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w976S8Fk076587; Sun, 7 Oct 2018 06:28:08 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810070628.w976S8Fk076587@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 7 Oct 2018 06:28:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481432 - in head/devel: . py-deepdiff X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-deepdiff X-SVN-Commit-Revision: 481432 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2018 06:28:10 -0000 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@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 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