docs: Make the build reproducible
By setting today's date to the current year, the manpage output doesn't vary with the day the manpage was built. Having reproducible builds is a goal for Debian stretch.
This commit is contained in:
parent
f6a86a0f5c
commit
6a2b9f9896
@ -105,6 +105,9 @@ from mopidy.utils.versioning import get_version
|
|||||||
release = get_version()
|
release = get_version()
|
||||||
version = '.'.join(release.split('.')[:2])
|
version = '.'.join(release.split('.')[:2])
|
||||||
|
|
||||||
|
# To make the build reproducible, avoid using today's date in the manpages
|
||||||
|
today = '2015'
|
||||||
|
|
||||||
exclude_trees = ['_build']
|
exclude_trees = ['_build']
|
||||||
|
|
||||||
pygments_style = 'sphinx'
|
pygments_style = 'sphinx'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user