Your message dated Thu, 03 Oct 2024 22:34:31 +0000
with message-id <e1swup1-00dero...@fasolo.debian.org>
and subject line Bug#1052826: fixed in entrypoints 0.4-3
has caused the Debian Bug report #1052826,
regarding entrypoints: FTBFS: dh_auto_test: error: pybuild --test --test-pytest 
-i python{version} -p 3.11 returned exit code 13
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.)


-- 
1052826: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1052826
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: entrypoints
Version: 0.4-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20230925 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
>  debian/rules binary
> dh binary --with python3 --buildsystem=pybuild
>    dh_update_autotools_config -O--buildsystem=pybuild
>    dh_autoreconf -O--buildsystem=pybuild
>    dh_auto_configure -O--buildsystem=pybuild
>    dh_auto_build -O--buildsystem=pybuild
> I: pybuild plugin_pyproject:110: Building wheel for python3.11 with "build" 
> module
> I: pybuild base:291: python3.11 -m build --skip-dependency-check 
> --no-isolation --wheel --outdir 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_entrypoints 
> * Building wheel...
> Successfully built entrypoints-0.4-py3-none-any.whl
> I: pybuild plugin_pyproject:122: Unpacking wheel built for python3.11 with 
> "installer" module
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:291: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_entrypoints/build; python3.11 -m 
> pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.11.5, pytest-7.4.2, pluggy-1.3.0
> rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_entrypoints/build
> collected 12 items
> 
> tests/test_entrypoints.py FFF.........                                   
> [100%]
> 
> =================================== FAILURES 
> ===================================
> ___________________________ test_iter_files_distros 
> ____________________________
> 
>     def test_iter_files_distros():
>         result = entrypoints.iter_files_distros(path=sample_path)
>         # the sample_path has 4 unique items so iter_files_distros returns 4 
> tuples
> >       assert len(list(result)) == 4
> E       AssertionError: assert 3 == 4
> E        +  where 3 = len([(<entrypoints.CaseSensitiveConfigParser object at 
> 0x7feecd4d1b90>, Distribution('foo', '0.1')), 
> (<entrypoints.CaseSen...ibution('baz', '0.3')), 
> (<entrypoints.CaseSensitiveConfigParser object at 0x7feecd4d37d0>, 
> Distribution('qux', '0.4'))])
> E        +    where [(<entrypoints.CaseSensitiveConfigParser object at 
> 0x7feecd4d1b90>, Distribution('foo', '0.1')), 
> (<entrypoints.CaseSen...ibution('baz', '0.3')), 
> (<entrypoints.CaseSensitiveConfigParser object at 0x7feecd4d37d0>, 
> Distribution('qux', '0.4'))] = list(<generator object iter_files_distros at 
> 0x7feecd6aabc0>)
> 
> tests/test_entrypoints.py:23: AssertionError
> ______________________________ test_get_group_all 
> ______________________________
> 
>     def test_get_group_all():
>         group = entrypoints.get_group_all('entrypoints.test1', sample_path)
>         print(group)
> >       assert len(group) == 5
> E       AssertionError: assert 3 == 5
> E        +  where 3 = len([EntryPoint('abc', 'foo', 'abc', 
> Distribution('foo', '0.1')), EntryPoint('rew', 'baz', 'init', 
> Distribution('baz', '0.3')), EntryPoint('njn', 'qux.extn', 'Njn.load', 
> Distribution('qux', '0.4'))])
> 
> tests/test_entrypoints.py:40: AssertionError
> ----------------------------- Captured stdout call 
> -----------------------------
> [EntryPoint('abc', 'foo', 'abc', Distribution('foo', '0.1')), 
> EntryPoint('rew', 'baz', 'init', Distribution('baz', '0.3')), 
> EntryPoint('njn', 'qux.extn', 'Njn.load', Distribution('qux', '0.4'))]
> _____________________________ test_get_group_named 
> _____________________________
> 
>     def test_get_group_named():
>         group = entrypoints.get_group_named('entrypoints.test1', sample_path)
>         print(group)
> >       assert len(group) == 4
> E       AssertionError: assert 3 == 4
> E        +  where 3 = len({'abc': EntryPoint('abc', 'foo', 'abc', 
> Distribution('foo', '0.1')), 'njn': EntryPoint('njn', 'qux.extn', 'Njn.load', 
> Distribution('qux', '0.4')), 'rew': EntryPoint('rew', 'baz', 'init', 
> Distribution('baz', '0.3'))})
> 
> tests/test_entrypoints.py:46: AssertionError
> ----------------------------- Captured stdout call 
> -----------------------------
> {'abc': EntryPoint('abc', 'foo', 'abc', Distribution('foo', '0.1')), 'rew': 
> EntryPoint('rew', 'baz', 'init', Distribution('baz', '0.3')), 'njn': 
> EntryPoint('njn', 'qux.extn', 'Njn.load', Distribution('qux', '0.4'))}
> =========================== short test summary info 
> ============================
> FAILED tests/test_entrypoints.py::test_iter_files_distros - AssertionError: 
> a...
> FAILED tests/test_entrypoints.py::test_get_group_all - AssertionError: 
> assert...
> FAILED tests/test_entrypoints.py::test_get_group_named - AssertionError: 
> asse...
> ========================= 3 failed, 9 passed in 0.09s 
> ==========================
> E: pybuild pybuild:395: test: plugin pyproject failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_entrypoints/build; python3.11 -m 
> pytest tests
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.11 
> returned exit code 13


