Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Reproducible Builds
diffoscope
Compare revisions
5ed866e60555e28d4d7fa51fab132be592e9d1e1...558b771bd05061225d5a04e9207db545812dc49f
Commits (2)
Also update tests for .epub files (re.
5ed866e6
).
· b71816e1
Chris Lamb
authored
Apr 15, 2020
Gbp-Dch: ignore
b71816e1
releasing package diffoscope version 141
· 558b771b
Chris Lamb
authored
Apr 15, 2020
558b771b
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
558b771b
diffoscope (141)
UNRELEASED
; urgency=medium
diffoscope (141)
unstable
; urgency=medium
* WIP (generated upon release).
[ Chris Lamb ]
* Dalvik .dex files can also serve as APK containers. Restrict the narrower
identification of .dex files to files ending with this extension, and widen
the identification of APK files to when file(1) discovers a Dalvik file.
(Closes: #884095, reproducible-builds/diffoscope#28)
* Explicitly list python3-h5py in debian/tests/control.in to ensure that we
have this module installed during an autopkgtest run to generate the test
fixture
&
regenerate debian/tests/control from debian/tests/control.in
to match.
* Drop unnecessary and unused assignment to "diff" variable.
* Strip paths from the output of zipinfo(1) warnings.
(re. reproducible-builds/diffoscope#97)
[ Michael Osipov ]
* Revert to using zipinfo(1) directly instead of piping input via /dev/stdin
for BSD portability. (Closes: reproducible-builds/diffoscope#97)
[ Jelle van der Waa ]
* Add an external tool for h5dump on Arch.
-- Chris Lamb
<lamby
@
debian.org
>
Sat
, 1
1
Apr 2020 19:1
2:20
+0100
-- Chris Lamb
<lamby
@
debian.org
>
Wed
, 1
5
Apr 2020 19:1
5:42
+0100
diffoscope (140) unstable; urgency=medium
...
...
diffoscope/__init__.py
View file @
558b771b
...
...
@@ -17,4 +17,4 @@
# You should have received a copy of the GNU General Public License
# along with diffoscope. If not, see <https://www.gnu.org/licenses/>.
VERSION
=
"14
0
"
VERSION
=
"14
1
"
tests/comparators/test_epub.py
View file @
558b771b
...
...
@@ -47,8 +47,8 @@ def differences(epub1, epub2):
@skip_unless_tools_exist
(
'zipinfo'
)
def
test_differences
(
differences
):
assert
differences
[
0
].
source1
==
'zipinfo
/dev/stdin
'
assert
differences
[
0
].
source2
==
'zipinfo
/dev/stdin
'
assert
differences
[
0
].
source1
==
'zipinfo
{}
'
assert
differences
[
0
].
source2
==
'zipinfo
{}
'
assert
differences
[
1
].
source1
==
'content.opf'
assert
differences
[
1
].
source2
==
'content.opf'
assert
differences
[
2
].
source1
==
'toc.ncx'
...
...