pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/py-deepdiff py-deepdiff: updated to 4.0.6



details:   https://anonhg.NetBSD.org/pkgsrc/rev/097083ae1241
branches:  trunk
changeset: 322825:097083ae1241
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Apr 28 19:07:08 2019 +0000

description:
py-deepdiff: updated to 4.0.6

v4.0.6:
Found a tiny bug in Python formatting of numbers in scientific notation. Added a workaround.

v4-0-5: Fixing number diffing. Adding number_format_notation and number_to_string_func.
v4-0-4: Adding ignore_string_case and ignore_type_subclasses
v4-0-3: Adding versionbump tool for release
v4-0-2: Fixing installation issue where rst files are missing.
v4-0-1: Fixing installation Tarball missing requirements.txt . DeepDiff v4+ should not show up as pip installable for Py2. Making Murmur3 installation optional.

v4.0.0:
Ending Python 2 support, Adding more functionalities and documentation for DeepHash. Switching to Pytest for testing. Switching to Murmur3 128bit for hashing. Fixing classes which inherit from 
classes with slots didn't have all of their slots compared. Renaming ContentHash to DeepHash. Adding exclude by path and regex path to DeepHash. Adding ignore_type_in_groups. Adding match_string to 
DeepSearch. Adding Timedelta object diffing.

diffstat:

 textproc/py-deepdiff/Makefile |  10 +++++++---
 textproc/py-deepdiff/PLIST    |  16 +++++++++++-----
 textproc/py-deepdiff/distinfo |  10 +++++-----
 3 files changed, 23 insertions(+), 13 deletions(-)

diffs (80 lines):

diff -r 3e5ce58b784f -r 097083ae1241 textproc/py-deepdiff/Makefile
--- a/textproc/py-deepdiff/Makefile     Sun Apr 28 18:55:19 2019 +0000
+++ b/textproc/py-deepdiff/Makefile     Sun Apr 28 19:07:08 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2017/09/29 11:06:32 adam Exp $
+# $NetBSD: Makefile,v 1.4 2019/04/28 19:07:08 adam Exp $
 
-DISTNAME=      deepdiff-3.3.0
+DISTNAME=      deepdiff-4.0.6
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/deepdiff/}
@@ -10,9 +10,13 @@
 COMMENT=       Deep Difference and Search of any Python object/data
 LICENSE=       mit
 
-DEPENDS+=      ${PYPKGPREFIX}-jsonpickle-[0-9]*:../../textproc/py-jsonpickle
+DEPENDS+=      ${PYPKGPREFIX}-jsonpickle>=1.0:../../textproc/py-jsonpickle
+DEPENDS+=      ${PYPKGPREFIX}-mmh3-[0-9]*:../../devel/py-mmh3
+DEPENDS+=      ${PYPKGPREFIX}-ordered-set>=3.1:../../devel/py-ordered-set
 
 USE_LANGUAGES= # none
 
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 3e5ce58b784f -r 097083ae1241 textproc/py-deepdiff/PLIST
--- a/textproc/py-deepdiff/PLIST        Sun Apr 28 18:55:19 2019 +0000
+++ b/textproc/py-deepdiff/PLIST        Sun Apr 28 19:07:08 2019 +0000
@@ -1,19 +1,24 @@
-@comment $NetBSD: PLIST,v 1.2 2017/09/29 11:06:32 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2019/04/28 19:07:08 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/${EGG_INFODIR}/zip-safe
 ${PYSITELIB}/deepdiff/__init__.py
 ${PYSITELIB}/deepdiff/__init__.pyc
 ${PYSITELIB}/deepdiff/__init__.pyo
-${PYSITELIB}/deepdiff/contenthash.py
-${PYSITELIB}/deepdiff/contenthash.pyc
-${PYSITELIB}/deepdiff/contenthash.pyo
+${PYSITELIB}/deepdiff/base.py
+${PYSITELIB}/deepdiff/base.pyc
+${PYSITELIB}/deepdiff/base.pyo
+${PYSITELIB}/deepdiff/deephash.py
+${PYSITELIB}/deepdiff/deephash.pyc
+${PYSITELIB}/deepdiff/deephash.pyo
+${PYSITELIB}/deepdiff/deephash_doc.rst
 ${PYSITELIB}/deepdiff/diff.py
 ${PYSITELIB}/deepdiff/diff.pyc
 ${PYSITELIB}/deepdiff/diff.pyo
+${PYSITELIB}/deepdiff/diff_doc.rst
 ${PYSITELIB}/deepdiff/helper.py
 ${PYSITELIB}/deepdiff/helper.pyc
 ${PYSITELIB}/deepdiff/helper.pyo
@@ -23,3 +28,4 @@
 ${PYSITELIB}/deepdiff/search.py
 ${PYSITELIB}/deepdiff/search.pyc
 ${PYSITELIB}/deepdiff/search.pyo
+${PYSITELIB}/deepdiff/search_doc.rst
diff -r 3e5ce58b784f -r 097083ae1241 textproc/py-deepdiff/distinfo
--- a/textproc/py-deepdiff/distinfo     Sun Apr 28 18:55:19 2019 +0000
+++ b/textproc/py-deepdiff/distinfo     Sun Apr 28 19:07:08 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2017/09/29 11:06:32 adam Exp $
+$NetBSD: distinfo,v 1.3 2019/04/28 19:07:08 adam Exp $
 
-SHA1 (deepdiff-3.3.0.tar.gz) = 9537493c755f75a2ab40393b87c420ed8a7bc36d
-RMD160 (deepdiff-3.3.0.tar.gz) = ea6423a2b3a6ce933e6ab7a62940003c6d1c0e4b
-SHA512 (deepdiff-3.3.0.tar.gz) = 53ce669512615dd8e00299130aa42e818c4937fa4e72fce9c6dffaad44fe9b85ab0498d9e9ac231b06f54b62776aa5e0866e8cd2d69f4deecc3a7658f867317f
-Size (deepdiff-3.3.0.tar.gz) = 27055 bytes
+SHA1 (deepdiff-4.0.6.tar.gz) = f3f7418b9689b2b2fdb573937b14104734dda2cb
+RMD160 (deepdiff-4.0.6.tar.gz) = 9bde26a9f11e44f54ef11f62175c143a0a21db33
+SHA512 (deepdiff-4.0.6.tar.gz) = 4dc4f1464d7c0b2818f4c8ebc05f5e8732f2c5e300faf45378bbe6f7a22cf3825c203c48653d062747424f588716848600cec7739e71d1e49aa999c2d342216b
+Size (deepdiff-4.0.6.tar.gz) = 48771 bytes



Home | Main Index | Thread Index | Old Index