From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BB1D81384B4 for ; Tue, 17 Nov 2015 09:09:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16FBAE07D5; Tue, 17 Nov 2015 09:09:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B06F4E07D5 for ; Tue, 17 Nov 2015 09:09:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7727C3407D2 for ; Tue, 17 Nov 2015 09:09:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0D811074 for ; Tue, 17 Nov 2015 09:09:44 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447751381.0ded5d88b1b3ba0446e23bc0296ebe675a45b62a.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ansible/ansible-9999.ebuild X-VCS-Directories: app-admin/ansible/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0ded5d88b1b3ba0446e23bc0296ebe675a45b62a X-VCS-Branch: master Date: Tue, 17 Nov 2015 09:09:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 353a856a-5228-4331-855a-bd28744906cc X-Archives-Hash: 21d75cb6bb6e8d3f6ed9c4473ed7b049 commit: 0ded5d88b1b3ba0446e23bc0296ebe675a45b62a Author: Justin Lecher gentoo org> AuthorDate: Tue Nov 17 08:58:54 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Nov 17 09:09:41 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ded5d88 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 gentoo.org> app-admin/ansible/ansible-9999.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app-admin/ansible/ansible-9999.ebuild b/app-admin/ansible/ansible-9999.ebuild index 175ebc5..4284a69 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