diff options
author | Sam James <sam@gentoo.org> | 2022-03-22 00:11:09 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-22 00:27:05 +0000 |
commit | 8023d110541af97e459c16fef950be57aada3292 (patch) | |
tree | e601c7f37128457091d0373f253b8f9d031339db /mail-client/alot/files | |
parent | mail-client/alot: add 0.10 (diff) | |
download | gentoo-8023d110541af97e459c16fef950be57aada3292.tar.gz gentoo-8023d110541af97e459c16fef950be57aada3292.tar.bz2 gentoo-8023d110541af97e459c16fef950be57aada3292.zip |
mail-client/alot: use PEP 517; avoid network access during build; sync live
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mail-client/alot/files')
-rw-r--r-- | mail-client/alot/files/alot-0.10-no-intersphinx-docs.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mail-client/alot/files/alot-0.10-no-intersphinx-docs.patch b/mail-client/alot/files/alot-0.10-no-intersphinx-docs.patch new file mode 100644 index 000000000000..6cda5071e226 --- /dev/null +++ b/mail-client/alot/files/alot-0.10-no-intersphinx-docs.patch @@ -0,0 +1,23 @@ +Needs network access. +--- a/docs/source/api/conf.py ++++ b/docs/source/api/conf.py +@@ -56,7 +56,7 @@ from alot import __version__, __author__ + # Add any Sphinx extension module names here, as strings. They can be + # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom + # ones. +-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'] ++extensions = ['sphinx.ext.autodoc'] + + # Add any paths that contain templates here, relative to this directory. + templates_path = ['_templates'] +--- a/docs/source/conf.py ++++ b/docs/source/conf.py +@@ -16,7 +16,7 @@ needs_sphinx = '1.3' # for autodoc_mock_imports setting below + + # Add any Sphinx extension module names here, as strings. They can be + # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'] ++extensions = ['sphinx.ext.autodoc'] + + # autodoc tweaks + autodoc_mock_imports = [ |