SHA256
1
0
forked from pool/diffoscope

- update to version 194:

- Don't traceback when comparing nested directories with non-directories.
   (Closes: reproducible-builds/diffoscope#288)
- update to version 193:
 - Don't duplicate file lists at each directory level.
   (Closes: #989192, reproducible-builds/diffoscope#263)
 - When pretty-printing JSON, mark the difference as such, additionally
   avoiding including the full path.
   (Closes: reproducible-builds/diffoscope#205)
 - Codebase improvements:
   - Update a bunch of %-style string interpolations into f-strings or
     str.format.
   - Import itertools top-level directly.
   - Drop some unused imports.
   - Use isinstance(...) over type(...) ==
   - Avoid aliasing variables if we aren't going to use them.
 - Fix missing diff output on large diffs.
 - Ignore a Python warning coming from a dependent library (triggered by
   supporting Python 3.10)
 - Document that support both Python 3.9 and 3.10.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/diffoscope?expand=0&rev=42
This commit is contained in:
Sebastian Wagner 2021-11-28 07:32:57 +00:00 committed by Git OBS Bridge
parent 58a6fc84d6
commit 0765c1f8b8
6 changed files with 44 additions and 20 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cb8619ce92ecfef7e164b616dafd4662af1c605abd925c238d6405139ad36e0d
size 2688422

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEwv5L0nHBObhsUz5GHpU+J9QxHlgFAmGXywsACgkQHpU+J9Qx
HlhmOA/+KTd4hDPwha12q7Dp5guU75s407cBZjZmhjIEV8g6ybYJtm31BVGsY78n
ZfF1Iob4TyBv8vxRaQr63VYkHHRwce7SWR4KWi+Z6ErH3OZJX2wTk0v6Ejh11RyQ
L2Z7sWFhbPPKMzivNyIUXqoOd4+3fmYNyO/6Bu4079YedgSJgdgeUdDjSkefl5TY
oVQQJnlCfUkOwUli6GIPkKEmv5NqdjzKeSirFiP1V2j/KdtLI16dsFH0KowB+5U6
89sXde8m36kbEUHxd1HgHXH1SLWY4CQoSo9FHcJBerpHD2YHoI+ngIuoDRXwGkKn
9QVd8nEMoc3Kl5lrtPojcod2K4u/SQXYvTcDO2ADRTvkLEfVtiWJyGxK00LaqSaH
h6UUUrb+W9gwUX/kX93mKxBuypuUSHHc7Fk49cFYUOcErTCduPaAe1PgS5uMafQB
VIQWxTtZlTzNYpyEJfNteLRK1nuGiIqil/5GODwyntzmyrepD/SnGa0o8eHp0mRv
sQxiGIhzLP+dCk4m/NMCksGim2QRAfgyKTaxVXSHtQlqWZ9aeD0xDIyGTIQPW2+F
fiyMEokfTCs9g6E6w/bz3JBYGn306HEu9n0cb1RdecQtKebI5ezUZ3QGn/Wtxtak
06/C6JpCPEJ5Y/MCV+NsXwzYAkJfexCJRjH5lRh8sHC8dsaYRNM=
=HLI/
-----END PGP SIGNATURE-----

3
diffoscope-194.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f4953cb2b727ed431d30f01d425a43cebfc87dee63a062534ea24837520918b9
size 2688009

View File

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEwv5L0nHBObhsUz5GHpU+J9QxHlgFAmGhIO0ACgkQHpU+J9Qx
HlgVyxAAiKPmxwYp9kGRS4UfQ2TWXMCRvz8wmAgCl1gK2q6St1PR5zMYmgWSQzXH
0hP4+c+G8EPhtMVTrBRwqXHKQfunI1ZjggBd0SishB9xA0pyWFRgHxicDbqSFQ9F
Z/1VHfsQlg9HpYRfvD+k9TVXWxstMHZFPvNPJt89NoZAo76lEYwoWSfODrcDDMBt
FTHp9+6/oi6krgpnY7J1V7ffW2V4zzN3ldARHAGo6vTA6ej0pKRtk1pDPxnlxAMf
G3cRsN/Ya7RpD3GaRddjdnltTiZ6Y9NVgbaSF0LFCLNkuAd+N3mgd5OgpBRe3rPt
zXLdD0uKhESRymy+BxjuXNBM9rdKgtHN/2U6x/188lZArFzbrJiFub3XC3ysTEE9
NFLMLjNYB/q5IuI2Pjh0wLJvvLF2o6J6wfaFNmVFYydkJX3FhAzT2oEEZIfqtOtl
IoAk8EjVlzSGcrrTxtt3fmN4M8Xy77EoK7YEA6zrg6W62fQz3hE9Ity+3PhWN5XC
prFg+MPYUi8Chb/snX9luJ8foSD6GuzRwZhMhrh8+0DaeQcEd5dmUTuc9yWMT2+I
c4rSxsPcgZyGy5L/1QvE/LZ6/RqzCzfxilZzBydyQXBjUL/rasubOconDn9YF8bF
LSOL6t8hq9RBqQIk/2O/7hyz6O4jp3cR82C8kWhIw6DVqrF9FX8=
=i5gR
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,27 @@
-------------------------------------------------------------------
Sun Nov 28 07:31:54 UTC 2021 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to version 194:
- Don't traceback when comparing nested directories with non-directories.
(Closes: reproducible-builds/diffoscope#288)
- update to version 193:
- Don't duplicate file lists at each directory level.
(Closes: #989192, reproducible-builds/diffoscope#263)
- When pretty-printing JSON, mark the difference as such, additionally
avoiding including the full path.
(Closes: reproducible-builds/diffoscope#205)
- Codebase improvements:
- Update a bunch of %-style string interpolations into f-strings or
str.format.
- Import itertools top-level directly.
- Drop some unused imports.
- Use isinstance(...) over type(...) ==
- Avoid aliasing variables if we aren't going to use them.
- Fix missing diff output on large diffs.
- Ignore a Python warning coming from a dependent library (triggered by
supporting Python 3.10)
- Document that support both Python 3.9 and 3.10.
-------------------------------------------------------------------
Sat Nov 20 13:01:25 UTC 2021 - Sebastian Wagner <sebix+novell.com@sebix.at>

View File

@ -17,7 +17,7 @@
Name: diffoscope
Version: 193
Version: 194
Release: 0
Summary: In-depth comparison of files, archives, and directories
License: GPL-3.0-or-later