Skip to content
This repository has been archived by the owner on Apr 10, 2018. It is now read-only.

Backport upstream patch to fix compatibility with Sphinx 1.3 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
buildbot (0.8.9-3) UNRELEASED; urgency=medium

* Backport upstream patch to fix compatibility with Sphinx 1.3
(closes: #787175).

-- Dmitry Shachnev <[email protected]> Sat, 15 Aug 2015 21:01:10 +0300

buildbot (0.8.9-2) unstable; urgency=medium

* Update Standards-Version to 3.9.6. No changes required
Expand Down
1 change: 1 addition & 0 deletions debian/patches/series
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ disable-sqlalchemy-version-check.diff
restart-single-instance.patch
exit-code.patch
upgrade-master.patch
sphinx13-show-urls.patch
20 changes: 20 additions & 0 deletions debian/patches/sphinx13-show-urls.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Description: change latex_show_urls config option to inline
Origin: upstream, https://github.com/buildbot/buildbot/commit/4bc42d2178607b1d
Last-Update: 2015-08-15

--- a/docs/conf.py
+++ b/docs/conf.py
@@ -214,8 +214,11 @@
# If true, show page references after internal links.
#latex_show_pagerefs = False

-# If true, show URL addresses after external links.
-latex_show_urls = True
+# Three possible values for this option (see sphinx config manual) are:
+# 1. 'no' – do not display URLs (default)
+# 2. 'footnote' – display URLs in footnotes
+# 3. 'inline' – display URLs inline in parentheses
+latex_show_urls = 'inline'

# Additional stuff for the LaTeX preamble.
#latex_preamble = ''