[Git][reproducible-builds/diffoscope][master] 3 commits: Update copyright years.

Chris Lamb (@lamby) gitlab at salsa.debian.org
Fri Apr 5 11:24:18 UTC 2024



Chris Lamb pushed to branch master at Reproducible Builds / diffoscope


Commits:
58c5cae6 by Chris Lamb at 2024-04-05T12:19:04+01:00
Update copyright years.

- - - - -
d2544027 by Chris Lamb at 2024-04-05T12:19:04+01:00
Update debian/tests/control.

- - - - -
cf16571e by Chris Lamb at 2024-04-05T12:21:15+01:00
releasing package diffoscope version 263

- - - - -


5 changed files:

- debian/changelog
- debian/tests/control
- diffoscope/__init__.py
- tests/comparators/test_epub.py
- tests/utils/tools.py


Changes:

=====================================
debian/changelog
=====================================
@@ -1,8 +1,19 @@
-diffoscope (263) UNRELEASED; urgency=medium
+diffoscope (263) unstable; urgency=medium
 
-  * WIP (generated upon release).
+  [ Chris Lamb ]
+  * Add support for the zipdetails(1) tool included in the Perl distribution.
+    Thanks to Larry Doolittle et al. for the pointer to this tool.
+  * Don't use parenthesis within test "skipping…" messages; PyTest adds its own
+    parenthesis, so we were ending up with double nested parens.
+  * Fix the .epub tests after supporting zipdetails(1).
+  * Update copyright years and debian/tests/control.
+
+  [ FC (Fay) Stegerman ]
+  * Fix MozillaZipContainer's monkeypatch after Python's zipfile module changed
+    to detect potentially insecure overlapping entries within .zip files.
+    (Closes: reproducible-builds/diffoscope#362)
 
- -- Chris Lamb <lamby at debian.org>  Fri, 29 Mar 2024 09:44:15 +0000
+ -- Chris Lamb <lamby at debian.org>  Fri, 05 Apr 2024 12:21:10 +0100
 
 diffoscope (262) unstable; urgency=medium
 


=====================================
debian/tests/control
=====================================
@@ -7,7 +7,7 @@
 #   $ mv debian/tests/control.tmp debian/tests/control
 
 Tests: pytest-with-recommends
-Depends: python3-all, diffoscope, black, python3-pytest, python3-h5py, file, linux-image-amd64 [amd64] | linux-image-generic [amd64], 7zip, aapt [amd64 arm64 armel armhf i386 mips64el mipsel], abootimg, acl, apksigcopier, apksigner, apktool [!ppc64el !s390x], binutils-multiarch, bzip2, caca-utils, colord, coreboot-utils, db-util, default-jdk-headless | default-jdk | java-sdk, device-tree-compiler, dexdump [amd64 arm64 armhf i386], docx2txt, e2fsprogs, enjarify, ffmpeg, fontforge-extras, fonttools, fp-utils [!ppc64el !s390x], genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg-utils, gpg, hdf5-tools, html2text, imagemagick, jsbeautifier, libarchive-tools, libxmlb-utils, llvm, lz4 | liblz4-tool, lzip, mono-utils, ocaml-nox, odt2txt, oggvideotools [!s390x], openssh-client, openssl, pgpdump, poppler-utils, procyon-decompiler, python3-pdfminer, r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, u-boot-tools, unzip, wabt, xmlbeans, xxd, xz-utils, zip, zstd, androguard, python3-argcomplete, python3-binwalk, python3-defusedxml, python3-distro, python3-guestfs, python3-jsondiff, python3-progressbar, python3-pypdf, python3-debian, python3-pyxattr, python3-rpm, python3-tlsh
+Depends: python3-all, diffoscope, black, python3-pytest, python3-h5py, file, linux-image-amd64 [amd64] | linux-image-generic [amd64], 7zip, aapt [amd64 arm64 armel armhf i386 mips64el mipsel], abootimg, acl, apksigcopier, apksigner, apktool [!ppc64el !s390x], binutils-multiarch, bzip2, caca-utils, colord, coreboot-utils, db-util, default-jdk-headless | default-jdk | java-sdk, device-tree-compiler, dexdump [amd64 arm64 armhf i386], docx2txt, e2fsprogs, enjarify, ffmpeg, fontforge-extras, fonttools, fp-utils [!ppc64el !s390x], genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg-utils, gpg, hdf5-tools, html2text, imagemagick, jsbeautifier, libarchive-tools, libxmlb-utils, llvm, lz4 | liblz4-tool, lzip, mono-utils, ocaml-nox, odt2txt, oggvideotools [!s390x], openssh-client, openssl, perl, pgpdump, poppler-utils, procyon-decompiler, python3-pdfminer, r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, u-boot-tools, unzip, wabt, xmlbeans, xxd, xz-utils, zip, zstd, androguard, python3-argcomplete, python3-binwalk, python3-defusedxml, python3-distro, python3-guestfs, python3-jsondiff, python3-progressbar, python3-pypdf, python3-debian, python3-pyxattr, python3-rpm, python3-tlsh
 
 Tests: pytest
 Depends: python3-all, diffoscope, python3-pytest, python3-h5py, file, python3-tlsh


=====================================
diffoscope/__init__.py
=====================================
@@ -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 = "262"
+VERSION = "263"


=====================================
tests/comparators/test_epub.py
=====================================
@@ -2,7 +2,7 @@
 # diffoscope: in-depth comparison of files, archives, and directories
 #
 # Copyright © 2015 Jérémy Bobbio <lunar at debian.org>
-# Copyright © 2016-2017, 2020-2023 Chris Lamb <lamby at debian.org>
+# Copyright © 2016-2017, 2020-2024 Chris Lamb <lamby at debian.org>
 #
 # diffoscope is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by


=====================================
tests/utils/tools.py
=====================================
@@ -3,7 +3,7 @@
 #
 # Copyright © 2015      Jérémy Bobbio <lunar at debian.org>
 # Copyright © 2016-2017 Mattia Rizzolo <mattia at debian.org>
-# Copyright © 2017-2023 Chris Lamb <lamby at debian.org>
+# Copyright © 2017-2024 Chris Lamb <lamby at debian.org>
 #
 # diffoscope is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by



View it on GitLab: https://salsa.debian.org/reproducible-builds/diffoscope/-/compare/cc3b077f6ef97b4e20036e9823926fe633c7d4d0...cf16571e92d32f60353684a7f8990db2267aeff3

-- 
View it on GitLab: https://salsa.debian.org/reproducible-builds/diffoscope/-/compare/cc3b077f6ef97b4e20036e9823926fe633c7d4d0...cf16571e92d32f60353684a7f8990db2267aeff3
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.reproducible-builds.org/pipermail/rb-commits/attachments/20240405/4a18b0f6/attachment.htm>


More information about the rb-commits mailing list