Package: sphinx / 1.8.3-2
Metadata
Package | Version | Patches format |
---|---|---|
sphinx | 1.8.3-2 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
disable_js_version_check.diff | (download) |
tests/test_theming.py |
1 1 + 0 - 0 ! |
disable a test that checks versions of js libraries |
no_snowballstemmer.diff | (download) |
Sphinx.egg-info/requires.txt |
1 0 + 1 - 0 ! |
replace snowballstemmer usage with pystemmer The snowballstemmer module uses PyStemmer (bindings for libstemmer_c) when it is available, and falls back to its own pure Python implementation otherwise. In Debian the snowballstemmer module is not packaged, so we can use PyStemmer directly. |
skip_tests_network.diff | (download) |
tests/test_build_latex.py |
1 1 + 0 - 0 ! |
skip linkcheck tests that require network access |
no_require_websupport.diff | (download) |
setup.py |
2 1 + 1 - 0 ! |
move sphinxcontrib-websupport to extras_require |
no_external_css.diff | (download) |
doc/_themes/sphinx13/layout.html |
2 0 + 2 - 0 ! |
don't use google fonts to avoid privacy breach. |
no_require_setuptools.diff | (download) |
setup.py |
1 0 + 1 - 0 ! |
remove setuptools from install_requires It was added there because the entry points use pkg_resources module, but it is provided in a separate package in Debian, pulling setuptools itself is not needed. |
no_external_image.diff | (download) |
doc/_templates/indexsidebar.html |
1 0 + 1 - 0 ! |
do not use external image in the documentation template |
python2_tests_import_hack.diff | (download) |
tests/test_ext_math.py |
1 1 + 0 - 0 ! |
make test_math_compat pass by adding sphinx.ext.mathbase import If this module is not in sys.modules cache before the chdir() call in eval_config_file(), Python 2 will try to load sphinx/ext/mathbase.py file relative to the new working directory, not by absolute path. This problem does not happen with Python 3. |
python2_test_get_module_source.diff | (download) |
tests/test_util.py |
3 2 + 1 - 0 ! |
make test_get_module_source() pass on python 2 In Python < 3.4, module.__path__ can be relative path when the module is loaded from the current directory (not from site-packages). However, get_module_source() makes the path absolute, which caused this test to fail. |