Your message dated Tue, 25 Oct 2022 11:19:24 +0000
with message-id <e1onhxs-008p7x...@fasolo.debian.org>
and subject line Bug#1021732: fixed in mat2 0.13.0-2
has caused the Debian Bug report #1021732,
regarding libimage-exiftool-perl breaks mat2 autopkgtest: 'ColorProfiles' not 
found in ...
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1021732: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1021732
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libimage-exiftool-perl, mat2
Control: found -1 libimage-exiftool-perl/12.47+dfsg-1
Control: found -1 mat2/0.13.0-1
Severity: serious
Tags: sid bookworm
User: debian...@lists.debian.org
Usertags: breaks needs-update

Dear maintainer(s),

With a recent upload of libimage-exiftool-perl the autopkgtest of mat2 fails in testing when that autopkgtest is run with the binary packages of libimage-exiftool-perl from unstable. It passes when run with only packages from testing. In tabular form:

                       pass            fail
libimage-exiftool-perl from testing    12.47+dfsg-1
mat2                   from testing    0.13.0-1
all others             from testing    from testing

I copied some of the output at the bottom of this report.

Currently this regression is blocking the migration of libimage-exiftool-perl to testing [1]. Due to the nature of this issue, I filed this bug report against both packages. Can you please investigate the situation and reassign the bug to the right package?

More information about this bug and the reason for filing it can be found on
https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation

Paul

[1] https://qa.debian.org/excuses.php?package=libimage-exiftool-perl

https://ci.debian.net/data/autopkgtest/testing/amd64/m/mat2/27021864/log.gz

_______________________ TestCleaning.test_all_parametred _______________________

