From 7420ea00339199294f5f76465d1b217417e54505 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 13 Jan 2016 01:18:07 +0100 Subject: [PATCH] sphinx configuration: fix to create a simple man page from usage docs --- docs/conf.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 882543a1f..72eb833ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -228,10 +228,12 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -#man_pages = [ -# ('man', 'borg', 'Borg', -# ['see "AUTHORS" file'], 1) -#] +man_pages = [ + ('usage', 'borg', + 'BorgBackup is a deduplicating backup program with optional compression and authenticated encryption.', + ['The Borg Collective (see AUTHORS file)'], + 1), +] extensions = ['sphinx.ext.extlinks', 'sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.viewcode']