Source: quark-sphinx-theme Version: 0.5.1-3 Severity: important Tags: ftbfs User: [email protected] Usertags: sphinx7.1
Hi, quark-sphinx-theme fails to build with Sphinx 7.1 and docutils 0.20, both of which are currently available in experimental. Relevant part (hopefully): > debian/rules build > dh build --with python3 --buildsystem=pybuild > dh_update_autotools_config -O--buildsystem=pybuild > dh_autoreconf -O--buildsystem=pybuild > dh_auto_configure -O--buildsystem=pybuild > I: pybuild base:240: python3.11 setup.py config > running config > dh_auto_build -O--buildsystem=pybuild > I: pybuild base:240: /usr/bin/python3 setup.py build > running build > running build_py > creating > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme > copying src/quark_sphinx_theme/_mixin.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme > copying src/quark_sphinx_theme/__init__.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme > copying src/quark_sphinx_theme/_lovelace.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme > copying src/quark_sphinx_theme/_sphinxversion.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme > copying src/quark_sphinx_theme/__version__.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme > creating > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext > copying src/quark_sphinx_theme/ext/__init__.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext > copying src/quark_sphinx_theme/ext/html_compat.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext > creating > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/_setup_pre16.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/literal_blocks.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/__init__.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/boxes.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/_features.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/compat.py -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/ext/html_rewrite > running egg_info > writing src/quark_sphinx_theme.egg-info/PKG-INFO > writing dependency_links to > src/quark_sphinx_theme.egg-info/dependency_links.txt > writing entry points to src/quark_sphinx_theme.egg-info/entry_points.txt > writing requirements to src/quark_sphinx_theme.egg-info/requires.txt > writing top-level names to src/quark_sphinx_theme.egg-info/top_level.txt > reading manifest file 'src/quark_sphinx_theme.egg-info/SOURCES.txt' > reading manifest template 'MANIFEST.in' > adding license file 'LICENSE' > writing manifest file 'src/quark_sphinx_theme.egg-info/SOURCES.txt' > /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: > Package 'quark_sphinx_theme.quark' is absent from the `packages` > configuration. > !! > > > ******************************************************************************** > ############################ > # Package would be ignored # > ############################ > Python recognizes 'quark_sphinx_theme.quark' as an importable > package[^1], > but it is absent from setuptools' `packages` configuration. > > This leads to an ambiguous overall configuration. If you want to > distribute this > package, please make sure that 'quark_sphinx_theme.quark' is > explicitly added > to the `packages` configuration field. > > Alternatively, you can also rely on setuptools' discovery methods > (for example by using `find_namespace_packages(...)`/`find_namespace:` > instead of `find_packages(...)`/`find:`). > > You can read more about "package discovery" on setuptools > documentation page: > > - > https://setuptools.pypa.io/en/latest/userguide/package_discovery.html > > If you don't want 'quark_sphinx_theme.quark' to be distributed and are > already explicitly excluding 'quark_sphinx_theme.quark' via > `find_namespace_packages(...)/find_namespace` or > `find_packages(...)/find`, > you can try to use `exclude_package_data`, or > `include-package-data=False` in > combination with a more fine grained `package-data` configuration. > > You can read more about "package data files" on setuptools > documentation page: > > - https://setuptools.pypa.io/en/latest/userguide/datafiles.html > > > [^1]: For Python, any directory (with suitable naming) can be > imported, > even if it does not contain any `.py` files. > On the other hand, currently there is no concept of package data > directory, all directories are treated like packages. > > ******************************************************************************** > > !! > check.warn(importable) > /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: > Package 'quark_sphinx_theme.quark.static' is absent from the `packages` > configuration. > !! > > > ******************************************************************************** > ############################ > # Package would be ignored # > ############################ > Python recognizes 'quark_sphinx_theme.quark.static' as an importable > package[^1], > but it is absent from setuptools' `packages` configuration. > > This leads to an ambiguous overall configuration. If you want to > distribute this > package, please make sure that 'quark_sphinx_theme.quark.static' is > explicitly added > to the `packages` configuration field. > > Alternatively, you can also rely on setuptools' discovery methods > (for example by using `find_namespace_packages(...)`/`find_namespace:` > instead of `find_packages(...)`/`find:`). > > You can read more about "package discovery" on setuptools > documentation page: > > - > https://setuptools.pypa.io/en/latest/userguide/package_discovery.html > > If you don't want 'quark_sphinx_theme.quark.static' to be distributed > and are > already explicitly excluding 'quark_sphinx_theme.quark.static' via > `find_namespace_packages(...)/find_namespace` or > `find_packages(...)/find`, > you can try to use `exclude_package_data`, or > `include-package-data=False` in > combination with a more fine grained `package-data` configuration. > > You can read more about "package data files" on setuptools > documentation page: > > - https://setuptools.pypa.io/en/latest/userguide/datafiles.html > > > [^1]: For Python, any directory (with suitable naming) can be > imported, > even if it does not contain any `.py` files. > On the other hand, currently there is no concept of package data > directory, all directories are treated like packages. > > ******************************************************************************** > > !! > check.warn(importable) > creating > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/domainindex.html -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/genindex-single.html -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/genindex.html -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/layout.html -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/theme.conf -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark > creating > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark/static > copying src/quark_sphinx_theme/quark/static/quark.css_t -> > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_quark-sphinx-theme/build/quark_sphinx_theme/quark/static > dh_auto_test -O--buildsystem=pybuild > I: pybuild base:240: python3.11 setup.py test > running test > WARNING: Testing via this command is deprecated and will be removed in a > future version. Users looking for a generic test entry point independent of > test runner are encouraged to use tox. > /usr/lib/python3/dist-packages/setuptools/command/test.py:194: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > ******************************************************************************** > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > ******************************************************************************** > > !! > ir_d = dist.fetch_build_eggs(dist.install_requires) > WARNING: The wheel package is not available. > /usr/lib/python3/dist-packages/setuptools/command/test.py:195: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > ******************************************************************************** > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > ******************************************************************************** > > !! > tr_d = dist.fetch_build_eggs(dist.tests_require or []) > WARNING: The wheel package is not available. > /usr/lib/python3/dist-packages/setuptools/command/test.py:196: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > ******************************************************************************** > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > ******************************************************************************** > > !! > er_d = dist.fetch_build_eggs( > WARNING: The wheel package is not available. > running egg_info > writing src/quark_sphinx_theme.egg-info/PKG-INFO > writing dependency_links to > src/quark_sphinx_theme.egg-info/dependency_links.txt > writing entry points to src/quark_sphinx_theme.egg-info/entry_points.txt > writing requirements to src/quark_sphinx_theme.egg-info/requires.txt > writing top-level names to src/quark_sphinx_theme.egg-info/top_level.txt > reading manifest file 'src/quark_sphinx_theme.egg-info/SOURCES.txt' > reading manifest template 'MANIFEST.in' > adding license file 'LICENSE' > writing manifest file 'src/quark_sphinx_theme.egg-info/SOURCES.txt' > running build_ext > test_base_class_name_tag > (test.test_mixin.TestMixins.test_base_class_name_tag) ... ok > test_explicit_name (test.test_mixin.TestMixins.test_explicit_name) ... ok > test_mixin_no_init (test.test_mixin.TestMixins.test_mixin_no_init) ... ok > test_mixin_no_tag (test.test_mixin.TestMixins.test_mixin_no_tag) ... ok > test_no_mixins (test.test_mixin.TestMixins.test_no_mixins) ... ok > test_one_mixin (test.test_mixin.TestMixins.test_one_mixin) ... ok > test_two_mixins (test.test_mixin.TestMixins.test_two_mixins) ... ok > test_no_enabled_no_disabled > (test.test_html_rewrite_features.TestCreateTranslatorClass.test_no_enabled_no_disabled) > ... ok > test_no_enabled_some_disabled > (test.test_html_rewrite_features.TestCreateTranslatorClass.test_no_enabled_some_disabled) > ... ok > test_some_enabled_no_disabled > (test.test_html_rewrite_features.TestCreateTranslatorClass.test_some_enabled_no_disabled) > ... ok > test_some_enabled_some_disabled > (test.test_html_rewrite_features.TestCreateTranslatorClass.test_some_enabled_some_disabled) > ... ok > test_should_return_false_if_actual_version_lower > (test.test_sphinxversion.TestSphinxVersionAtLeast.test_should_return_false_if_actual_version_lower) > ... ok > test_should_return_false_if_missing_sphinx_version_info > (test.test_sphinxversion.TestSphinxVersionAtLeast.test_should_return_false_if_missing_sphinx_version_info) > ... ok > test_should_return_true_if_actual_version_greater > (test.test_sphinxversion.TestSphinxVersionAtLeast.test_should_return_true_if_actual_version_greater) > ... ok > test_get_path (test.test_core.TestGetPath.test_get_path) ... ok > running egg_info > creating /tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info > writing /tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/PKG-INFO > writing dependency_links to > /tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/dependency_links.txt > writing entry points to > /tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/entry_points.txt > writing requirements to > /tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/requires.txt > writing top-level names to > /tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/top_level.txt > writing manifest file > '/tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/SOURCES.txt' > reading manifest file > '/tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/SOURCES.txt' > reading manifest template 'MANIFEST.in' > adding license file 'LICENSE' > writing manifest file > '/tmp/tmp-test-sdistwm15d_1k/quark_sphinx_theme.egg-info/SOURCES.txt' > running sdist > running check > creating quark-sphinx-theme-0.5.1 > creating quark-sphinx-theme-0.5.1/src > creating quark-sphinx-theme-0.5.1/src/quark_sphinx_theme > creating quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext > creating quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > creating quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark > creating quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/static > creating quark-sphinx-theme-0.5.1/test > creating quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > creating quark-sphinx-theme-0.5.1/test/testdoc-theme > copying files to quark-sphinx-theme-0.5.1... > copying LICENSE -> quark-sphinx-theme-0.5.1 > copying MANIFEST.in -> quark-sphinx-theme-0.5.1 > copying README.rst -> quark-sphinx-theme-0.5.1 > copying setup.cfg -> quark-sphinx-theme-0.5.1 > copying setup.py -> quark-sphinx-theme-0.5.1 > copying tox.ini -> quark-sphinx-theme-0.5.1 > copying src/quark_sphinx_theme/__init__.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme > copying src/quark_sphinx_theme/__version__.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme > copying src/quark_sphinx_theme/_lovelace.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme > copying src/quark_sphinx_theme/_mixin.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme > copying src/quark_sphinx_theme/_sphinxversion.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme > copying src/quark_sphinx_theme/ext/__init__.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext > copying src/quark_sphinx_theme/ext/html_compat.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext > copying src/quark_sphinx_theme/ext/html_rewrite/__init__.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/_features.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/_setup_pre16.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/boxes.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/compat.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/ext/html_rewrite/literal_blocks.py -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite > copying src/quark_sphinx_theme/quark/domainindex.html -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/genindex-single.html -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/genindex.html -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/layout.html -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/theme.conf -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark > copying src/quark_sphinx_theme/quark/static/quark.css_t -> > quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/static > copying test/__init__.py -> quark-sphinx-theme-0.5.1/test > copying test/test_core.py -> quark-sphinx-theme-0.5.1/test > copying test/test_html_rewrite.py -> quark-sphinx-theme-0.5.1/test > copying test/test_html_rewrite_features.py -> quark-sphinx-theme-0.5.1/test > copying test/test_import.py -> quark-sphinx-theme-0.5.1/test > copying test/test_mixin.py -> quark-sphinx-theme-0.5.1/test > copying test/test_sdist.py -> quark-sphinx-theme-0.5.1/test > copying test/test_sphinxversion.py -> quark-sphinx-theme-0.5.1/test > copying test/test_theme.py -> quark-sphinx-theme-0.5.1/test > copying test/util.py -> quark-sphinx-theme-0.5.1/test > copying test/testdoc-html_rewrite/conf.py -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/contents.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_admonition.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_citation.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_footnote.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_literal_block.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_pre_block.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_sidebar.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_topic.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-html_rewrite/test_warning.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite > copying test/testdoc-theme/conf.py -> > quark-sphinx-theme-0.5.1/test/testdoc-theme > copying test/testdoc-theme/contents.rst -> > quark-sphinx-theme-0.5.1/test/testdoc-theme > Writing quark-sphinx-theme-0.5.1/setup.cfg > creating '/tmp/tmp-test-sdistwm15d_1k/quark-sphinx-theme-0.5.1.zip' and > adding 'quark-sphinx-theme-0.5.1' to it > adding 'quark-sphinx-theme-0.5.1' > adding 'quark-sphinx-theme-0.5.1/test' > adding 'quark-sphinx-theme-0.5.1/src' > adding 'quark-sphinx-theme-0.5.1/tox.ini' > adding 'quark-sphinx-theme-0.5.1/LICENSE' > adding 'quark-sphinx-theme-0.5.1/setup.py' > adding 'quark-sphinx-theme-0.5.1/README.rst' > adding 'quark-sphinx-theme-0.5.1/MANIFEST.in' > adding 'quark-sphinx-theme-0.5.1/setup.cfg' > adding 'quark-sphinx-theme-0.5.1/PKG-INFO' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-theme' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite' > adding 'quark-sphinx-theme-0.5.1/test/test_mixin.py' > adding 'quark-sphinx-theme-0.5.1/test/test_html_rewrite_features.py' > adding 'quark-sphinx-theme-0.5.1/test/test_sphinxversion.py' > adding 'quark-sphinx-theme-0.5.1/test/test_core.py' > adding 'quark-sphinx-theme-0.5.1/test/__init__.py' > adding 'quark-sphinx-theme-0.5.1/test/test_sdist.py' > adding 'quark-sphinx-theme-0.5.1/test/test_import.py' > adding 'quark-sphinx-theme-0.5.1/test/test_html_rewrite.py' > adding 'quark-sphinx-theme-0.5.1/test/util.py' > adding 'quark-sphinx-theme-0.5.1/test/test_theme.py' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-theme/conf.py' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-theme/contents.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_pre_block.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_sidebar.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/conf.py' > adding > 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_admonition.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_warning.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_citation.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/contents.rst' > adding > 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_literal_block.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_topic.rst' > adding 'quark-sphinx-theme-0.5.1/test/testdoc-html_rewrite/test_footnote.rst' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/_mixin.py' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/__init__.py' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/_lovelace.py' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/_sphinxversion.py' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/__version__.py' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/static' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/genindex.html' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/layout.html' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/theme.conf' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/genindex-single.html' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/domainindex.html' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/quark/static/quark.css_t' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/__init__.py' > adding 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_compat.py' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite/_setup_pre16.py' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite/literal_blocks.py' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite/__init__.py' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite/boxes.py' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite/_features.py' > adding > 'quark-sphinx-theme-0.5.1/src/quark_sphinx_theme/ext/html_rewrite/compat.py' > removing 'quark-sphinx-theme-0.5.1' (and everything under it) > test_sdist_contents > (test.test_sdist.TestSourceDistContents.test_sdist_contents) ... ok > test_sdist_no_pyc (test.test_sdist.TestSourceDistContents.test_sdist_no_pyc) > ... ok > test_ext (test.test_import.TestModuleImport.test_ext) ... ok > test_ext_html_compat (test.test_import.TestModuleImport.test_ext_html_compat) > ... ok > test_ext_html_rewrite > (test.test_import.TestModuleImport.test_ext_html_rewrite) ... ok > test_main_package (test.test_import.TestModuleImport.test_main_package) ... ok > test_mixin (test.test_import.TestModuleImport.test_mixin) ... ok > test_admonition (test.test_html_rewrite.TestHTMLCompatOutput.test_admonition) > ... ok > test_citation (test.test_html_rewrite.TestHTMLCompatOutput.test_citation) ... > FAIL > test_footnote (test.test_html_rewrite.TestHTMLCompatOutput.test_footnote) ... > FAIL > test_literal_block > (test.test_html_rewrite.TestHTMLCompatOutput.test_literal_block) ... ok > test_pre_block (test.test_html_rewrite.TestHTMLCompatOutput.test_pre_block) > ... ok > test_sidebar (test.test_html_rewrite.TestHTMLCompatOutput.test_sidebar) ... > FAIL > test_topic (test.test_html_rewrite.TestHTMLCompatOutput.test_topic) ... FAIL > test_warning (test.test_html_rewrite.TestHTMLCompatOutput.test_warning) ... ok > test_admonition > (test.test_html_rewrite.TestHTMLRewriteFeatures.test_admonition) ... ok > test_citation (test.test_html_rewrite.TestHTMLRewriteFeatures.test_citation) > ... FAIL > test_footnote (test.test_html_rewrite.TestHTMLRewriteFeatures.test_footnote) > ... FAIL > test_literal_block > (test.test_html_rewrite.TestHTMLRewriteFeatures.test_literal_block) ... ok > test_sidebar (test.test_html_rewrite.TestHTMLRewriteFeatures.test_sidebar) > ... FAIL > test_topic (test.test_html_rewrite.TestHTMLRewriteFeatures.test_topic) ... > FAIL > test_admonition > (test.test_html_rewrite.TestHTMLRewriteOutput.test_admonition) ... ok > test_citation (test.test_html_rewrite.TestHTMLRewriteOutput.test_citation) > ... FAIL > test_footnote (test.test_html_rewrite.TestHTMLRewriteOutput.test_footnote) > ... FAIL > test_literal_block > (test.test_html_rewrite.TestHTMLRewriteOutput.test_literal_block) ... ok > test_pre_block (test.test_html_rewrite.TestHTMLRewriteOutput.test_pre_block) > ... ok > test_sidebar (test.test_html_rewrite.TestHTMLRewriteOutput.test_sidebar) ... > FAIL > test_topic (test.test_html_rewrite.TestHTMLRewriteOutput.test_topic) ... FAIL > test_warning (test.test_html_rewrite.TestHTMLRewriteOutput.test_warning) ... > ok > test_quark_css (test.test_theme.TestThemeAllSettingsUnset.test_quark_css) ... > ok > test_contents_nav_elements > (test.test_theme.TestThemeDefaults.test_contents_nav_elements) ... ok > test_domainindex_nav_elements > (test.test_theme.TestThemeDefaults.test_domainindex_nav_elements) ... ok > test_genindex_a_nav_elements > (test.test_theme.TestThemeDefaults.test_genindex_a_nav_elements) ... ok > test_genindex_all_nav_elements > (test.test_theme.TestThemeDefaults.test_genindex_all_nav_elements) ... ok > test_genindex_nav_elements > (test.test_theme.TestThemeDefaults.test_genindex_nav_elements) ... ok > test_quark_css (test.test_theme.TestThemeDefaults.test_quark_css) ... ok > test_search_nav_elements > (test.test_theme.TestThemeDefaults.test_search_nav_elements) ... ok > test_contents_css_files > (test.test_theme.TestThemeExtraCss.test_contents_css_files) ... ok > test_quark_css (test.test_theme.TestThemeExtraCss.test_quark_css) ... ok > test_contents_nav_elements > (test.test_theme.TestThemeNoSidebar.test_contents_nav_elements) ... ok > test_domainindex_nav_elements > (test.test_theme.TestThemeNoSidebar.test_domainindex_nav_elements) ... ok > test_genindex_a_nav_elements > (test.test_theme.TestThemeNoSidebar.test_genindex_a_nav_elements) ... ok > test_genindex_all_nav_elements > (test.test_theme.TestThemeNoSidebar.test_genindex_all_nav_elements) ... ok > test_genindex_nav_elements > (test.test_theme.TestThemeNoSidebar.test_genindex_nav_elements) ... ok > test_quark_css (test.test_theme.TestThemeNoSidebar.test_quark_css) ... ok > test_search_nav_elements > (test.test_theme.TestThemeNoSidebar.test_search_nav_elements) ... ok > > ====================================================================== > FAIL: test_citation > (test.test_html_rewrite.TestHTMLCompatOutput.test_citation) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_footnote > (test.test_html_rewrite.TestHTMLCompatOutput.test_footnote) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_sidebar (test.test_html_rewrite.TestHTMLCompatOutput.test_sidebar) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_topic (test.test_html_rewrite.TestHTMLCompatOutput.test_topic) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_citation > (test.test_html_rewrite.TestHTMLRewriteFeatures.test_citation) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_footnote > (test.test_html_rewrite.TestHTMLRewriteFeatures.test_footnote) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_sidebar > (test.test_html_rewrite.TestHTMLRewriteFeatures.test_sidebar) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_topic (test.test_html_rewrite.TestHTMLRewriteFeatures.test_topic) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_citation > (test.test_html_rewrite.TestHTMLRewriteOutput.test_citation) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_footnote > (test.test_html_rewrite.TestHTMLRewriteOutput.test_footnote) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_sidebar (test.test_html_rewrite.TestHTMLRewriteOutput.test_sidebar) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ====================================================================== > FAIL: test_topic (test.test_html_rewrite.TestHTMLRewriteOutput.test_topic) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/<<PKGBUILDDIR>>/test/util.py", line 159, in wrap2 > raise AssertionError('no elements') > AssertionError: no elements > > ---------------------------------------------------------------------- > Ran 61 tests in 1.628s > > FAILED (failures=12) > Test failed: <unittest.runner.TextTestResult run=61 errors=0 failures=12> > error: Test failed: <unittest.runner.TextTestResult run=61 errors=0 > failures=12> > E: pybuild pybuild:388: test: plugin distutils failed with: exit code=1: > python3.11 setup.py test > dh_auto_test: error: pybuild --test -i python{version} -p 3.11 returned exit > code 13 The full build log is available from: http://qa-logs.debian.net/2023/07/30/exp/quark-sphinx-theme_0.5.1-3_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. Some notable changes in Sphinx 6 and Sphinx 7: - Sphinx no longer includes jquery.js and underscore.js by default. Please use python3-sphinxcontrib.jquery package if you are using a custom template and it still needs jquery. - The setup.py build_sphinx command was removed. Please instead call sphinx-build or "python3 -m sphinx" directly. - For packages using the extlinks extension, the caption should contain exactly one "%s" placeholder (if caption is not None). 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.20.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=sphinx7.1;[email protected] or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=sphinx7.1&[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

