summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-10-31 11:44:54 +0100
committerAntoine Musso <hashar@free.fr>2015-03-14 13:40:09 +0100
commit2ff009d09fb46850c9515ce152046b23d7f9d9a8 (patch)
tree3d0088de6ce301931cccf7571715115d56fe8089
parent80f7cd2c0aaeecf5ba3d1911cba995e3e40cb2b8 (diff)
downloadgit-review-2ff009d09fb46850c9515ce152046b23d7f9d9a8.tar.gz
pbr should install the manpage
The manpage is no more installed when invoking 'python setup.py install' since the pbr migration (d73c473 https://review.openstack.org/35486/ ). Digging in pbr code, I eventually found out the setup.cfg file needs to list the manpages to be installed (pbr.manpages). The feature has been introduced in pbr 0.5.7. Closes-Bug: 1387174 Change-Id: I9105cff65e830ec2b7800311ed400707feb96a77
-rw-r--r--setup.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index c37827d..0172e4e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -36,4 +36,6 @@ build-dir = doc/build
all_files = 1
[pbr]
-warnerrors = True \ No newline at end of file
+manpages =
+ git-review.1
+warnerrors = True