summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorng0 <ng0@pkgsrc.org>2019-12-31 00:32:01 +0000
committerng0 <ng0@pkgsrc.org>2019-12-31 00:32:01 +0000
commitae4f3104f178ffbd136ca61e3b41991178319f8b (patch)
tree4e02367909dff5350435794e2eb725c220f97249 /sysutils
parent2d9dbe7c290f7bdf5df1192042ccbb09da1ec089 (diff)
downloadpkgsrc-ae4f3104f178ffbd136ca61e3b41991178319f8b.tar.gz
sysutils/py-diffoscope: Update to 134
Changelog: diffoscope (134) unstable; urgency=medium [ Chris Lamb ] * Ensure that autopkgtests are run with our pyproject.toml present for the correct "black" source code formatter settings. (Closes: #945993) * Tidy some unnecessary boolean logic in the ISO9660 tests. * Rename the "text_option_with_stdiout" to "text_option_with_stdout". * Include the libarchive file listing for ISO images to ensure that timestamps (not just dates) are visible in any difference. (Closes: reproducible-builds/diffoscope#81) [ Eli Schwartz ] * Fix an exception in the progressbar handler. [ Vagrant Cascadian ] * Add an external tool reference for zstd on GNU Guix. -- Chris Lamb <lamby@debian.org> Fri, 27 Dec 2019 19:17:16 +0000 diffoscope (133) unstable; urgency=medium * Correct the substitution/filtering of paths in ELF output to avoid unnecessary differences depending on the path name provided on the commandline. (Closes: #945572) * Silence/correct a SyntaxWarning message due to incorrectly comparing an integer by identity (is) over equality (==). (Closes: #945531) -- Chris Lamb <lamby@debian.org> Thu, 28 Nov 2019 10:03:33 +0000 diffoscope (132) unstable; urgency=medium * Allow all possible .zip variations to return with non-zero exit codes, not just known types we can explicitly identify (eg. Java .jmod and .jar files). (Closes: reproducible-builds/diffoscope#78) * Also permit UTF-8 encoded .dsc and .changes files. (Re: reproducible-builds/diffoscope#78) * Rework a long string of "or" statements into a loop with a "break". -- Chris Lamb <lamby@debian.org> Tue, 26 Nov 2019 10:31:44 +0000 diffoscope (131) unstable; urgency=medium * Clarify in the HTML and text outputs that the limits are per output format, not global. (Closes: #944882, reproducible-builds/diffoscope#76) - Bump the previous "max_page_size" limit from 400 kB to 4 MB. * Update an Android manifest test to reflect that parsed XML attributes are returned in a sorted or otherwise novel manner under Python 3.8. * Update code to reflect version 19.10b0 of the black source code reformatter and don't run our self-test for versions earlier than this as it will generate different results and thus fail. * Limit .dsc and .buildinfo matching; don't attempt to compare them as ELF sections or similar. (Closes: reproducible-builds/diffoscope#77) * Add a comment that the text_ascii{1,2} test fixture files are used in multiple places so are not trivial to generate on the fly. -- Chris Lamb <lamby@debian.org> Sat, 23 Nov 2019 15:22:51 -0500 diffoscope (130) unstable; urgency=medium [ Chris Lamb ] * debian/tests/basic-command-line: Move from deprecated ADTTMP to AUTOPKGTEST_TMP. * Correct the matching of R .rds files by also detecting newer versions of this file format. * Drop unused BASE_DIR global in the tests. * Try and ensure that new test data files are generated dynamically, ie. at least no new ones are added without "good" reasons. * Truncate the tcpdump expected diff to 8KB (from ~600KB). * Refresh OCaml test fixtures to support OCaml >= 4.08.1. Closes: #944709 * Correct reference to the ".rdx" extension in a comment. * Update XML test for Python 3.8+. * Don't use line-base dbuffering when communucating with subprocesses in binary mode. (Closes: reproducible-builds/diffoscope#75) [ Jelle van der Waa ] * Add support for comparing .zst files are created by zstd. (Closes: reproducible-builds/diffoscope!34) -- Mattia Rizzolo <mattia@debian.org> Thu, 14 Nov 2019 11:22:20 +0100 diffoscope (129) unstable; urgency=medium * Call R's "deparse" function to ensure that we do not error out and revert to a binary diff when processing .rdb files with internal "vector" types as they do not automatically coerce to strings. * Add the ability to pass Python bytestrings to external commands and pass our long script to parse R .rdb files using this new method over a long command-line argument * Use Rscript's --vanilla option over --no-environ as this also enables --no-save, --no-restore, --no-site-file and --no-init-file. * Improve command-line error messages: - Split out formatting into a separate utility function. - Truncate very long lines when displaying them as an external source of data. - When printing an error from a command, format the command for the user. * Use "exit code" over "return code" when referring to UNIX error codes in displayed differences. -- Chris Lamb <lamby@debian.org> Mon, 28 Oct 2019 11:15:18 +0000 diffoscope (128) unstable; urgency=medium * Query the container for the full path of the parallel R .rdx file for a .rdb file as well as looking in the same directory. This ensures that comparing two .deb/.changes files shows a varying path introduced in version 127. -- Chris Lamb <lamby@debian.org> Fri, 25 Oct 2019 09:21:40 +0100 diffoscope (127) unstable; urgency=medium [ Chris Lamb ] * Move build-dependency on python-argcomplete to the Python 3.x version to facilitate Python 2.x removal. (Closes: #942967) * Overhaul the handling of GNU R .rdb files: - Rework and refactor the handling of .rdb files specifically with respect to locating the parallel .rdx file prior to inspecting the file to ensure that we do not add files to the user's filesystem in the case of directly comparing two .rdb files or, worse, overwriting a file in is place. - Use a ("""-formatted) docstring for our internal R script to dump variables. - Mask/hide standard errors; R will often produce noisy output that is not useful to us. - Don't include a useless and misleading "NULL". - Include all R object names are displayed, including ones beginning with a fullstop ("."). - Sort package fields when dumping data for output stability. - Format package contents as "foo = bar" rather than using ugly and misleading brackets. - Include the object's type when dumping package contents. - Never read the site or user's R location environment configuration to ensure output stability. - Expose absolute paths in the semantic/human-readable output, preventing falling back to a useless hexdump. * Improve the formatting of command lines: - Ensure newlines and other metacharacters appear escaped as "\n", etc. - Use the newline (etc.) escaped version of the commandline being executed in logging/debug output. - When displaying standard error, ensure use the escaped version too. * Add support for easily masking the standard error of commands and use this in the ffprobe comparator. * To match the libarchive container, raise a KeyError exception if we request an invalid member from a directory container. * Correct string representation output in the traceback when we cannot locate a specific item in a container. [ Mattia Rizzolo ] * Run Debian autopkgtests against all Python versions. -- Chris Lamb <lamby@debian.org> Thu, 24 Oct 2019 15:59:34 +0100 diffoscope (126) unstable; urgency=medium [ Chris Lamb ] * Track and report on missing Python modules. (Closes: reproducible-builds/diffoscope#72) * Drop some unnecessary control flow. * Drop explicit inheriting from 'object' class; unnecessary in Python 3. * Bump Standards-Version to 4.4.1. [ Mattia Rizzolo ] * Exit with 2 instead of 1 in case of no disk space. -- Chris Lamb <lamby@debian.org> Mon, 14 Oct 2019 12:29:47 -0700 diffoscope (125) unstable; urgency=medium * The test_libmix_differences ELF test requires xxd. (Closes: #940645) -- Chris Lamb <lamby@debian.org> Wed, 18 Sep 2019 11:44:57 +0200 diffoscope (124) unstable; urgency=medium [ Chris Lamb ] * Also conditionally skip the identification and "no differences" tests as we require the Ocaml compiler to be present when building the test files themselves. (Closes: #940471) [ Mattia Rizzolo ] * Permit all sorts of version suffixes when checking the Debian package version matches setup.py, not just for backports. (Closes: #939387) [ Vagrant Cascadian ] * Add external tools on GNU Guix for odt2txt, sng and pgpdump. [ Marc Herbert ] * Remove StaticLibFile in the ELF comparator -- ArFile.compare_details() is superior. (Closes: reproducible-builds/diffoscope#64) -- Chris Lamb <lamby@debian.org> Tue, 17 Sep 2019 12:19:07 +0200 diffoscope (123) unstable; urgency=medium [ Chris Lamb ] * Build OCaml test input files on-demand rather than shipping them with the package in order to prevent test failures with OCaml 4.08. (Closes: #939386) * Update test skipping messages: - When skipping tests due to the lack of installed tool, print the package that may provide it. - Update "requires foo module" messages to clarify that they are regarding Python modules, not packages. * Rebuild the test squashfs images to exclude the character device as they requires root or fakeroot to extract. (reproducible-builds/diffoscope#65) * Remove accidentally-committed test fixture generation code from tests. * Set long_description_content_type to 'text/x-rst' in setup.py to appease the PyPI.org linter. [ Mattia Rizzolo ] * Don't crash when the progress is requested but the Python module is missing. (Closes: #939085) [ Vagrant Cascadian ] * Add external tools for gifbuild, javap and kbxutil in GNU Guix. [ Marc Herbert ] * In the cbfs tests, add a "Comp" column test to support Coreboot utils > 4.6. -- Chris Lamb <lamby@debian.org> Sat, 07 Sep 2019 14:16:31 +0100 diffoscope (122) unstable; urgency=medium [ Chris Lamb ] * Apply patch from László Böszörményi to update the squashfs test output and bump the required version for the test itself. (Closes: #935684) * Skip calls to unsquashfs when we are not root or fakeroot. (Re: reproducible-builds/diffoscope#63) * Include either standard error or standard output (and not just the latter) if/when an external command fails. * Fix a few unicode/bytes issues: - Avoid a possible traceback caused by a str/bytes confusion when handling the output of failing external commands. - Ensure that all of our artificially-created subprocess.CalledProcessError instances have `output` instances that are bytes objects, not str. * Improve debugging output: * Add the containing module name to the (eg.) "Using StaticLibFile for ..." * Improve and condense output when creating our Comparator object types. * Correct a reference to `parser.diff` as `diff` in this context is a Python function in the module, not the actual output returned from diff(1). * Add the "wabt" Debian package to the test dependencies so that we run the wasm tests. [ Mattia Rizzolo ] * Now that we test-require wabt, expect that its tools to be available during autopkgtests. -- Chris Lamb <lamby@debian.org> Fri, 30 Aug 2019 08:52:25 +0100 diffoscope (121) unstable; urgency=medium * Don't fallback to a (useless) raw hexdump when readelf(1) reports an minor issue in a section in an ELF binary. For example, when the "frames" section is of the "NOBITS" type, its contents are apparently "unreliable" and thus readelf(1) exits with a returncode of 1. (Closes: #849407, #931962) * Add support to Difference.from_command_exc and friends to optionally ignore specified returncodes from the called program and treat them as "no" difference. * Simplify the parsing of the optional "command_args" argument to the from_command and from_command_exc methods in the Difference class. -- Chris Lamb <lamby@debian.org> Fri, 16 Aug 2019 09:49:07 -0700 diffoscope (120) unstable; urgency=medium * No-change sourceful after accidentally uploading binaries in order to migration to testing. -- Chris Lamb <lamby@debian.org> Mon, 29 Jul 2019 17:17:46 -0300 diffoscope (119) unstable; urgency=medium [ Chris Lamb ] * If a command fails to execute but does not print anything to standard error, try and include the first line of standard output in the message we include in the diff. This was motivated by readelf(1) returning its error messages on stdout. (Closes: #931963) * Add support for Java ".jmod" modules. Not all versions of file(1) support detection of Jmod files yet, so we perform a manual comparison instead. (Closes: #933308) * Re-add "return code" noun to "Command `foo` exited with X" error messages. * Factor out the ability to ignore the exit codes of "zipinfo" and "zipinfo -v" in the presence of non-standard headers. * Only override the exit code from our special-cased calls to zipinfo(1) if they are 1 or 2 to avoid potentially masking real errors. * Also add missing textual description entries for ZipFile and MozillaZipFile file types. * Skip extra newline in "Output:\n<none>". * Cease ignoring test failures in stable-backports. * Bump debhelper compat level to 12. [ Marc Herbert ] * Catch failures to disassemble and rescue all other differences. (Closes: reproducible-builds/diffoscope!29) -- Chris Lamb <lamby@debian.org> Mon, 29 Jul 2019 15:22:24 -0300 diffoscope (118) unstable; urgency=medium * Don't fail in autopkgtests when, for example, we do not have sufficiently newer or older version of file. (Closes: #931881) * Also include python3-tlsh in test dependencies. * Tidy handling of DIFFOSCOPE_FAIL_TESTS_ON_MISSING_TOOLS: - Merge two previously-overlapping environment variables. - Use repr(..)-style output when printing test status. - Add some explicit return values to appease pylint. -- Chris Lamb <lamby@debian.org> Sat, 13 Jul 2019 10:23:29 -0300 diffoscope (117) unstable; urgency=medium [ Chris Lamb ] * Add support for file 5.37. Thanks again to Christoph Biedl for the heads-up in advance. (Closes: reproducible-builds/diffoscope/#57) * Apply patch from Gianfranco Costamagna to fix autopkgtest failures in Debian. (Closes: #931709) [ Holger Levsen ] * debian/control: Bump Standards-Version to 4.4.0. -- Chris Lamb <lamby@debian.org> Tue, 09 Jul 2019 10:24:54 -0300 diffoscope (116) unstable; urgency=medium [ Chris Lamb ] * Upload to unstable after the release of Debian "buster". * README.rst & manual page generation: - Strip out manpage-only parts of the README rather than using "only" reStructuredText directives in order to support the demands of the latest PyPI website. - Use "real" reStructuredText comments instead of using the "raw" directive. * Dockerfile: - Build the Docker image from the current Git checkout, not the Debian archive. (reproducible-builds/diffoscope#56) - Use the ENTRYPOINT directive with the JSON syntax instead so we pass all arguments to the underlying diffoscope executable. * Document that run_diffoscope should not be considered a stable API. [ Mattia Rizzolo ] * Rename a test function to prevent shadowing a previous one with the same name. * Add ffmpeg to the list of Debian build-dependencies for the testsuite. [ Vagrant Cascadian ] * Add support for known external tools in GNU Guix. -- Chris Lamb <lamby@debian.org> Sun, 07 Jul 2019 11:54:29 -0300 diffoscope (115) experimental; urgency=medium [ Chris Lamb ] * Fix execution of symbolic links that point to the "bin/diffoscope" entry point by fully resolving the location. * Add a Dockerfile. * Update contributing messages with instructions regarding the Docker image. [ Mattia Rizzolo ] * tests: + Allow specifying which tools are known missing using DIFFOSCOPE_TESTS_MISSING_TOOLS, to override a _FAIL_ON_MISSING_TOOLS. + With DIFFOSCOPE_TESTS_FAIL_ON_MISSING_TOOLS=1, actually fail only tests that are missing the required tools. * debian: + Add black to the test dependencies. + Enforce the "fail on missing tools" only when testing with all the recommended packages. + Ack some missing tools during autopkgtest. + Reinstate oggvideotools and procyon-decompiler test dependencies, now that are not buggy anymore. -- Mattia Rizzolo <mattia@debian.org> Tue, 21 May 2019 16:02:02 +0200 diffoscope (114) experimental; urgency=medium [ Chris Lamb ] * Add support for GnuPG "keybox" files. Thanks to Daniel Kahn Gillmor for the suggestion. (Closes: #871244, reproducible-builds/diffoscope#23) * Always warn if tlsh module is not available (not just if a specific fuzziness threshold is specified) to match the epilog of the --help output. This prevents missing support for file rename detection. (Closes: #888237, reproducible-builds/diffoscope#29) * Treat missing tools on Debian autopkgtests as individual test failures by checking whether a new DIFFOSCOPE_TESTS_FAIL_ON_MISSING_TOOLS environment variable is exported. (Closes: #905885, reproducible-builds/diffoscope#35) * Require that "-" is explicitly specified to read a single diff from standard input to avoid non-intuitive behaviour when diffoscope is called without any arguments. (Closes: reproducible-builds/diffoscope#54) * Make --use-dbgsym a ternary operator to make it easier to totally disable. Thanks to Mattia Rizzolo for the suggestion. * Consolidate on "e" as the aliased exception name. [ Milena Boselli Rosa ] * Various fixes to the HTML markup to prevent validation warnings/errors: - Prevent empty values for the "name" attribute name on HTML anchor tags, and add an "id" to its parent "div" container. - Fix "table column x established by element 'col' has no cells beginning in it" warnings. - Fix "Text run is not in Unicode Normalization Form C". - Remove the "type" HTML attribute from <style> elements. [ Vibhu ] * Fail more gracefully when running out of diskspace. (Closes: #874582) -- Chris Lamb <lamby@debian.org> Sun, 28 Apr 2019 17:21:46 +0100 diffoscope (113) unstable; urgency=medium * Replace over 8 MB of Android boot ROM test suite fixtures with 14 KB equivalents. (Closes: #894334, reproducible-builds/diffoscope#13) * Compare .asc PGP signatures as text, not as a hexdump. (Closes: #908991, reproducible-builds/diffoscope#7) * Improve the displayed comment when falling back to a binary diff to include the file type. (Closes: reproducible-builds/diffoscope#49) * Explicitly mention when the guestfs module is missing at runtime and we are falling back to a binary diff. (Closes: reproducible-builds/diffoscope#45) * Provide explicit help when the libarchive system package is missing or "incomplete". (Closes: reproducible-builds/diffoscope#50) * Improve the --help outout: * Indent and wrap the list of supported file formats. * Include links to the diffoscope homepage and bug tracker. * Refer to the Debian package names when indicating how to obtain the tlsh and argcomplete modules. * Drop "DOS/MBR" source string test. * Correct a "recurse" typo. * Adopt the "black" <https://black.readthedocs.io> source code formatter: - Add an initial configuration in a PEP 518 pyproject.toml file and update MANIFEST.in to include pyproject.toml in future release tarballs. - Run the formatter against the source. - Test that the source code satisfies the formatter. -- Chris Lamb <lamby@debian.org> Mon, 04 Mar 2019 23:00:38 +0100 diffoscope (112) unstable; urgency=medium [ Chris Lamb ] * New features: - Add a --exclude-directory-metadata=recursive option to support ignoring timestamp differences (etc.) in nested archives/containers. (Closes: #907600, reproducible-builds/diffoscope#36) - Add support for comparing metadata in MP3 files. (Closes: reproducible-builds/diffoscope#43) - Add support for comparing .crx Chrome browser extensions. (Closes: reproducible-builds/diffoscope#41) * Bug fixes: - Catch tracebacks when mounting invalid filesystem images under guestfs. - Ensure both WASM test data files are actually unique. (Closes: reproducible-builds/diffoscope#42) - Replace literal xxd(1) output in tests/data/hello.wasm with its binary equivalent. (Closes: reproducible-builds/diffoscope#47) * Misc improvements: - Rework and comment logic determining a default for exclude_directory_metadata. - Fix a number of Ghostscript-related test issues regarding the update of this package from 9.20 to 9.26 in Debian "stable". [ Mattia Rizzolo ] * Make test_ps.test_text_diff pass with ghostscript 9.26. [ Ed Maste ] * Include relocation information in objdump disassembly. (Closes: reproducible-builds/diffoscope#48) [ Graham Christensen ] * Clarify notice if no file-specific diff caused fallback. (MR: !19) -- Chris Lamb <lamby@debian.org> Tue, 19 Feb 2019 09:56:29 +0100 diffoscope (111) unstable; urgency=medium * Fix a regression introduced via #920701 where we stopped using the -dbgsym packages when comparing .buildinfo or .changes files. (Closes: reproducible-builds/diffoscope#46) -- Chris Lamb <lamby@debian.org> Sun, 10 Feb 2019 13:09:26 +0100 diffoscope (110) unstable; urgency=medium [ Chris Lamb ] * Don't look for adjacent -dbgsym package files automatically anymore to align better with default user expectations. The existing behaviour can be re-enabled by specifying the new `--use-dbgsym` flag. (Closes: #920701) * Don't crash with if we were unable to successfully extract a "guestfs"-based file. (Closes: #901982) * Avoid clumsy profiling title length calculations by moving to Markdown syntax, from reStructuredText. * Drop printing out dpkg-query output when running tests: it's rather noisy and has not helped yet in reproducing an error. * Re-enable gnumeric as a Build-Depends. * debian/rules: Use str.format over "+" for string concatenation. [ Jelle van der Waa ] * comparators.wasm: Remove an unused "re" import. (MR: !18) [ Mattia Rizzolo ] * comparators/elf: Apply flake8. -- Chris Lamb <lamby@debian.org> Wed, 06 Feb 2019 17:33:09 +0100
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/py-diffoscope/Makefile8
-rw-r--r--sysutils/py-diffoscope/PLIST418
-rw-r--r--sysutils/py-diffoscope/distinfo10
3 files changed, 224 insertions, 212 deletions
diff --git a/sysutils/py-diffoscope/Makefile b/sysutils/py-diffoscope/Makefile
index 45270cd8938..921b29f4401 100644
--- a/sysutils/py-diffoscope/Makefile
+++ b/sysutils/py-diffoscope/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.10 2019/04/26 13:14:15 maya Exp $
+# $NetBSD: Makefile,v 1.11 2019/12/31 00:32:01 ng0 Exp $
-DISTNAME= diffoscope-110
+DISTNAME= diffoscope-134
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= sysutils python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/diffoscope/}
@@ -19,7 +18,7 @@ DEPENDS+= colordiff-[0-9]*:../../devel/colordiff
# for xxd
DEPENDS+= vim-[0-9]*:../../editors/vim
-USE_LANGUAGES= # none
+USE_LANGUAGES= c # for tests
USE_TOOLS+= bzip2:run gtar:run xz:run
SUBST_CLASSES+= gtar
@@ -29,6 +28,7 @@ SUBST_FILES.gtar+= tests/comparators/test_utils.py
SUBST_MESSAGE.gtar= Fix path to gtar.
SUBST_STAGE.gtar= post-configure
+# Only Python 3 is supported.
PYTHON_VERSIONS_INCOMPATIBLE= 27
post-install:
diff --git a/sysutils/py-diffoscope/PLIST b/sysutils/py-diffoscope/PLIST
index 2a7552f23d6..a7549bdab8b 100644
--- a/sysutils/py-diffoscope/PLIST
+++ b/sysutils/py-diffoscope/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2019/02/09 14:13:25 khorben Exp $
+@comment $NetBSD: PLIST,v 1.7 2019/12/31 00:32:01 ng0 Exp $
bin/diffoscope-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -7,314 +7,326 @@ ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/diffoscope/__init__.py
-${PYSITELIB}/diffoscope/__init__.pyo
${PYSITELIB}/diffoscope/__init__.pyc
-${PYSITELIB}/diffoscope/changes.pyo
-${PYSITELIB}/diffoscope/changes.pyc
-${PYSITELIB}/diffoscope/config.pyo
-${PYSITELIB}/diffoscope/config.pyc
-${PYSITELIB}/diffoscope/diff.pyo
-${PYSITELIB}/diffoscope/diff.pyc
-${PYSITELIB}/diffoscope/difference.pyo
-${PYSITELIB}/diffoscope/difference.pyc
-${PYSITELIB}/diffoscope/exc.pyo
-${PYSITELIB}/diffoscope/exc.pyc
-${PYSITELIB}/diffoscope/excludes.pyo
-${PYSITELIB}/diffoscope/excludes.pyc
-${PYSITELIB}/diffoscope/external_tools.pyo
-${PYSITELIB}/diffoscope/external_tools.pyc
-${PYSITELIB}/diffoscope/feeders.pyo
-${PYSITELIB}/diffoscope/feeders.pyc
-${PYSITELIB}/diffoscope/locale.pyo
-${PYSITELIB}/diffoscope/locale.pyc
-${PYSITELIB}/diffoscope/logging.pyo
-${PYSITELIB}/diffoscope/logging.pyc
-${PYSITELIB}/diffoscope/main.pyo
-${PYSITELIB}/diffoscope/main.pyc
-${PYSITELIB}/diffoscope/path.pyo
-${PYSITELIB}/diffoscope/path.pyc
-${PYSITELIB}/diffoscope/profiling.pyo
-${PYSITELIB}/diffoscope/profiling.pyc
-${PYSITELIB}/diffoscope/progress.pyo
-${PYSITELIB}/diffoscope/progress.pyc
-${PYSITELIB}/diffoscope/tempfiles.pyo
-${PYSITELIB}/diffoscope/tempfiles.pyc
-${PYSITELIB}/diffoscope/tools.pyo
-${PYSITELIB}/diffoscope/tools.pyc
+${PYSITELIB}/diffoscope/__init__.pyo
${PYSITELIB}/diffoscope/changes.py
+${PYSITELIB}/diffoscope/changes.pyc
+${PYSITELIB}/diffoscope/changes.pyo
${PYSITELIB}/diffoscope/comparators/__init__.py
-${PYSITELIB}/diffoscope/comparators/__init__.pyo
${PYSITELIB}/diffoscope/comparators/__init__.pyc
-${PYSITELIB}/diffoscope/comparators/android.pyo
-${PYSITELIB}/diffoscope/comparators/android.pyc
-${PYSITELIB}/diffoscope/comparators/apk.pyo
-${PYSITELIB}/diffoscope/comparators/apk.pyc
-${PYSITELIB}/diffoscope/comparators/ar.pyo
-${PYSITELIB}/diffoscope/comparators/ar.pyc
-${PYSITELIB}/diffoscope/comparators/berkeley_db.pyo
-${PYSITELIB}/diffoscope/comparators/berkeley_db.pyc
-${PYSITELIB}/diffoscope/comparators/binary.pyo
-${PYSITELIB}/diffoscope/comparators/binary.pyc
-${PYSITELIB}/diffoscope/comparators/binwalk.pyo
-${PYSITELIB}/diffoscope/comparators/binwalk.pyc
-${PYSITELIB}/diffoscope/comparators/bzip2.pyo
-${PYSITELIB}/diffoscope/comparators/bzip2.pyc
-${PYSITELIB}/diffoscope/comparators/cbfs.pyo
-${PYSITELIB}/diffoscope/comparators/cbfs.pyc
-${PYSITELIB}/diffoscope/comparators/cpio.pyo
-${PYSITELIB}/diffoscope/comparators/cpio.pyc
-${PYSITELIB}/diffoscope/comparators/deb.pyo
-${PYSITELIB}/diffoscope/comparators/deb.pyc
-${PYSITELIB}/diffoscope/comparators/debian.pyo
-${PYSITELIB}/diffoscope/comparators/debian.pyc
-${PYSITELIB}/diffoscope/comparators/debian_fallback.pyo
-${PYSITELIB}/diffoscope/comparators/debian_fallback.pyc
-${PYSITELIB}/diffoscope/comparators/device.pyo
-${PYSITELIB}/diffoscope/comparators/device.pyc
-${PYSITELIB}/diffoscope/comparators/dex.pyo
-${PYSITELIB}/diffoscope/comparators/dex.pyc
-${PYSITELIB}/diffoscope/comparators/directory.pyo
-${PYSITELIB}/diffoscope/comparators/directory.pyc
-${PYSITELIB}/diffoscope/comparators/docx.pyo
-${PYSITELIB}/diffoscope/comparators/docx.pyc
-${PYSITELIB}/diffoscope/comparators/dtb.pyo
-${PYSITELIB}/diffoscope/comparators/dtb.pyc
-${PYSITELIB}/diffoscope/comparators/elf.pyo
-${PYSITELIB}/diffoscope/comparators/elf.pyc
-${PYSITELIB}/diffoscope/comparators/fontconfig.pyo
-${PYSITELIB}/diffoscope/comparators/fontconfig.pyc
-${PYSITELIB}/diffoscope/comparators/fonts.pyo
-${PYSITELIB}/diffoscope/comparators/fonts.pyc
-${PYSITELIB}/diffoscope/comparators/fsimage.pyo
-${PYSITELIB}/diffoscope/comparators/fsimage.pyc
-${PYSITELIB}/diffoscope/comparators/gettext.pyo
-${PYSITELIB}/diffoscope/comparators/gettext.pyc
-${PYSITELIB}/diffoscope/comparators/gif.pyo
-${PYSITELIB}/diffoscope/comparators/gif.pyc
-${PYSITELIB}/diffoscope/comparators/git.pyo
-${PYSITELIB}/diffoscope/comparators/git.pyc
-${PYSITELIB}/diffoscope/comparators/gnumeric.pyo
-${PYSITELIB}/diffoscope/comparators/gnumeric.pyc
-${PYSITELIB}/diffoscope/comparators/gzip.pyo
-${PYSITELIB}/diffoscope/comparators/gzip.pyc
-${PYSITELIB}/diffoscope/comparators/haskell.pyo
-${PYSITELIB}/diffoscope/comparators/haskell.pyc
-${PYSITELIB}/diffoscope/comparators/icc.pyo
-${PYSITELIB}/diffoscope/comparators/icc.pyc
-${PYSITELIB}/diffoscope/comparators/image.pyo
-${PYSITELIB}/diffoscope/comparators/image.pyc
-${PYSITELIB}/diffoscope/comparators/ipk.pyo
-${PYSITELIB}/diffoscope/comparators/ipk.pyc
-${PYSITELIB}/diffoscope/comparators/iso9660.pyo
-${PYSITELIB}/diffoscope/comparators/iso9660.pyc
-${PYSITELIB}/diffoscope/comparators/java.pyo
-${PYSITELIB}/diffoscope/comparators/java.pyc
-${PYSITELIB}/diffoscope/comparators/javascript.pyo
-${PYSITELIB}/diffoscope/comparators/javascript.pyc
-${PYSITELIB}/diffoscope/comparators/json.pyo
-${PYSITELIB}/diffoscope/comparators/json.pyc
-${PYSITELIB}/diffoscope/comparators/llvm.pyo
-${PYSITELIB}/diffoscope/comparators/llvm.pyc
-${PYSITELIB}/diffoscope/comparators/lz4.pyo
-${PYSITELIB}/diffoscope/comparators/lz4.pyc
-${PYSITELIB}/diffoscope/comparators/macho.pyo
-${PYSITELIB}/diffoscope/comparators/macho.pyc
-${PYSITELIB}/diffoscope/comparators/missing_file.pyo
-${PYSITELIB}/diffoscope/comparators/missing_file.pyc
-${PYSITELIB}/diffoscope/comparators/mono.pyo
-${PYSITELIB}/diffoscope/comparators/mono.pyc
-${PYSITELIB}/diffoscope/comparators/ocaml.pyo
-${PYSITELIB}/diffoscope/comparators/ocaml.pyc
-${PYSITELIB}/diffoscope/comparators/odt.pyo
-${PYSITELIB}/diffoscope/comparators/odt.pyc
-${PYSITELIB}/diffoscope/comparators/ogg.pyo
-${PYSITELIB}/diffoscope/comparators/ogg.pyc
-${PYSITELIB}/diffoscope/comparators/openssh.pyo
-${PYSITELIB}/diffoscope/comparators/openssh.pyc
-${PYSITELIB}/diffoscope/comparators/pcap.pyo
-${PYSITELIB}/diffoscope/comparators/pcap.pyc
-${PYSITELIB}/diffoscope/comparators/pdf.pyo
-${PYSITELIB}/diffoscope/comparators/pdf.pyc
-${PYSITELIB}/diffoscope/comparators/pgp.pyo
-${PYSITELIB}/diffoscope/comparators/pgp.pyc
-${PYSITELIB}/diffoscope/comparators/png.pyo
-${PYSITELIB}/diffoscope/comparators/png.pyc
-${PYSITELIB}/diffoscope/comparators/ppu.pyo
-${PYSITELIB}/diffoscope/comparators/ppu.pyc
-${PYSITELIB}/diffoscope/comparators/ps.pyo
-${PYSITELIB}/diffoscope/comparators/ps.pyc
-${PYSITELIB}/diffoscope/comparators/rdata.pyo
-${PYSITELIB}/diffoscope/comparators/rdata.pyc
-${PYSITELIB}/diffoscope/comparators/rpm.pyo
-${PYSITELIB}/diffoscope/comparators/rpm.pyc
-${PYSITELIB}/diffoscope/comparators/rpm_fallback.pyo
-${PYSITELIB}/diffoscope/comparators/rpm_fallback.pyc
-${PYSITELIB}/diffoscope/comparators/rust.pyo
-${PYSITELIB}/diffoscope/comparators/rust.pyc
-${PYSITELIB}/diffoscope/comparators/sqlite.pyo
-${PYSITELIB}/diffoscope/comparators/sqlite.pyc
-${PYSITELIB}/diffoscope/comparators/squashfs.pyo
-${PYSITELIB}/diffoscope/comparators/squashfs.pyc
-${PYSITELIB}/diffoscope/comparators/symlink.pyo
-${PYSITELIB}/diffoscope/comparators/symlink.pyc
-${PYSITELIB}/diffoscope/comparators/tar.pyo
-${PYSITELIB}/diffoscope/comparators/tar.pyc
-${PYSITELIB}/diffoscope/comparators/text.pyo
-${PYSITELIB}/diffoscope/comparators/text.pyc
-${PYSITELIB}/diffoscope/comparators/wasm.pyo
-${PYSITELIB}/diffoscope/comparators/wasm.pyc
-${PYSITELIB}/diffoscope/comparators/xml.pyo
-${PYSITELIB}/diffoscope/comparators/xml.pyc
-${PYSITELIB}/diffoscope/comparators/xsb.pyo
-${PYSITELIB}/diffoscope/comparators/xsb.pyc
-${PYSITELIB}/diffoscope/comparators/xz.pyo
-${PYSITELIB}/diffoscope/comparators/xz.pyc
-${PYSITELIB}/diffoscope/comparators/zip.pyo
-${PYSITELIB}/diffoscope/comparators/zip.pyc
+${PYSITELIB}/diffoscope/comparators/__init__.pyo
${PYSITELIB}/diffoscope/comparators/android.py
+${PYSITELIB}/diffoscope/comparators/android.pyc
+${PYSITELIB}/diffoscope/comparators/android.pyo
${PYSITELIB}/diffoscope/comparators/apk.py
+${PYSITELIB}/diffoscope/comparators/apk.pyc
+${PYSITELIB}/diffoscope/comparators/apk.pyo
${PYSITELIB}/diffoscope/comparators/ar.py
+${PYSITELIB}/diffoscope/comparators/ar.pyc
+${PYSITELIB}/diffoscope/comparators/ar.pyo
${PYSITELIB}/diffoscope/comparators/berkeley_db.py
+${PYSITELIB}/diffoscope/comparators/berkeley_db.pyc
+${PYSITELIB}/diffoscope/comparators/berkeley_db.pyo
${PYSITELIB}/diffoscope/comparators/binary.py
+${PYSITELIB}/diffoscope/comparators/binary.pyc
+${PYSITELIB}/diffoscope/comparators/binary.pyo
${PYSITELIB}/diffoscope/comparators/binwalk.py
+${PYSITELIB}/diffoscope/comparators/binwalk.pyc
+${PYSITELIB}/diffoscope/comparators/binwalk.pyo
${PYSITELIB}/diffoscope/comparators/bzip2.py
+${PYSITELIB}/diffoscope/comparators/bzip2.pyc
+${PYSITELIB}/diffoscope/comparators/bzip2.pyo
${PYSITELIB}/diffoscope/comparators/cbfs.py
+${PYSITELIB}/diffoscope/comparators/cbfs.pyc
+${PYSITELIB}/diffoscope/comparators/cbfs.pyo
${PYSITELIB}/diffoscope/comparators/cpio.py
+${PYSITELIB}/diffoscope/comparators/cpio.pyc
+${PYSITELIB}/diffoscope/comparators/cpio.pyo
${PYSITELIB}/diffoscope/comparators/deb.py
+${PYSITELIB}/diffoscope/comparators/deb.pyc
+${PYSITELIB}/diffoscope/comparators/deb.pyo
${PYSITELIB}/diffoscope/comparators/debian.py
+${PYSITELIB}/diffoscope/comparators/debian.pyc
+${PYSITELIB}/diffoscope/comparators/debian.pyo
${PYSITELIB}/diffoscope/comparators/debian_fallback.py
+${PYSITELIB}/diffoscope/comparators/debian_fallback.pyc
+${PYSITELIB}/diffoscope/comparators/debian_fallback.pyo
${PYSITELIB}/diffoscope/comparators/device.py
+${PYSITELIB}/diffoscope/comparators/device.pyc
+${PYSITELIB}/diffoscope/comparators/device.pyo
${PYSITELIB}/diffoscope/comparators/dex.py
+${PYSITELIB}/diffoscope/comparators/dex.pyc
+${PYSITELIB}/diffoscope/comparators/dex.pyo
${PYSITELIB}/diffoscope/comparators/directory.py
+${PYSITELIB}/diffoscope/comparators/directory.pyc
+${PYSITELIB}/diffoscope/comparators/directory.pyo
${PYSITELIB}/diffoscope/comparators/docx.py
+${PYSITELIB}/diffoscope/comparators/docx.pyc
+${PYSITELIB}/diffoscope/comparators/docx.pyo
${PYSITELIB}/diffoscope/comparators/dtb.py
+${PYSITELIB}/diffoscope/comparators/dtb.pyc
+${PYSITELIB}/diffoscope/comparators/dtb.pyo
${PYSITELIB}/diffoscope/comparators/elf.py
+${PYSITELIB}/diffoscope/comparators/elf.pyc
+${PYSITELIB}/diffoscope/comparators/elf.pyo
+${PYSITELIB}/diffoscope/comparators/ffprobe.py
+${PYSITELIB}/diffoscope/comparators/ffprobe.pyc
+${PYSITELIB}/diffoscope/comparators/ffprobe.pyo
${PYSITELIB}/diffoscope/comparators/fontconfig.py
+${PYSITELIB}/diffoscope/comparators/fontconfig.pyc
+${PYSITELIB}/diffoscope/comparators/fontconfig.pyo
${PYSITELIB}/diffoscope/comparators/fonts.py
+${PYSITELIB}/diffoscope/comparators/fonts.pyc
+${PYSITELIB}/diffoscope/comparators/fonts.pyo
${PYSITELIB}/diffoscope/comparators/fsimage.py
+${PYSITELIB}/diffoscope/comparators/fsimage.pyc
+${PYSITELIB}/diffoscope/comparators/fsimage.pyo
${PYSITELIB}/diffoscope/comparators/gettext.py
+${PYSITELIB}/diffoscope/comparators/gettext.pyc
+${PYSITELIB}/diffoscope/comparators/gettext.pyo
${PYSITELIB}/diffoscope/comparators/gif.py
+${PYSITELIB}/diffoscope/comparators/gif.pyc
+${PYSITELIB}/diffoscope/comparators/gif.pyo
${PYSITELIB}/diffoscope/comparators/git.py
+${PYSITELIB}/diffoscope/comparators/git.pyc
+${PYSITELIB}/diffoscope/comparators/git.pyo
${PYSITELIB}/diffoscope/comparators/gnumeric.py
+${PYSITELIB}/diffoscope/comparators/gnumeric.pyc
+${PYSITELIB}/diffoscope/comparators/gnumeric.pyo
${PYSITELIB}/diffoscope/comparators/gzip.py
+${PYSITELIB}/diffoscope/comparators/gzip.pyc
+${PYSITELIB}/diffoscope/comparators/gzip.pyo
${PYSITELIB}/diffoscope/comparators/haskell.py
+${PYSITELIB}/diffoscope/comparators/haskell.pyc
+${PYSITELIB}/diffoscope/comparators/haskell.pyo
${PYSITELIB}/diffoscope/comparators/icc.py
+${PYSITELIB}/diffoscope/comparators/icc.pyc
+${PYSITELIB}/diffoscope/comparators/icc.pyo
${PYSITELIB}/diffoscope/comparators/image.py
+${PYSITELIB}/diffoscope/comparators/image.pyc
+${PYSITELIB}/diffoscope/comparators/image.pyo
${PYSITELIB}/diffoscope/comparators/ipk.py
+${PYSITELIB}/diffoscope/comparators/ipk.pyc
+${PYSITELIB}/diffoscope/comparators/ipk.pyo
${PYSITELIB}/diffoscope/comparators/iso9660.py
+${PYSITELIB}/diffoscope/comparators/iso9660.pyc
+${PYSITELIB}/diffoscope/comparators/iso9660.pyo
${PYSITELIB}/diffoscope/comparators/java.py
+${PYSITELIB}/diffoscope/comparators/java.pyc
+${PYSITELIB}/diffoscope/comparators/java.pyo
${PYSITELIB}/diffoscope/comparators/javascript.py
+${PYSITELIB}/diffoscope/comparators/javascript.pyc
+${PYSITELIB}/diffoscope/comparators/javascript.pyo
${PYSITELIB}/diffoscope/comparators/json.py
+${PYSITELIB}/diffoscope/comparators/json.pyc
+${PYSITELIB}/diffoscope/comparators/json.pyo
+${PYSITELIB}/diffoscope/comparators/kbx.py
+${PYSITELIB}/diffoscope/comparators/kbx.pyc
+${PYSITELIB}/diffoscope/comparators/kbx.pyo
${PYSITELIB}/diffoscope/comparators/llvm.py
+${PYSITELIB}/diffoscope/comparators/llvm.pyc
+${PYSITELIB}/diffoscope/comparators/llvm.pyo
${PYSITELIB}/diffoscope/comparators/lz4.py
+${PYSITELIB}/diffoscope/comparators/lz4.pyc
+${PYSITELIB}/diffoscope/comparators/lz4.pyo
${PYSITELIB}/diffoscope/comparators/macho.py
+${PYSITELIB}/diffoscope/comparators/macho.pyc
+${PYSITELIB}/diffoscope/comparators/macho.pyo
${PYSITELIB}/diffoscope/comparators/missing_file.py
+${PYSITELIB}/diffoscope/comparators/missing_file.pyc
+${PYSITELIB}/diffoscope/comparators/missing_file.pyo
${PYSITELIB}/diffoscope/comparators/mono.py
+${PYSITELIB}/diffoscope/comparators/mono.pyc
+${PYSITELIB}/diffoscope/comparators/mono.pyo
${PYSITELIB}/diffoscope/comparators/ocaml.py
+${PYSITELIB}/diffoscope/comparators/ocaml.pyc
+${PYSITELIB}/diffoscope/comparators/ocaml.pyo
${PYSITELIB}/diffoscope/comparators/odt.py
+${PYSITELIB}/diffoscope/comparators/odt.pyc
+${PYSITELIB}/diffoscope/comparators/odt.pyo
${PYSITELIB}/diffoscope/comparators/ogg.py
+${PYSITELIB}/diffoscope/comparators/ogg.pyc
+${PYSITELIB}/diffoscope/comparators/ogg.pyo
${PYSITELIB}/diffoscope/comparators/openssh.py
+${PYSITELIB}/diffoscope/comparators/openssh.pyc
+${PYSITELIB}/diffoscope/comparators/openssh.pyo
${PYSITELIB}/diffoscope/comparators/pcap.py
+${PYSITELIB}/diffoscope/comparators/pcap.pyc
+${PYSITELIB}/diffoscope/comparators/pcap.pyo
${PYSITELIB}/diffoscope/comparators/pdf.py
+${PYSITELIB}/diffoscope/comparators/pdf.pyc
+${PYSITELIB}/diffoscope/comparators/pdf.pyo
${PYSITELIB}/diffoscope/comparators/pgp.py
+${PYSITELIB}/diffoscope/comparators/pgp.pyc
+${PYSITELIB}/diffoscope/comparators/pgp.pyo
${PYSITELIB}/diffoscope/comparators/png.py
+${PYSITELIB}/diffoscope/comparators/png.pyc
+${PYSITELIB}/diffoscope/comparators/png.pyo
${PYSITELIB}/diffoscope/comparators/ppu.py
+${PYSITELIB}/diffoscope/comparators/ppu.pyc
+${PYSITELIB}/diffoscope/comparators/ppu.pyo
${PYSITELIB}/diffoscope/comparators/ps.py
+${PYSITELIB}/diffoscope/comparators/ps.pyc
+${PYSITELIB}/diffoscope/comparators/ps.pyo
${PYSITELIB}/diffoscope/comparators/rdata.py
+${PYSITELIB}/diffoscope/comparators/rdata.pyc
+${PYSITELIB}/diffoscope/comparators/rdata.pyo
${PYSITELIB}/diffoscope/comparators/rpm.py
+${PYSITELIB}/diffoscope/comparators/rpm.pyc
+${PYSITELIB}/diffoscope/comparators/rpm.pyo
${PYSITELIB}/diffoscope/comparators/rpm_fallback.py
+${PYSITELIB}/diffoscope/comparators/rpm_fallback.pyc
+${PYSITELIB}/diffoscope/comparators/rpm_fallback.pyo
${PYSITELIB}/diffoscope/comparators/rust.py
+${PYSITELIB}/diffoscope/comparators/rust.pyc
+${PYSITELIB}/diffoscope/comparators/rust.pyo
${PYSITELIB}/diffoscope/comparators/sqlite.py
+${PYSITELIB}/diffoscope/comparators/sqlite.pyc
+${PYSITELIB}/diffoscope/comparators/sqlite.pyo
${PYSITELIB}/diffoscope/comparators/squashfs.py
+${PYSITELIB}/diffoscope/comparators/squashfs.pyc
+${PYSITELIB}/diffoscope/comparators/squashfs.pyo
${PYSITELIB}/diffoscope/comparators/symlink.py
+${PYSITELIB}/diffoscope/comparators/symlink.pyc
+${PYSITELIB}/diffoscope/comparators/symlink.pyo
${PYSITELIB}/diffoscope/comparators/tar.py
+${PYSITELIB}/diffoscope/comparators/tar.pyc
+${PYSITELIB}/diffoscope/comparators/tar.pyo
${PYSITELIB}/diffoscope/comparators/text.py
+${PYSITELIB}/diffoscope/comparators/text.pyc
+${PYSITELIB}/diffoscope/comparators/text.pyo
${PYSITELIB}/diffoscope/comparators/utils/__init__.py
-${PYSITELIB}/diffoscope/comparators/utils/__init__.pyo
${PYSITELIB}/diffoscope/comparators/utils/__init__.pyc
-${PYSITELIB}/diffoscope/comparators/utils/archive.pyo
-${PYSITELIB}/diffoscope/comparators/utils/archive.pyc
-${PYSITELIB}/diffoscope/comparators/utils/command.pyo
-${PYSITELIB}/diffoscope/comparators/utils/command.pyc
-${PYSITELIB}/diffoscope/comparators/utils/compare.pyo
-${PYSITELIB}/diffoscope/comparators/utils/compare.pyc
-${PYSITELIB}/diffoscope/comparators/utils/container.pyo
-${PYSITELIB}/diffoscope/comparators/utils/container.pyc
-${PYSITELIB}/diffoscope/comparators/utils/file.pyo
-${PYSITELIB}/diffoscope/comparators/utils/file.pyc
-${PYSITELIB}/diffoscope/comparators/utils/fuzzy.pyo
-${PYSITELIB}/diffoscope/comparators/utils/fuzzy.pyc
-${PYSITELIB}/diffoscope/comparators/utils/libarchive.pyo
-${PYSITELIB}/diffoscope/comparators/utils/libarchive.pyc
-${PYSITELIB}/diffoscope/comparators/utils/specialize.pyo
-${PYSITELIB}/diffoscope/comparators/utils/specialize.pyc
+${PYSITELIB}/diffoscope/comparators/utils/__init__.pyo
${PYSITELIB}/diffoscope/comparators/utils/archive.py
+${PYSITELIB}/diffoscope/comparators/utils/archive.pyc
+${PYSITELIB}/diffoscope/comparators/utils/archive.pyo
${PYSITELIB}/diffoscope/comparators/utils/command.py
+${PYSITELIB}/diffoscope/comparators/utils/command.pyc
+${PYSITELIB}/diffoscope/comparators/utils/command.pyo
${PYSITELIB}/diffoscope/comparators/utils/compare.py
+${PYSITELIB}/diffoscope/comparators/utils/compare.pyc
+${PYSITELIB}/diffoscope/comparators/utils/compare.pyo
${PYSITELIB}/diffoscope/comparators/utils/container.py
+${PYSITELIB}/diffoscope/comparators/utils/container.pyc
+${PYSITELIB}/diffoscope/comparators/utils/container.pyo
${PYSITELIB}/diffoscope/comparators/utils/file.py
+${PYSITELIB}/diffoscope/comparators/utils/file.pyc
+${PYSITELIB}/diffoscope/comparators/utils/file.pyo
${PYSITELIB}/diffoscope/comparators/utils/fuzzy.py
+${PYSITELIB}/diffoscope/comparators/utils/fuzzy.pyc
+${PYSITELIB}/diffoscope/comparators/utils/fuzzy.pyo
${PYSITELIB}/diffoscope/comparators/utils/libarchive.py
+${PYSITELIB}/diffoscope/comparators/utils/libarchive.pyc
+${PYSITELIB}/diffoscope/comparators/utils/libarchive.pyo
${PYSITELIB}/diffoscope/comparators/utils/specialize.py
+${PYSITELIB}/diffoscope/comparators/utils/specialize.pyc
+${PYSITELIB}/diffoscope/comparators/utils/specialize.pyo
${PYSITELIB}/diffoscope/comparators/wasm.py
+${PYSITELIB}/diffoscope/comparators/wasm.pyc
+${PYSITELIB}/diffoscope/comparators/wasm.pyo
${PYSITELIB}/diffoscope/comparators/xml.py
+${PYSITELIB}/diffoscope/comparators/xml.pyc
+${PYSITELIB}/diffoscope/comparators/xml.pyo
${PYSITELIB}/diffoscope/comparators/xsb.py
+${PYSITELIB}/diffoscope/comparators/xsb.pyc
+${PYSITELIB}/diffoscope/comparators/xsb.pyo
${PYSITELIB}/diffoscope/comparators/xz.py
+${PYSITELIB}/diffoscope/comparators/xz.pyc
+${PYSITELIB}/diffoscope/comparators/xz.pyo
${PYSITELIB}/diffoscope/comparators/zip.py
+${PYSITELIB}/diffoscope/comparators/zip.pyc
+${PYSITELIB}/diffoscope/comparators/zip.pyo
+${PYSITELIB}/diffoscope/comparators/zst.py
+${PYSITELIB}/diffoscope/comparators/zst.pyc
+${PYSITELIB}/diffoscope/comparators/zst.pyo
${PYSITELIB}/diffoscope/config.py
+${PYSITELIB}/diffoscope/config.pyc
+${PYSITELIB}/diffoscope/config.pyo
${PYSITELIB}/diffoscope/diff.py
+${PYSITELIB}/diffoscope/diff.pyc
+${PYSITELIB}/diffoscope/diff.pyo
${PYSITELIB}/diffoscope/difference.py
+${PYSITELIB}/diffoscope/difference.pyc
+${PYSITELIB}/diffoscope/difference.pyo
${PYSITELIB}/diffoscope/exc.py
+${PYSITELIB}/diffoscope/exc.pyc
+${PYSITELIB}/diffoscope/exc.pyo
${PYSITELIB}/diffoscope/excludes.py
+${PYSITELIB}/diffoscope/excludes.pyc
+${PYSITELIB}/diffoscope/excludes.pyo
${PYSITELIB}/diffoscope/external_tools.py
+${PYSITELIB}/diffoscope/external_tools.pyc
+${PYSITELIB}/diffoscope/external_tools.pyo
${PYSITELIB}/diffoscope/feeders.py
+${PYSITELIB}/diffoscope/feeders.pyc
+${PYSITELIB}/diffoscope/feeders.pyo
${PYSITELIB}/diffoscope/locale.py
+${PYSITELIB}/diffoscope/locale.pyc
+${PYSITELIB}/diffoscope/locale.pyo
${PYSITELIB}/diffoscope/logging.py
+${PYSITELIB}/diffoscope/logging.pyc
+${PYSITELIB}/diffoscope/logging.pyo
${PYSITELIB}/diffoscope/main.py
+${PYSITELIB}/diffoscope/main.pyc
+${PYSITELIB}/diffoscope/main.pyo
${PYSITELIB}/diffoscope/path.py
+${PYSITELIB}/diffoscope/path.pyc
+${PYSITELIB}/diffoscope/path.pyo
${PYSITELIB}/diffoscope/presenters/__init__.py
-${PYSITELIB}/diffoscope/presenters/__init__.pyo
${PYSITELIB}/diffoscope/presenters/__init__.pyc
-${PYSITELIB}/diffoscope/presenters/formats.pyo
-${PYSITELIB}/diffoscope/presenters/formats.pyc
-${PYSITELIB}/diffoscope/presenters/icon.pyo
-${PYSITELIB}/diffoscope/presenters/icon.pyc
-${PYSITELIB}/diffoscope/presenters/json.pyo
-${PYSITELIB}/diffoscope/presenters/json.pyc
-${PYSITELIB}/diffoscope/presenters/markdown.pyo
-${PYSITELIB}/diffoscope/presenters/markdown.pyc
-${PYSITELIB}/diffoscope/presenters/restructuredtext.pyo
-${PYSITELIB}/diffoscope/presenters/restructuredtext.pyc
-${PYSITELIB}/diffoscope/presenters/text.pyo
-${PYSITELIB}/diffoscope/presenters/text.pyc
-${PYSITELIB}/diffoscope/presenters/utils.pyo
-${PYSITELIB}/diffoscope/presenters/utils.pyc
+${PYSITELIB}/diffoscope/presenters/__init__.pyo
${PYSITELIB}/diffoscope/presenters/formats.py
+${PYSITELIB}/diffoscope/presenters/formats.pyc
+${PYSITELIB}/diffoscope/presenters/formats.pyo
${PYSITELIB}/diffoscope/presenters/html/__init__.py
-${PYSITELIB}/diffoscope/presenters/html/__init__.pyo
${PYSITELIB}/diffoscope/presenters/html/__init__.pyc
-${PYSITELIB}/diffoscope/presenters/html/html.pyo
-${PYSITELIB}/diffoscope/presenters/html/html.pyc
-${PYSITELIB}/diffoscope/presenters/html/templates.pyo
-${PYSITELIB}/diffoscope/presenters/html/templates.pyc
+${PYSITELIB}/diffoscope/presenters/html/__init__.pyo
${PYSITELIB}/diffoscope/presenters/html/html.py
+${PYSITELIB}/diffoscope/presenters/html/html.pyc
+${PYSITELIB}/diffoscope/presenters/html/html.pyo
${PYSITELIB}/diffoscope/presenters/html/templates.py
+${PYSITELIB}/diffoscope/presenters/html/templates.pyc
+${PYSITELIB}/diffoscope/presenters/html/templates.pyo
${PYSITELIB}/diffoscope/presenters/icon.py
+${PYSITELIB}/diffoscope/presenters/icon.pyc
+${PYSITELIB}/diffoscope/presenters/icon.pyo
${PYSITELIB}/diffoscope/presenters/json.py
+${PYSITELIB}/diffoscope/presenters/json.pyc
+${PYSITELIB}/diffoscope/presenters/json.pyo
${PYSITELIB}/diffoscope/presenters/markdown.py
+${PYSITELIB}/diffoscope/presenters/markdown.pyc
+${PYSITELIB}/diffoscope/presenters/markdown.pyo
${PYSITELIB}/diffoscope/presenters/restructuredtext.py
+${PYSITELIB}/diffoscope/presenters/restructuredtext.pyc
+${PYSITELIB}/diffoscope/presenters/restructuredtext.pyo
${PYSITELIB}/diffoscope/presenters/text.py
+${PYSITELIB}/diffoscope/presenters/text.pyc
+${PYSITELIB}/diffoscope/presenters/text.pyo
${PYSITELIB}/diffoscope/presenters/utils.py
+${PYSITELIB}/diffoscope/presenters/utils.pyc
+${PYSITELIB}/diffoscope/presenters/utils.pyo
${PYSITELIB}/diffoscope/profiling.py
+${PYSITELIB}/diffoscope/profiling.pyc
+${PYSITELIB}/diffoscope/profiling.pyo
${PYSITELIB}/diffoscope/progress.py
+${PYSITELIB}/diffoscope/progress.pyc
+${PYSITELIB}/diffoscope/progress.pyo
${PYSITELIB}/diffoscope/readers/__init__.py
-${PYSITELIB}/diffoscope/readers/__init__.pyo
${PYSITELIB}/diffoscope/readers/__init__.pyc
-${PYSITELIB}/diffoscope/readers/json.pyo
-${PYSITELIB}/diffoscope/readers/json.pyc
-${PYSITELIB}/diffoscope/readers/utils.pyo
-${PYSITELIB}/diffoscope/readers/utils.pyc
+${PYSITELIB}/diffoscope/readers/__init__.pyo
${PYSITELIB}/diffoscope/readers/json.py
+${PYSITELIB}/diffoscope/readers/json.pyc
+${PYSITELIB}/diffoscope/readers/json.pyo
${PYSITELIB}/diffoscope/readers/utils.py
+${PYSITELIB}/diffoscope/readers/utils.pyc
+${PYSITELIB}/diffoscope/readers/utils.pyo
${PYSITELIB}/diffoscope/tempfiles.py
+${PYSITELIB}/diffoscope/tempfiles.pyc
+${PYSITELIB}/diffoscope/tempfiles.pyo
${PYSITELIB}/diffoscope/tools.py
+${PYSITELIB}/diffoscope/tools.pyc
+${PYSITELIB}/diffoscope/tools.pyo
+${PYSITELIB}/diffoscope/utils.py
+${PYSITELIB}/diffoscope/utils.pyc
+${PYSITELIB}/diffoscope/utils.pyo
diff --git a/sysutils/py-diffoscope/distinfo b/sysutils/py-diffoscope/distinfo
index 41f75dacedd..cc18f209cc7 100644
--- a/sysutils/py-diffoscope/distinfo
+++ b/sysutils/py-diffoscope/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2019/02/09 14:13:25 khorben Exp $
+$NetBSD: distinfo,v 1.8 2019/12/31 00:32:01 ng0 Exp $
-SHA1 (diffoscope-110.tar.gz) = 1fa63304933f030327b7ae27bb9469a476fa7661
-RMD160 (diffoscope-110.tar.gz) = 6c650bd38a449f07f38bf8172cd30319590893e5
-SHA512 (diffoscope-110.tar.gz) = 1d309022734ca36329d0293cb3dd2887fac811f4669477ff22fee443a8042d0b69d9272babcb9c5eaa084c5b39ebf481cd6bf0f171051d3323fe8745550c91b7
-Size (diffoscope-110.tar.gz) = 9991513 bytes
+SHA1 (diffoscope-134.tar.gz) = 492bd630a06f35b9ac404a3f69b62f00217e081f
+RMD160 (diffoscope-134.tar.gz) = 7f1aba96b4960318a119ac2c7a83f6673f0e754a
+SHA512 (diffoscope-134.tar.gz) = 87026c2211cf1b9a91cc254f8894461a3f16740bae2359ca49259320f5d59720d95ab5db4de8e6b9839f04655d20079f1e85e213be5745bfadf27b5cef470b45
+Size (diffoscope-134.tar.gz) = 1710240 bytes