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 2825B1388C1 for ; Thu, 26 Nov 2015 10:26:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70CD421C02D; Thu, 26 Nov 2015 10:26:09 +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 0280A21C02D for ; Thu, 26 Nov 2015 10:26:08 +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 B9BDC33BE19 for ; Thu, 26 Nov 2015 10:26:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44D60B5D for ; Thu, 26 Nov 2015 10:26:05 +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: <1448533561.81028e7bec0d02e1a25c566f74d78376d2441f2d.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-0.17.1.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 81028e7bec0d02e1a25c566f74d78376d2441f2d X-VCS-Branch: master Date: Thu, 26 Nov 2015 10:26:05 +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: 8a928a4c-4480-4d0c-b2b0-ad6b24af8476 X-Archives-Hash: 1fae0e0d1fc73194edcb795ee4f0350e commit: 81028e7bec0d02e1a25c566f74d78376d2441f2d Author: Justin Lecher gentoo org> AuthorDate: Thu Nov 26 10:05:44 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Nov 26 10:26:01 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81028e7b dev-python/pandas: Use virtualx during doc building Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=566756 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> dev-python/pandas/pandas-0.17.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/pandas/pandas-0.17.1.ebuild b/dev-python/pandas/pandas-0.17.1.ebuild index 27eb129..8fd49dd 100644 --- a/dev-python/pandas/pandas-0.17.1.ebuild +++ b/dev-python/pandas/pandas-0.17.1.ebuild @@ -7,6 +7,8 @@ EAPI=5 PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) PYTHON_REQ_USE="threads(+)" +VIRTUALX_REQUIRED="manual" + inherit distutils-r1 eutils flag-o-matic virtualx DESCRIPTION="Powerful data structures for data analysis and statistics" @@ -63,6 +65,7 @@ DEPEND="${MINIMAL_DEPEND} dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/cython-0.19.1[${PYTHON_USEDEP}] doc? ( + ${VIRTUALX_DEPEND} dev-python/beautifulsoup:4[${PYTHON_USEDEP}] dev-python/html5lib[${PYTHON_USEDEP}] dev-python/ipython[${PYTHON_USEDEP}] @@ -79,6 +82,7 @@ DEPEND="${MINIMAL_DEPEND} x11-misc/xclip ) test? ( + ${VIRTUALX_DEPEND} ${RECOMMENDED_DEPEND} ${OPTIONAL_DEPEND} dev-python/beautifulsoup:4[${PYTHON_USEDEP}] @@ -115,9 +119,10 @@ python_compile_all() { # To build docs the need be located in $BUILD_DIR, # else PYTHONPATH points to unusable modules. if use doc; then + VIRTUALX_COMMAND="${EPYTHON}" cd "${BUILD_DIR}"/lib || die cp -ar "${S}"/doc . && cd doc || die - LANG=C PYTHONPATH=. "${EPYTHON}" make.py html || die + LANG=C PYTHONPATH=. virtualmake make.py html || die fi }