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 C0FB158973 for ; Sat, 23 Jan 2016 22:27:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8F1AE0835; Sat, 23 Jan 2016 22:27:56 +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 845C6E0835 for ; Sat, 23 Jan 2016 22:27:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38E20340894 for ; Sat, 23 Jan 2016 22:27:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1392CB3 for ; Sat, 23 Jan 2016 22:27:51 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1453588063.c07480a826d95865be9efdb79372d5227aef9dae.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychroot/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pychroot/pychroot-9999.ebuild X-VCS-Directories: dev-python/pychroot/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: c07480a826d95865be9efdb79372d5227aef9dae X-VCS-Branch: master Date: Sat, 23 Jan 2016 22:27:51 +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: 509ff981-2dfa-4474-82ab-d8eeabb99b4c X-Archives-Hash: 983d827bf94cee841989c718b01182f1 commit: c07480a826d95865be9efdb79372d5227aef9dae Author: Tim Harder gentoo org> AuthorDate: Sat Jan 23 22:27:00 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Jan 23 22:27:43 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c07480a8 dev-python/pychroot: simplify man pages build/install dev-python/pychroot/pychroot-9999.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-python/pychroot/pychroot-9999.ebuild b/dev-python/pychroot/pychroot-9999.ebuild index 86f99b9..c35e8b9 100644 --- a/dev-python/pychroot/pychroot-9999.ebuild +++ b/dev-python/pychroot/pychroot-9999.ebuild @@ -34,7 +34,7 @@ DEPEND="${RDEPEND} [[ ${PV} == *9999 ]] && DEPEND+=" dev-python/sphinx[${PYTHON_USEDEP}]" python_compile_all() { - [[ ${PV} == *9999 ]] && emake -C doc man + [[ ${PV} == *9999 ]] && esetup.py build_man } python_test() { @@ -42,10 +42,7 @@ python_test() { } python_install_all() { + local DOCS=( NEWS.rst README.rst ) + distutils-r1_python_install install_man distutils-r1_python_install_all - if [[ ${PV} == *9999 ]]; then - emake -C doc PREFIX=/usr DESTDIR="${D}" install_man - else - doman man/* - fi }