self = <tests.test_libmat2.TestCleaning testMethod=test_all_parametred>

    def test_all_parametred(self):
        for case in self.data:
            with self.subTest(case=case):
                if 'ffmpeg' in case:
                    try:
                        video._get_ffmpeg_path()
                    except RuntimeError:
                        raise unittest.SkipTest
                    print('[+] Testing %s' % case['name'])
                target = './tests/data/clean.' + case['name']
                shutil.copy('./tests/data/dirty.' + case['name'], target)
                p1 = case['parser'](target)
                    for k, v in p1.get_meta().items():
                    if k not in case['meta']:
                        continue
                    if isinstance(v, dict):
                        for _k, _v in v.items():
                            if _k in case['meta'][k]:
                                self.assertEqual(_v, case['meta'][k][_k])
                    else:
                        self.assertEqual(v, case['meta'][k])
                    p1.lightweight_cleaning = True
                self.assertTrue(p1.remove_all())
                    p2 = case['parser'](p1.output_filename)
                meta = p2.get_meta()
                if meta:
                    for k, v in p2.get_meta().items():
                      self.assertIn(k, case['expected_meta'], '"%s" is not in 
"%s" (%s)' % (k, case['expected_meta'], case['name']))
E AssertionError: 'ColorProfiles' not found in {'AverageBitrate': 465641, 'BufferSize': 0, 'CompatibleBrands': ['isom', 'iso2', 'avc1', 'mp41'], 'ColorRepresentation': 'nclx 1 1 1', 'CompressorID': 'avc1', 'GraphicsMode': 'srcCopy', 'HandlerDescription': 'SoundHandler', 'HandlerType': 'Metadata', 'HandlerVendorID': 'Apple', 'MajorBrand': 'Base Media v1 [IS0 14496-12:2003]', 'MaxBitrate': 465641, 'MediaDataOffset': 48, 'MediaDataSize': 379872, 'MediaHeaderVersion': 0, 'MinorVersion': '0.2.0', 'MovieDataOffset': 48, 'MovieHeaderVersion': 0, 'NextTrackID': 3, 'PreferredRate': 1, 'Rotation': 0, 'TimeScale': 1000, 'TrackHeaderVersion': 0, 'TrackID': 1, 'TrackLayer': 0} : "ColorProfiles" is not in "{'AverageBitrate': 465641, 'BufferSize': 0, 'CompatibleBrands': ['isom', 'iso2', 'avc1', 'mp41'], 'ColorRepresentation': 'nclx 1 1 1', 'CompressorID': 'avc1', 'GraphicsMode': 'srcCopy', 'HandlerDescription': 'SoundHandler', 'HandlerType': 'Metadata', 'HandlerVendorID': 'Apple', 'MajorBrand': 'Base Media v1 [IS0 14496-12:2003]', 'MaxBitrate': 465641, 'MediaDataOffset': 48, 'MediaDataSize': 379872, 'MediaHeaderVersion': 0, 'MinorVersion': '0.2.0', 'MovieDataOffset': 48, 'MovieHeaderVersion': 0, 'NextTrackID': 3, 'PreferredRate': 1, 'Rotation': 0, 'TimeScale': 1000, 'TrackHeaderVersion': 0, 'TrackID': 1, 'TrackLayer': 0}" (mp4)

tests/test_libmat2.py:552: AssertionError
----------------------------- Captured stdout call -----------------------------
[+] Testing pdf
[+] Testing png
[+] Testing jpg
[+] Testing wav
[+] Testing aiff
[+] Testing mp3
[+] Testing ogg
[+] Testing flac
[+] Testing docx
[+] Testing odt
[+] Testing tiff
[+] Testing bmp
[+] Testing torrent
[+] Testing odf
[+] Testing odg
[+] Testing txt
[+] Testing gif
[+] Testing css
[+] Testing svg
[+] Testing ppm
[+] Testing avi
[+] Testing mp4
----------------------------- Captured stderr call -----------------------------
Warning: [minor] Can't delete IFD0 from TIFF - ./tests/data/clean.tiff
=============================== warnings summary ===============================
libmat2/pdf.py:11

/tmp/autopkgtest-lxc.x0nqr1ru/downtmp/build.wzb/src/libmat2/pdf.py:11: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
    from distutils.version import LooseVersion

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================ FAILED tests/test_libmat2.py::TestCleaning::test_all_parametred - AssertionEr... ================== 1 failed, 120 passed, 1 warning in 59.42s ===================
autopkgtest [05:27:32]: test command1

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: mat2
Source-Version: 0.13.0-2
Done: Clément Hermann <nod...@debian.org>

We believe that the bug you reported is fixed in the latest version of
mat2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1021...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Clément Hermann <nod...@debian.org> (supplier of updated mat2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 25 Oct 2022 10:57:30 +0200
Source: mat2
Architecture: source
Version: 0.13.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Privacy Tools Maintainers 
<pkg-privacy-maintain...@lists.alioth.debian.org>
Changed-By: Clément Hermann <nod...@debian.org>
Closes: 1021732
Changes:
 mat2 (0.13.0-2) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Georg Faerber ]
   * debian/control: Bump Standards-Version to 4.6.1, no changes required
 .
   [ Clément Hermann ]
   * Add upstream patch to fix failing autopkgtests (Closes: #1021732)
Checksums-Sha1: 
 255d4aac22735fe651ad97aed605f51978350159 2220 mat2_0.13.0-2.dsc
 3d058eb348ec127e50122ea4cd09c642c2d1dce2 10208 mat2_0.13.0-2.debian.tar.xz
Checksums-Sha256: 
 06d8109a0c10f0f7977f1f8e71d782f6298bf7c5321785096a595d5d3cfc435a 2220 
mat2_0.13.0-2.dsc
 a425259860f3d9c45a75e9a7f39f374d137a4c24813002e4945d3740555fa4be 10208 
mat2_0.13.0-2.debian.tar.xz
Files: 
 9016fc499db95cc09937d122e12fb141 2220 utils optional mat2_0.13.0-2.dsc
 1192450401f22efd108c76c9a719b3ae 10208 utils optional 
mat2_0.13.0-2.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEboF7OBIOe73fYj9R2KOaUw8NzMsFAmNXweEACgkQ2KOaUw8N
zMtaDA//cn3v9yG1N68wAJqFaHk39GiZUOU0fcdNXlhzSnjGWIUylsD379fE48HI
ZQtluN7HqamW1L0QTW6lRizc9ACIPDHapjPqF8qXME4YSPVAUPOt9uSz/02oCQ4V
r+AR88rLbAx0WsoPkFPedwLqSM8dMQpxslOQa3QUa4qSwyYhjuRTBNAYhJuhKTQK
YHHzquqZMgTTUvcc+CDgC97hufcWvxup/sOGwYbG8tuPeDTMnOHKvdsB0feg2/Qj
3FqNz2HS4kN6b1RizLxvyleaH1h/g2xtW6oWF83mbFBNmDaMy9tcGPxWah3tNFMT
ic2tedsnH6YnOpHofhQsMULejeC0kX3ZLIEmIhZMUSpvkUDMeujspwqWgtE2urgP
xNIbUeszNi0dRDUsz+tgVjn/4+6/YhP6b/bX2uJEJfTUrzmZY9gHUxxWpJa6Ak8L
Pr0qvLKWQT2645bb1pJs6/SmeSIP6MFuLCjnqxmMxYg4jLwlIl3C3tyW10ABjA2v
6kg1RHLVy0F4O3GKji3yzB9ELSlBGEzbz8iMVt8c3LGJB3VwqJjjbGijkMScCPkx
LpzCy3c8bpacu1f9OUdUG0yZGXlBllfvfS/jldIzVwOYD1j6OeZ4QIkfWhFOSHOk
wvuOXOPsjJuJi9YzUyY3T9XC+6RaQxBrt2gtH2uosZknqGH0ZFI=
=O2ln
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to