diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-11-17 09:58:54 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-11-17 10:09:41 +0100 |
commit | 0ded5d88b1b3ba0446e23bc0296ebe675a45b62a (patch) | |
tree | 842abaee368ee367f63acc5ecca090af706de7c3 /app-admin | |
parent | b720951f73de6b176136dbb8f5f4fdc9c4f705d2 (diff) | |
download | gentoo-0ded5d88b1b3ba0446e23bc0296ebe675a45b62a.tar.gz gentoo-0ded5d88b1b3ba0446e23bc0296ebe675a45b62a.tar.xz |
app-admin/ansible: Fix man page generation for current HEAD
thanks Lik reporting this issue
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/ansible/ansible-9999.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app-admin/ansible/ansible-9999.ebuild b/app-admin/ansible/ansible-9999.ebuild index 175ebc5dcfb..4284a69a020 100644 --- a/app-admin/ansible/ansible-9999.ebuild +++ b/app-admin/ansible/ansible-9999.ebuild @@ -6,7 +6,7 @@ EAPI=5 PYTHON_COMPAT=( python2_7 ) -inherit distutils-r1 git-r3 readme.gentoo +inherit distutils-r1 eutils git-r3 readme.gentoo DESCRIPTION="Radically simple deployment, model-driven configuration management, and command execution framework" HOMEPAGE="http://ansible.com/" @@ -43,6 +43,13 @@ python_test() { nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die } +python_compile_all() { + local _man + for _man in ansible{,-{galaxy,playbook,pull,vault}}; do + a2x -f manpage docs/man/man1/${_man}.1.asciidoc.in || die "Failed generating man page (${_man})" + done +} + python_install_all() { EXAMPLES=( examples ) distutils-r1_python_install_all |