The full build log is available from:
http://qa-logs.debian.net/2023/09/25/entrypoints_0.4-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20230925;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20230925&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

--- End Message ---
--- Begin Message ---
Source: entrypoints
Source-Version: 0.4-3
Done: Colin Watson <cjwat...@debian.org>

We believe that the bug you reported is fixed in the latest version of
entrypoints, 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 1052...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Colin Watson <cjwat...@debian.org> (supplier of updated entrypoints 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: SHA256

Format: 1.8
Date: Thu, 03 Oct 2024 23:14:59 +0100
Source: entrypoints
Architecture: source
Version: 0.4-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Colin Watson <cjwat...@debian.org>
Closes: 1052826
Changes:
 entrypoints (0.4-3) unstable; urgency=medium
 .
   * Team upload.
   * Prevent pybuild removing embedded *.egg-info directories (closes:
     #1052826).
Checksums-Sha1:
 efe163a753e2b0a80f17a1ab9846f070bf54666d 2209 entrypoints_0.4-3.dsc
 80268420eeb9dba25e6e7d85522c65fb705c33f6 3644 entrypoints_0.4-3.debian.tar.xz
Checksums-Sha256:
 222896764905276189f0ea9181735bec4d653e17fd49f8dc987b2e7beff03253 2209 
entrypoints_0.4-3.dsc
 af37853259c1eea4a5a51797c9570ba6e5026221d397fecfb8d7ac96de532682 3644 
entrypoints_0.4-3.debian.tar.xz
Files:
 41b05cf86b1c938c4c5ba7bd4bfbd9e3 2209 python optional entrypoints_0.4-3.dsc
 8ba26c011d06acc6a45c936539caf688 3644 python optional 
entrypoints_0.4-3.debian.tar.xz

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

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAmb/F6UACgkQOTWH2X2G
UAtaRxAAnWYrvKnHFi7ph8jZ+KAyFpSxMGT5PtDpYsN6rsO7hL91fYFut3KuV2H7
m5s2FwMGjQSW7FWyvLpSrYMFMfXmncf+ShV9eCpwPa3dSjVRvm57r/IOzOOYH07e
+XjqltCa7lJATFf6syUFcvP3ktjujtwBILl+ql9epZ7GusNddQ4hTBXKgjQLNv63
4OnOTHpAMpmSq3eAwR/8+yh09ZCyfDjIr2nOLVSwONJQxP2illB6D2jqUrY3Hw3n
y5kcJaGgbH3OfIZjKri+HBXma9mzmP2XbFLAvc6NbE7CXaHbPUobUG3wUJfKPEPD
2ZZHF0Jr20oM8DSuTMJO45PNMh4A5wlyqqJRGX9sPEgC6yArDYxj+L4AKmFgdy/C
oTRYIhC8MwOUtmQk7xkPxVMBnMCDW2w9s7nHC9nY9dOUijpcMZrtUuKDHX2zD0Ol
Z23JdKryrfmZGLKP46+fx1cpf5S/0V0gcaqTMWM1WL34/fsbg9keEXWjJlwSPvHC
0DrWlhfu2hGL2ZEoL+N7FoojUtFbC4ShWzZhLWfw22knZJBpZKoeyrT2Vf7rees9
ILU3Q690BRzb/BtBEtnTQtlm4UDacgdvsohg116Elfk/rC2Z/iLb3Vo0j9NSKaCy
LhFeBydxlwblWcQLp5sDO0sTW9hu/ySQdfFhCm+L4UO+/kb3W2o=
=h9Gr
-----END PGP SIGNATURE-----

Attachment: pgpIwoJpyCuyO.pgp
Description: PGP signature


--- End Message ---

Reply via email to