File: no-network-access-during-doc-build.patch

package info (click to toggle)
python-logutils 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 336 kB
  • ctags: 378
  • sloc: python: 1,921; makefile: 84
file content (17 lines) | stat: -rw-r--r-- 717 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Do not access network when building docs
 The upstream conf.py is using sphinx.ext.intersphinx, this patch removes it.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2014-01-09

--- python-logutils-0.3.3.orig/doc/conf.py
+++ python-logutils-0.3.3/doc/conf.py
@@ -26,7 +26,7 @@ sys.path.append(os.path.abspath('..'))
 
 # 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']