Your message dated Mon, 19 Sep 2022 08:32:49 +0000
with message-id <[email protected]>
and subject line Bug#1016299: fixed in mkautodoc 0.1.0-4
has caused the Debian Bug report #1016299,
regarding mkautodoc: FTBFS: dh_auto_test: error: pybuild --test --test-pytest
-i python{version} -p 3.10 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 [email protected]
immediately.)
--
1016299: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016299
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: mkautodoc
Version: 0.1.0-3
Severity: serious
Justification: FTBFS
Tags: bookworm sid ftbfs
User: [email protected]
Usertags: ftbfs-20220728 ftbfs-bookworm
Hi,
During a rebuild of all packages in sid, your package failed to build
on amd64.
Relevant part (hopefully):
> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> PYBUILD_SYSTEM=custom
> PYBUILD_TEST_ARGS="PYTHONPATH={build_dir}:/<<PKGBUILDDIR>>/tests/mocklib
> {interpreter} -m pytest tests/ -v" dh_auto_test
> I: pybuild base:239:
> PYTHONPATH=/<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_mkautodoc/build:/<<PKGBUILDDIR>>/tests/mocklib
> python3.10 -m pytest tests/ -v
> ============================= test session starts
> ==============================
> platform linux -- Python 3.10.5, pytest-7.1.2, pluggy-1.0.0+repack --
> /usr/bin/python3.10
> cachedir: .pytest_cache
> rootdir: /<<PKGBUILDDIR>>
> plugins: cov-3.0.0
> collecting ... collected 2 items
>
> tests/test_extension.py::test_docstring FAILED [
> 50%]
> tests/test_extension.py::test_members FAILED
> [100%]
>
> =================================== FAILURES
> ===================================
> ________________________________ test_docstring
> ________________________________
>
> def test_docstring():
> content = """
> # Example
>
> ::: mocklib.example_function
> :docstring:
> """
> > output = markdown.markdown(content, extensions=["mkautodoc"])
>
> tests/test_extension.py:11:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> /usr/lib/python3/dist-packages/markdown/core.py:386: in markdown
> md = Markdown(**kwargs)
> /usr/lib/python3/dist-packages/markdown/core.py:96: in __init__
> self.registerExtensions(extensions=kwargs.get('extensions', []),
> /usr/lib/python3/dist-packages/markdown/core.py:123: in registerExtensions
> ext = self.build_extension(ext, configs.get(ext, {}))
> /usr/lib/python3/dist-packages/markdown/core.py:162: in build_extension
> module = importlib.import_module(ext_name)
> /usr/lib/python3.10/importlib/__init__.py:126: in import_module
> return _bootstrap._gcd_import(name[level:], package, level)
> <frozen importlib._bootstrap>:1050: in _gcd_import
> ???
> <frozen importlib._bootstrap>:1027: in _find_and_load
> ???
> <frozen importlib._bootstrap>:1006: in _find_and_load_unlocked
> ???
> <frozen importlib._bootstrap>:688: in _load_unlocked
> ???
> <frozen importlib._bootstrap_external>:883: in exec_module
> ???
> <frozen importlib._bootstrap>:241: in _call_with_frames_removed
> ???
> mkautodoc/__init__.py:1: in <module>
> from .extension import MKAutoDocExtension, makeExtension
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> from markdown import Markdown
> from markdown.extensions import Extension
> from markdown.blockprocessors import BlockProcessor
> > from markdown.util import etree
> E ImportError: cannot import name 'etree' from 'markdown.util'
> (/usr/lib/python3/dist-packages/markdown/util.py)
>
> mkautodoc/extension.py:4: ImportError
> _________________________________ test_members
> _________________________________
>
> def test_members():
> content = """
> # Example
>
> ::: mocklib.ExampleClass
> :docstring:
> :members:
> """
> > output = markdown.markdown(content, extensions=["mkautodoc"])
>
> tests/test_extension.py:29:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> /usr/lib/python3/dist-packages/markdown/core.py:386: in markdown
> md = Markdown(**kwargs)
> /usr/lib/python3/dist-packages/markdown/core.py:96: in __init__
> self.registerExtensions(extensions=kwargs.get('extensions', []),
> /usr/lib/python3/dist-packages/markdown/core.py:123: in registerExtensions
> ext = self.build_extension(ext, configs.get(ext, {}))
> /usr/lib/python3/dist-packages/markdown/core.py:162: in build_extension
> module = importlib.import_module(ext_name)
> /usr/lib/python3.10/importlib/__init__.py:126: in import_module
> return _bootstrap._gcd_import(name[level:], package, level)
> <frozen importlib._bootstrap>:1050: in _gcd_import
> ???
> <frozen importlib._bootstrap>:1027: in _find_and_load
> ???
> <frozen importlib._bootstrap>:1006: in _find_and_load_unlocked
> ???
> <frozen importlib._bootstrap>:688: in _load_unlocked
> ???
> <frozen importlib._bootstrap_external>:883: in exec_module
> ???
> <frozen importlib._bootstrap>:241: in _call_with_frames_removed
> ???
> mkautodoc/__init__.py:1: in <module>
> from .extension import MKAutoDocExtension, makeExtension
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> from markdown import Markdown
> from markdown.extensions import Extension
> from markdown.blockprocessors import BlockProcessor
> > from markdown.util import etree
> E ImportError: cannot import name 'etree' from 'markdown.util'
> (/usr/lib/python3/dist-packages/markdown/util.py)
>
> mkautodoc/extension.py:4: ImportError
> =========================== short test summary info
> ============================
> FAILED tests/test_extension.py::test_docstring - ImportError: cannot import
> n...
> FAILED tests/test_extension.py::test_members - ImportError: cannot import
> nam...
> ============================== 2 failed in 0.09s
> ===============================
> E: pybuild pybuild:369: test: plugin custom failed with: exit code=1:
> PYTHONPATH=/<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_mkautodoc/build:/<<PKGBUILDDIR>>/tests/mocklib
> python3.10 -m pytest tests/ -v
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.10
> returned exit code 13
The full build log is available from:
http://qa-logs.debian.net/2022/07/28/mkautodoc_0.1.0-3_unstable.log
All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20220728;[email protected]
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20220728&[email protected]&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 marking 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: mkautodoc
Source-Version: 0.1.0-4
Done: Sandro Tosi <[email protected]>
We believe that the bug you reported is fixed in the latest version of
mkautodoc, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sandro Tosi <[email protected]> (supplier of updated mkautodoc 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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sun, 18 Sep 2022 20:57:13 -0400
Source: mkautodoc
Architecture: source
Version: 0.1.0-4
Distribution: unstable
Urgency: medium
Maintainer: Sandro Tosi <[email protected]>
Changed-By: Sandro Tosi <[email protected]>
Closes: 1016299
Changes:
mkautodoc (0.1.0-4) unstable; urgency=medium
.
[ Adrian Bunk ]
* Backport upstream fix for Markdown 3.4. (Closes: #1016299)
Checksums-Sha1:
64f8a98eba689e24f4a94aba99763c34a6fc22e6 2043 mkautodoc_0.1.0-4.dsc
ce128bd68b1d570a0d96c690a0264bd194bbd817 2072 mkautodoc_0.1.0-4.debian.tar.xz
fb44538abb2d8e33e1472cf07753294765e12741 7901
mkautodoc_0.1.0-4_source.buildinfo
Checksums-Sha256:
79c2629313a6f43dcc3d84544e24d7c65403cf6d5b32db883bf4ce54844e5a94 2043
mkautodoc_0.1.0-4.dsc
fb8cb4c7a8a9ad6ee59f73f91ce55e99620aa81b743e14f0fd4ec2d7f048ee08 2072
mkautodoc_0.1.0-4.debian.tar.xz
5f3e3e56836fd9032864fa7bc93ca54cfdaa1c827ef1f116b914971cf6a12f64 7901
mkautodoc_0.1.0-4_source.buildinfo
Files:
b8e9483103dab66aa99b75b62ed06ccd 2043 python optional mkautodoc_0.1.0-4.dsc
e2b4cb901c73a4fb4232e1913b067761 2072 python optional
mkautodoc_0.1.0-4.debian.tar.xz
57edff52a2280b403e25dd306d378b72 7901 python optional
mkautodoc_0.1.0-4_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEufrTGSrz5KUwnZ05h588mTgBqU8FAmMnvoYACgkQh588mTgB
qU/rmA//Wtj/MpRdEpVBrPu6XEBsp6ldBgr6NuAofioVALhYhVWnjxO1zq3jzakC
eOGr21cN5+mj5+jFc58vYDVl3xpx2SV7GzH3X3pQ3okUISHX1RhIHAOF8Eip39gE
RqIV2nYGKN84GyFd3DRQiscCqDDX0OcAaZ/mVFNnnLTD2uUrQXFWW9yVB6frYO/n
BNf+T+23VyJzacUJTd60cEfOMtYTTOcfl9fC0MOxlmgEvDVHnEOdmvUesA+shnnQ
9CoM2DNM+CZ2HDI83Uh4ZonE6pwPW0+S9dc2OY+OV4oHLan/VpxqF6L92vO9Ve52
KqFxEouskhxKg3eLuNl4DF8a+NNonTssDhZB0HEm4t98QslmlKNKAVVfoblGNzC2
dmq5685SZzM0u1BgA0JrMwjePIybzkfKIcCj9RPzsOakm6RJ52kJTvIE6hjefE1F
0vLJejneF5rcOS89NcCOPLoK9pR6fz3TFGmHwanCzzMHovVy1zsB2OtnedDneRHH
Oju3Et/7ryPCJCIVHtUMCqvS53R8pCR49P1WmysZYgW+bS1DPhZbNTT8Aw+Dl57J
5Z3oZkshz7f/GbxfD3GnfgEaEukp7/VP4gKpGpslCNHFRWtBBDR5FeiBWlpJGpTw
jYsy6VInNeaf25JCAubgD2OYfcsrJ7IapbUq1jIAs8CO/k4VjKU=
=ijvv
-----END PGP SIGNATURE-----
--- End Message ---