From 2ff009d09fb46850c9515ce152046b23d7f9d9a8 Mon Sep 17 00:00:00 2001
From: Antoine Musso <hashar@free.fr>
Date: Fri, 31 Oct 2014 11:44:54 +0100
Subject: [PATCH] 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
---
 setup.cfg | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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