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 364A813888F for ; Wed, 21 Oct 2015 13:42:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE5AE21C05F; Wed, 21 Oct 2015 13:41:32 +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 6F9F021C05E for ; Wed, 21 Oct 2015 13:41:31 +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 280D2340931 for ; Wed, 21 Oct 2015 13:41:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF6351552 for ; Wed, 21 Oct 2015 13:41:26 +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: <1445434824.6102281775b7a5df59baf5886ea6f5fdfaad8350.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.0.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6102281775b7a5df59baf5886ea6f5fdfaad8350 X-VCS-Branch: master Date: Wed, 21 Oct 2015 13:41:26 +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: d671b9a8-2d29-42b1-a0b7-de523ca3e531 X-Archives-Hash: 9356af2541564779b0e91e80baab4cb9 commit: 6102281775b7a5df59baf5886ea6f5fdfaad8350 Author: Justin Lecher gentoo org> AuthorDate: Wed Oct 21 06:59:59 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Oct 21 13:40:24 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61022817 dev-python/pandas: Add python3.5 support * Use PYTHON_USEDEP correctly * Don't set HAME=. for tests GitHub: pydata/pandas/11297 pydata/pandas/11298 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pandas/pandas-0.17.0.ebuild | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/dev-python/pandas/pandas-0.17.0.ebuild b/dev-python/pandas/pandas-0.17.0.ebuild index 96b90f0..fd2ce8e 100644 --- a/dev-python/pandas/pandas-0.17.0.ebuild +++ b/dev-python/pandas/pandas-0.17.0.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4} ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 eutils flag-o-matic virtualx @@ -39,14 +39,13 @@ DEPEND="${CDEPEND} dev-python/lxml[${PYTHON_USEDEP}] dev-python/matplotlib[${PYTHON_USEDEP}] >=dev-python/openpyxl-1.6.1[${PYTHON_USEDEP}] - dev-python/openpyxl[${PYTHON_USEDEP}] >=dev-python/pytables-3.0.0[${PYTHON_USEDEP}] dev-python/pytz[${PYTHON_USEDEP}] dev-python/rpy[${PYTHON_USEDEP}] sci-libs/scipy[${PYTHON_USEDEP}] >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}] - dev-python/xlrd[$(python_gen_usedep 'python2_7')] - dev-python/xlwt[$(python_gen_usedep 'python2_7')] + dev-python/xlrd[${PYTHON_USEDEP}] + dev-python/xlwt[${PYTHON_USEDEP}] x11-misc/xclip ) test? ( @@ -66,8 +65,8 @@ RDEPEND="${CDEPEND} dev-python/pytz[${PYTHON_USEDEP}] sci-libs/scipy[${PYTHON_USEDEP}] excel? ( - dev-python/xlrd[$(python_gen_usedep 'python2_7')] - dev-python/xlwt[$(python_gen_usedep 'python2_7')] + dev-python/xlrd[${PYTHON_USEDEP}] + dev-python/xlwt[${PYTHON_USEDEP}] || ( dev-python/xlsxwriter[${PYTHON_USEDEP}] >=dev-python/openpyxl-1.6.1[${PYTHON_USEDEP}] @@ -85,6 +84,11 @@ python_prepare_all() { # Prevent un-needed download during build sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/source/conf.py || die + # https://github.com/pydata/pandas/issues/11299 + sed \ + -e 's:testOdArray:disable:g' \ + -i pandas/io/tests/test_json/test_ujson.py || die + distutils-r1_python_prepare_all } @@ -103,7 +107,7 @@ python_test() { [[ -n "${FAST_PANDAS}" ]] && test_pandas+=' and not slow' pushd "${BUILD_DIR}"/lib > /dev/null VIRTUALX_COMMAND="nosetests" - PYTHONPATH=. MPLCONFIGDIR=. HOME=. \ + PYTHONPATH=. MPLCONFIGDIR=. \ virtualmake --verbosity=3 -A "${test_pandas}" pandas popd > /dev/null }