Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package flycheck This minor release contains bugfix for #929232. The fix disables two sphinx extentions used during the build of the documentation for flycheck. If enabled, they can lead to failure of build process as described in #929232. (the debdiff against the package in testing is attached) unblock flycheck/31-3
diff -Nru flycheck-31/debian/changelog flycheck-31/debian/changelog --- flycheck-31/debian/changelog 2019-01-03 20:20:26.000000000 +0100 +++ flycheck-31/debian/changelog 2019-05-21 22:23:38.000000000 +0200 @@ -1,3 +1,12 @@ +flycheck (31-3) unstable; urgency=medium + + * Team upload. + + [ Denis Danilov ] + * disable intersphinx and info extensions (Closes: #929232) + + -- Sean Whitton <spwhit...@spwhitton.name> Tue, 21 May 2019 13:23:38 -0700 + flycheck (31-2) unstable; urgency=medium * enable GitLab CI at salsa.d.o diff -Nru flycheck-31/debian/patches/disable-intersphinx-and-info-extensions.patch flycheck-31/debian/patches/disable-intersphinx-and-info-extensions.patch --- flycheck-31/debian/patches/disable-intersphinx-and-info-extensions.patch 1970-01-01 01:00:00.000000000 +0100 +++ flycheck-31/debian/patches/disable-intersphinx-and-info-extensions.patch 2019-05-21 22:23:38.000000000 +0200 @@ -0,0 +1,32 @@ +From: Denis Danilov <danilovde...@yandex.ru> +Date: Tue, 21 May 2019 20:12:52 +0200 +Subject: disable intersphinx and info extensions + +The intersphinx and info extensions use network during the build. The info +extension may even fail the build if network is available (Bug #929232). + +Forwarded: not-needed +--- + doc/conf.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/doc/conf.py b/doc/conf.py +index 968a7a6..5aa7d36 100644 +--- a/doc/conf.py ++++ b/doc/conf.py +@@ -33,13 +33,13 @@ ON_RTD = os.environ.get('READTHEDOCS', None) == 'True' + + needs_sphinx = '1.3' + extensions = [ +- 'sphinx.ext.intersphinx', ++ #'sphinx.ext.intersphinx', + 'sphinx.ext.extlinks', + 'sphinx.ext.todo', + # Domain for Emacs Lisp + 'elisp', + # Cross-references to info nodes +- 'info' ++ #'info' + ] + + # Project metadata diff -Nru flycheck-31/debian/patches/series flycheck-31/debian/patches/series --- flycheck-31/debian/patches/series 2019-01-03 20:20:26.000000000 +0100 +++ flycheck-31/debian/patches/series 2019-05-21 22:23:38.000000000 +0200 @@ -3,3 +3,4 @@ disable-MELPA-tests.patch disable-rpmlint-test.patch disable-flaky-tests.patch +disable-intersphinx-and-info-extensions.patch