pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-deepdiff



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Jul  9 19:07:45 UTC 2021

Modified Files:
        pkgsrc/textproc/py-deepdiff: Makefile PLIST distinfo
Added Files:
        pkgsrc/textproc/py-deepdiff: ALTERNATIVES
Removed Files:
        pkgsrc/textproc/py-deepdiff/patches: patch-setup.py

Log Message:
py-deepdiff: updated to 5.5.0

v5-5-0: adding iterable_compare_func for DeepDiff, adding output_format of list for path() in tree view.
v5-4-0: adding strict_checking for numbers in DeepSearch.
v5-3-0: add support for regular expressions in DeepSearch.
v5-2-3: Retaining the order of multiple dictionary items added via Delta. Fixed the typo with yml files in deep cli. Fixing Grep RecursionError where using non UTF-8 character. Allowing kwargs to be 
passed to to_json method.
v5-2-2: Fixed Delta serialization when None type is present.
v5-2-0: Removed Murmur3 as the preferred hashing method. Using SHA256 by default now. Added commandline for deepdiff. Added group_by. Added math_epsilon. Improved ignoring of NoneType.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-deepdiff/ALTERNATIVES
cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/py-deepdiff/Makefile \
    pkgsrc/textproc/py-deepdiff/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-deepdiff/PLIST
cvs rdiff -u -r1.1 -r0 pkgsrc/textproc/py-deepdiff/patches/patch-setup.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/py-deepdiff/Makefile
diff -u pkgsrc/textproc/py-deepdiff/Makefile:1.8 pkgsrc/textproc/py-deepdiff/Makefile:1.9
--- pkgsrc/textproc/py-deepdiff/Makefile:1.8    Mon Jul 27 16:51:52 2020
+++ pkgsrc/textproc/py-deepdiff/Makefile        Fri Jul  9 19:07:45 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2020/07/27 16:51:52 adam Exp $
+# $NetBSD: Makefile,v 1.9 2021/07/09 19:07:45 adam Exp $
 
-DISTNAME=      deepdiff-5.0.2
+DISTNAME=      deepdiff-5.5.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/deepdiff/}
@@ -11,14 +11,17 @@ COMMENT=    Deep Difference and Search of a
 LICENSE=       mit
 
 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
+DEPENDS+=      ${PYPKGPREFIX}-ordered-set>=4.0.2:../../devel/py-ordered-set
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
 USE_LANGUAGES= # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
+post-install:
+       cd ${DESTDIR}${PREFIX}/bin && \
+       ${MV} deep deep-${PYVERSSUFFIX} || ${TRUE}
+
 do-test:
        cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests
 
Index: pkgsrc/textproc/py-deepdiff/distinfo
diff -u pkgsrc/textproc/py-deepdiff/distinfo:1.8 pkgsrc/textproc/py-deepdiff/distinfo:1.9
--- pkgsrc/textproc/py-deepdiff/distinfo:1.8    Thu Aug 27 12:28:47 2020
+++ pkgsrc/textproc/py-deepdiff/distinfo        Fri Jul  9 19:07:45 2021
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.8 2020/08/27 12:28:47 joerg Exp $
+$NetBSD: distinfo,v 1.9 2021/07/09 19:07:45 adam Exp $
 
-SHA1 (deepdiff-5.0.2.tar.gz) = 1d1484d74f22a43b32db7f6806509d7dd96bb8c7
-RMD160 (deepdiff-5.0.2.tar.gz) = 1cfd4d27219fe8b01db5dbca91e7ece0cba1fa70
-SHA512 (deepdiff-5.0.2.tar.gz) = 2211903eefc49cdd4d926c2e3a83fe1e6d7891404a35e10e73be9dc7801d2b6d83f30630e501658c67450ed014227c5d13c3b19489fbb34b3afa836369d5f8f5
-Size (deepdiff-5.0.2.tar.gz) = 357103 bytes
-SHA1 (patch-setup.py) = ccf3596de4113679f4ed6bbc8f1bc3ebf6232aa5
+SHA1 (deepdiff-5.5.0.tar.gz) = 8d35151095ab2fe31da146eaaeb8ded3bd8d3e06
+RMD160 (deepdiff-5.5.0.tar.gz) = 1cf3f7bf459c7f94b7de055d454c8ce0d30b2091
+SHA512 (deepdiff-5.5.0.tar.gz) = ce1e254c60b91506b2ec626a0021bc09796c75b9942b6cb0eaad3e67f3983f9d5da9f16cfbee313e7d2431521838b861147fe6a550071376daa1a1f2a911542e
+Size (deepdiff-5.5.0.tar.gz) = 372780 bytes

Index: pkgsrc/textproc/py-deepdiff/PLIST
diff -u pkgsrc/textproc/py-deepdiff/PLIST:1.4 pkgsrc/textproc/py-deepdiff/PLIST:1.5
--- pkgsrc/textproc/py-deepdiff/PLIST:1.4       Tue Jul 21 10:59:04 2020
+++ pkgsrc/textproc/py-deepdiff/PLIST   Fri Jul  9 19:07:45 2021
@@ -1,7 +1,9 @@
-@comment $NetBSD: PLIST,v 1.4 2020/07/21 10:59:04 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2021/07/09 19:07:45 adam Exp $
+bin/deep-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/${EGG_INFODIR}/zip-safe
@@ -14,6 +16,9 @@ ${PYSITELIB}/deepdiff/anyset.pyo
 ${PYSITELIB}/deepdiff/base.py
 ${PYSITELIB}/deepdiff/base.pyc
 ${PYSITELIB}/deepdiff/base.pyo
+${PYSITELIB}/deepdiff/commands.py
+${PYSITELIB}/deepdiff/commands.pyc
+${PYSITELIB}/deepdiff/commands.pyo
 ${PYSITELIB}/deepdiff/deephash.py
 ${PYSITELIB}/deepdiff/deephash.pyc
 ${PYSITELIB}/deepdiff/deephash.pyo

Added files:

Index: pkgsrc/textproc/py-deepdiff/ALTERNATIVES
diff -u /dev/null pkgsrc/textproc/py-deepdiff/ALTERNATIVES:1.1
--- /dev/null   Fri Jul  9 19:07:45 2021
+++ pkgsrc/textproc/py-deepdiff/ALTERNATIVES    Fri Jul  9 19:07:45 2021
@@ -0,0 +1 @@
+bin/deep @PREFIX@/bin/deep-@PYVERSSUFFIX@



Home | Main Index | Thread Index | Old Index