Your message dated Sat, 03 Dec 2022 17:20:30 +0000
with message-id <[email protected]>
and subject line Bug#1013380: fixed in pybtex-docutils 1.0.2-1
has caused the Debian Bug report #1013380,
regarding pybtex-docutils: FTBFS with Sphinx 5.0, docutils 0.18: dh_auto_test:
error: pybuild --test --test-pytest -i python{version} -p "3.9 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.)
--
1013380: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1013380
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: pybtex-docutils
Version: 1.0.1-1
Severity: important
Tags: ftbfs
User: [email protected]
Usertags: sphinx5.0
Hi,
pybtex-docutils fails to build with Sphinx 5.0 and docutils 0.18, both of which
are currently available in experimental.
Relevant part (hopefully):
> make[2]: Entering directory '/<<PKGBUILDDIR>>/doc'
> sphinx-build -b html -d _build/doctrees . _build/html
> Running Sphinx v5.0.2
> making output directory... done
> loading intersphinx inventory from http://docs.python.org/objects.inv...
> WARNING: failed to reach any of the inventories with the following issues:
> intersphinx inventory 'http://docs.python.org/objects.inv' not fetchable due
> to <class 'requests.exceptions.ProxyError'>:
> HTTPConnectionPool(host='127.0.0.1', port=9): Max retries exceeded with url:
> http://docs.python.org/objects.inv (Caused by ProxyError('Cannot connect to
> proxy.', NewConnectionError('<urllib3.connection.HTTPConnection object at
> 0x7ff2dd04a2c0>: Failed to establish a new connection: [Errno 111] Connection
> refused')))
> building [mo]: targets for 0 po files that are out of date
> building [html]: targets for 5 source files that are out of date
> updating environment: [new config] 5 added, 0 changed, 0 removed
> reading sources... [ 20%] api
> reading sources... [ 40%] changes
> reading sources... [ 60%] index
> reading sources... [ 80%] license
> reading sources... [100%] quickstart
>
> looking for now-outdated files... none found
> pickling environment... done
> checking consistency... done
> preparing documents... done
> writing output... [ 20%] api
> writing output... [ 40%] changes
> writing output... [ 60%] index
> writing output... [ 80%] license
> writing output... [100%] quickstart
>
> generating indices... genindex py-modindex done
> highlighting module code... [ 50%] builtins
> highlighting module code... [100%] pybtex_docutils
>
> writing additional pages... search done
> copying static files... done
> copying extra files... done
> dumping search index in English (code: en)... done
> dumping object inventory... done
> build succeeded, 1 warning.
>
> The HTML pages are in _build/html.
>
> Build finished. The HTML pages are in _build/html.
> make[2]: Leaving directory '/<<PKGBUILDDIR>>/doc'
> make[1]: Leaving directory '/<<PKGBUILDDIR>>'
> dh_auto_test -O--buildsystem=pybuild
> I: pybuild pybuild:300: python3 setup.py egg_info
> running egg_info
> creating src/pybtex_docutils.egg-info
> writing src/pybtex_docutils.egg-info/PKG-INFO
> writing dependency_links to src/pybtex_docutils.egg-info/dependency_links.txt
> writing entry points to src/pybtex_docutils.egg-info/entry_points.txt
> writing requirements to src/pybtex_docutils.egg-info/requires.txt
> writing top-level names to src/pybtex_docutils.egg-info/top_level.txt
> writing manifest file 'src/pybtex_docutils.egg-info/SOURCES.txt'
> reading manifest file 'src/pybtex_docutils.egg-info/SOURCES.txt'
> reading manifest template 'MANIFEST.in'
> warning: no previously-included files matching '*.pyc' found anywhere in
> distribution
> adding license file 'LICENSE.rst'
> writing manifest file 'src/pybtex_docutils.egg-info/SOURCES.txt'
> I: pybuild base:239: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pybtex-docutils/build; python3.9 -m
> pytest test
> ============================= test session starts
> ==============================
> platform linux -- Python 3.9.13, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
> rootdir: /<<PKGBUILDDIR>>, configfile: pytest.ini
> collected 23 items
>
> test/test_backend.py ..............F.F.F. [
> 86%]
> test/test_find_plugin.py .. [
> 95%]
> test/test_install_example.py .
> [100%]
>
> =================================== FAILURES
> ===================================
> ___________________________ test_citation_reference
> ____________________________
>
> entry = <pybtex.style.FormattedEntry object at 0x7f4e39d54340>
> document = <document: >
>
> def test_citation_reference(entry, document):
> node = Backend().citation_reference(entry, document)
> > assert str(node) == (
> '<citation_reference ids="id1" refname="hongquin1997">'
> 'hongquin1997'
> '</citation_reference>')
> E assert '<citation_re...on_reference>' ==
> '<citation_re...on_reference>'
> E - <citation_reference ids="id1"
> refname="hongquin1997">hongquin1997</citation_reference>
> E ? ^
> E + <citation_reference ids="citation-reference-1"
> refname="hongquin1997">hongquin1997</citation_reference>
> E ? + ^^^^^^^^^^^^^^^^^
>
> test/test_backend.py:130: AssertionError
> ______________________ test_citation_reference_use_label
> _______________________
>
> entry = <pybtex.style.FormattedEntry object at 0x7f4e39cb2bb0>
> document = <document: >
>
> def test_citation_reference_use_label(entry, document):
> node = Backend().citation_reference(
> entry, document, use_key_as_label=False)
> > assert str(node) == (
> '<citation_reference ids="id1" refname="hongquin1997">'
> '1'
> '</citation_reference>')
> E assert '<citation_re...on_reference>' ==
> '<citation_re...on_reference>'
> E - <citation_reference ids="id1"
> refname="hongquin1997">1</citation_reference>
> E ? ^
> E + <citation_reference ids="citation-reference-1"
> refname="hongquin1997">1</citation_reference>
> E ? + ^^^^^^^^^^^^^^^^^
>
> test/test_backend.py:154: AssertionError
> ___________________________ test_footnote_reference
> ____________________________
>
> entry = <pybtex.style.FormattedEntry object at 0x7f4e39cb1a60>
> document = <document: >
>
> def test_footnote_reference(entry, document):
> node = Backend().footnote_reference(entry, document)
> > assert str(node) == (
> '<footnote_reference auto="1" ids="[\'id1\']" '
> 'refname="hongquin1997"/>')
> E assert '<footnote_re...ngquin1997"/>' ==
> '<footnote_re...ngquin1997"/>'
> E - <footnote_reference auto="1" ids="['id1']"
> refname="hongquin1997"/>
> E ? ^^
> E + <footnote_reference auto="1" ids="['footnote-reference-1']"
> refname="hongquin1997"/>
> E ? ^^^^^^^^^^^^^^^^^^^
>
> test/test_backend.py:175: AssertionError
> =============================== warnings summary
> ===============================
> pybtex_docutils/__init__.py:39
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pybtex-docutils/build/pybtex_docutils/__init__.py:39:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> 'ndash': [docutils.nodes.Text('\u2013', '\u2013')],
>
> pybtex_docutils/__init__.py:40
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pybtex-docutils/build/pybtex_docutils/__init__.py:40:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> 'newblock': [docutils.nodes.Text(' ', ' ')],
>
> pybtex_docutils/__init__.py:41
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pybtex-docutils/build/pybtex_docutils/__init__.py:41:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> 'nbsp': [docutils.nodes.Text('\u00a0', '\u00a0')],
>
> .pybuild/cpython3_3.9_pybtex-docutils/build/test/test_backend.py: 30 warnings
> .pybuild/cpython3_3.9_pybtex-docutils/build/test/test_install_example.py: 10
> warnings
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pybtex-docutils/build/pybtex_docutils/__init__.py:61:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> return [docutils.nodes.Text(str_, str_)]
>
> -- Docs: https://docs.pytest.org/en/stable/warnings.html
> =========================== short test summary info
> ============================
> FAILED test/test_backend.py::test_citation_reference - assert
> '<citation_re.....
> FAILED test/test_backend.py::test_citation_reference_use_label - assert
> '<cit...
> FAILED test/test_backend.py::test_footnote_reference - assert
> '<footnote_re.....
> ================== 3 failed, 20 passed, 43 warnings in 0.16s
> ===================
> E: pybuild pybuild:369: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pybtex-docutils/build; python3.9 -m
> pytest test
> I: pybuild pybuild:300: python3 setup.py egg_info
> running egg_info
> writing src/pybtex_docutils.egg-info/PKG-INFO
> writing dependency_links to src/pybtex_docutils.egg-info/dependency_links.txt
> writing entry points to src/pybtex_docutils.egg-info/entry_points.txt
> writing requirements to src/pybtex_docutils.egg-info/requires.txt
> writing top-level names to src/pybtex_docutils.egg-info/top_level.txt
> reading manifest file 'src/pybtex_docutils.egg-info/SOURCES.txt'
> reading manifest template 'MANIFEST.in'
> warning: no previously-included files matching '*.pyc' found anywhere in
> distribution
> adding license file 'LICENSE.rst'
> writing manifest file 'src/pybtex_docutils.egg-info/SOURCES.txt'
> I: pybuild base:239: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_pybtex-docutils/build; python3.10 -m
> pytest test
> ============================= test session starts
> ==============================
> platform linux -- Python 3.10.5, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
> rootdir: /<<PKGBUILDDIR>>, configfile: pytest.ini
> collected 23 items
>
> test/test_backend.py ..............F.F.F. [
> 86%]
> test/test_find_plugin.py .. [
> 95%]
> test/test_install_example.py .
> [100%]
>
> =================================== FAILURES
> ===================================
> ___________________________ test_citation_reference
> ____________________________
>
> entry = <pybtex.style.FormattedEntry object at 0x7f88a61e6e30>
> document = <document: >
>
> def test_citation_reference(entry, document):
> node = Backend().citation_reference(entry, document)
> > assert str(node) == (
> '<citation_reference ids="id1" refname="hongquin1997">'
> 'hongquin1997'
> '</citation_reference>')
> E assert '<citation_re...on_reference>' ==
> '<citation_re...on_reference>'
> E - <citation_reference ids="id1"
> refname="hongquin1997">hongquin1997</citation_reference>
> E ? ^
> E + <citation_reference ids="citation-reference-1"
> refname="hongquin1997">hongquin1997</citation_reference>
> E ? + ^^^^^^^^^^^^^^^^^
>
> test/test_backend.py:130: AssertionError
> ______________________ test_citation_reference_use_label
> _______________________
>
> entry = <pybtex.style.FormattedEntry object at 0x7f88a6064040>
> document = <document: >
>
> def test_citation_reference_use_label(entry, document):
> node = Backend().citation_reference(
> entry, document, use_key_as_label=False)
> > assert str(node) == (
> '<citation_reference ids="id1" refname="hongquin1997">'
> '1'
> '</citation_reference>')
> E assert '<citation_re...on_reference>' ==
> '<citation_re...on_reference>'
> E - <citation_reference ids="id1"
> refname="hongquin1997">1</citation_reference>
> E ? ^
> E + <citation_reference ids="citation-reference-1"
> refname="hongquin1997">1</citation_reference>
> E ? + ^^^^^^^^^^^^^^^^^
>
> test/test_backend.py:154: AssertionError
> ___________________________ test_footnote_reference
> ____________________________
>
> entry = <pybtex.style.FormattedEntry object at 0x7f88a61e6bc0>
> document = <document: >
>
> def test_footnote_reference(entry, document):
> node = Backend().footnote_reference(entry, document)
> > assert str(node) == (
> '<footnote_reference auto="1" ids="[\'id1\']" '
> 'refname="hongquin1997"/>')
> E assert '<footnote_re...ngquin1997"/>' ==
> '<footnote_re...ngquin1997"/>'
> E - <footnote_reference auto="1" ids="['id1']"
> refname="hongquin1997"/>
> E ? ^^
> E + <footnote_reference auto="1" ids="['footnote-reference-1']"
> refname="hongquin1997"/>
> E ? ^^^^^^^^^^^^^^^^^^^
>
> test/test_backend.py:175: AssertionError
> =============================== warnings summary
> ===============================
> pybtex_docutils/__init__.py:39
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_pybtex-docutils/build/pybtex_docutils/__init__.py:39:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> 'ndash': [docutils.nodes.Text('\u2013', '\u2013')],
>
> pybtex_docutils/__init__.py:40
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_pybtex-docutils/build/pybtex_docutils/__init__.py:40:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> 'newblock': [docutils.nodes.Text(' ', ' ')],
>
> pybtex_docutils/__init__.py:41
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_pybtex-docutils/build/pybtex_docutils/__init__.py:41:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> 'nbsp': [docutils.nodes.Text('\u00a0', '\u00a0')],
>
> .pybuild/cpython3_3.10_pybtex-docutils/build/test/test_backend.py: 30 warnings
> .pybuild/cpython3_3.10_pybtex-docutils/build/test/test_install_example.py: 10
> warnings
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_pybtex-docutils/build/pybtex_docutils/__init__.py:61:
> DeprecationWarning: nodes.Text: initialization argument "rawsource" is
> ignored and will be removed in Docutils 1.3.
> return [docutils.nodes.Text(str_, str_)]
>
> -- Docs: https://docs.pytest.org/en/stable/warnings.html
> =========================== short test summary info
> ============================
> FAILED test/test_backend.py::test_citation_reference - assert
> '<citation_re.....
> FAILED test/test_backend.py::test_citation_reference_use_label - assert
> '<cit...
> FAILED test/test_backend.py::test_footnote_reference - assert
> '<footnote_re.....
> ================== 3 failed, 20 passed, 43 warnings in 0.16s
> ===================
> E: pybuild pybuild:369: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_pybtex-docutils/build; python3.10 -m
> pytest test
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.9
> 3.10" returned exit code 13
The full build log is available from:
http://qa-logs.debian.net/2022/06/23/pybtex-docutils_1.0.1-1_unstable_sphinx-exp.log
Please see [1] for Sphinx changelog and [2] for Docutils changelog.
Also see [3] for the list of deprecated/removed APIs in Sphinx and possible
alternatives to them.
In case you have questions, please Cc [email protected] on reply.
[1]: https://www.sphinx-doc.org/en/master/changes.html
[2]:
https://repo.or.cz/docutils.git/blob/refs/tags/docutils-0.18.1:/RELEASE-NOTES.txt
[3]:
https://www.sphinx-doc.org/en/master/extdev/deprecated.html#dev-deprecated-apis
All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=sphinx5.0;[email protected]
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=sphinx5.0&[email protected]&allbugs=1&cseverity=1&ctags=1&caffected=1#results
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
--- End Message ---
--- Begin Message ---
Source: pybtex-docutils
Source-Version: 1.0.2-1
Done: Dmitry Shachnev <[email protected]>
We believe that the bug you reported is fixed in the latest version of
pybtex-docutils, 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.
Dmitry Shachnev <[email protected]> (supplier of updated pybtex-docutils
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: SHA512
Format: 1.8
Date: Sat, 03 Dec 2022 19:50:23 +0300
Source: pybtex-docutils
Architecture: source
Version: 1.0.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers
<[email protected]>
Changed-By: Dmitry Shachnev <[email protected]>
Closes: 1013380
Changes:
pybtex-docutils (1.0.2-1) unstable; urgency=medium
.
* Team upload.
.
[ Dmitry Shachnev ]
* New upstream release.
- Updates tests for docutils 0.18 (closes: #1013380).
* Update debian/watch to use tags instead of releases.
* Refresh No-privacy-breach.patch.
* Backport upstream commit to fix tests for older docutils versions.
* Fix built-using-field-on-arch-all-package Lintian warning.
.
[ Debian Janitor ]
* Remove constraints unnecessary since buster (oldstable):
+ Build-Depends: Drop versioned constraint on dpkg-dev.
Checksums-Sha1:
4d01389398c408946f4992942b7b06e607a88799 2376 pybtex-docutils_1.0.2-1.dsc
300faa0fdfa0128354f0a4cb08b598e3636a0e4e 15306
pybtex-docutils_1.0.2.orig.tar.gz
8c56a17d6e1d9ba7802cec260feccb8ceb17049c 4948
pybtex-docutils_1.0.2-1.debian.tar.xz
e8ee3a17f29b7546e34bce7e06b23a7c6d0fb900 8001
pybtex-docutils_1.0.2-1_source.buildinfo
Checksums-Sha256:
f0cb174207f1128a40d396ca7a0e52a1ee7f2289463e30053c22cd9da1e9bda2 2376
pybtex-docutils_1.0.2-1.dsc
81a28564edd44d66c6679160be4db8fb6ee6f6d88333310131d6c080874c45bb 15306
pybtex-docutils_1.0.2.orig.tar.gz
ec055b8af3769b1d77997e75a3ef290c641627cc80d5475be0b2a54daf8e136c 4948
pybtex-docutils_1.0.2-1.debian.tar.xz
408c69dbb50bd355809e27e2ef335650ce97913b0c41c753d076563b2d73ece6 8001
pybtex-docutils_1.0.2-1_source.buildinfo
Files:
8c3d66984f4bc55934ffc653ec2f3074 2376 python optional
pybtex-docutils_1.0.2-1.dsc
00c0477ff0c39deb2bc552ff4ec3d433 15306 python optional
pybtex-docutils_1.0.2.orig.tar.gz
7798e898fb201e1cc937748fdf109111 4948 python optional
pybtex-docutils_1.0.2-1.debian.tar.xz
a7b81dbc0eb40c897290f4475d1583b4 8001 python optional
pybtex-docutils_1.0.2-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJHBAEBCgAxFiEE5688gqe4PSusUZcLZkYmW1hrg8sFAmOLfq8THG1pdHlhNTdA
ZGViaWFuLm9yZwAKCRBmRiZbWGuDy6OCD/4050ZD+OpvrzExtJiYeeyADewmVc3y
u25WnWLssKAFbt1ovd2D3pNzLDlP6WauoF0Z/WuvVf66ptu2fz2O1/OljB3FlJ3A
dSQZRPn3anVGAWPXEj/P1Vy6W85vPM1UqKJqtZt7iR7f2cznbvwBIHmhCxCqxsYU
aII70GnMW/Sp0S14ty5a/txzvvRl3ub8Mw+EVkIGp506+g5VTnndPVXQjsjr+db0
8lr7gvCuDHRnV3fswRcoigdaBL3wJygV7ZTfZcP3Ge++Wi53PLC8fQc1fEX7akTg
2lwp0ad4dMg0vDxHYhzuwc1e8vxpnX80ZPMSEscHQpnQjKx+TGU6sIgOLvXeTHbL
PVHDjn8oBHmVoAw/raMSwrTtaABFnUIODbuviFEGWNDsk75NKbU3eyab+PL+u4nn
AYdPsc5KOiKqM1aEjw3wQGHd0wuME4m5iZmzWNz0keUqgDGGxEOXtOPHZM0FrZ5B
j/oXuSIhoLjvTFfelPnaTeKTrbu1tBPVj/6Jd+SfARYqJfAb2yX6T+/fsNtgsqGP
5v1jBMS70ltgCphKfMWGQH5QtrcBZB1Kd+pU0Ku/9xswm0wlArQI1MatSv7R7iN9
3oUZ6y8OB3hEVbe4RIgmUS8gxnIb11PJ9bNf1YQk6b+fiZNjJXHx7ki2FJfsyzWF
OMObZMGkQgYTUw==
=OM7b
-----END PGP SIGNATURE-----
--- End Message ---
--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers