Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pyfftw/
Date: Wed, 03 Jun 2015 10:21:40
Message-Id: 1432988352.cdd600c8be5fd90db0e2be9f49e2d1414beaab07.jlec@gentoo
1 commit: cdd600c8be5fd90db0e2be9f49e2d1414beaab07
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sat May 30 12:19:12 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat May 30 12:19:12 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=cdd600c8
7
8 dev-python/pyfftw: Copy missing data in python_test() phase
9
10 Package-Manager: portage-2.2.18
11
12 dev-python/pyfftw/pyfftw-9999.ebuild | 7 ++++---
13 1 file changed, 4 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/pyfftw/pyfftw-9999.ebuild b/dev-python/pyfftw/pyfftw-9999.ebuild
16 index ff5aea1..1d34389 100644
17 --- a/dev-python/pyfftw/pyfftw-9999.ebuild
18 +++ b/dev-python/pyfftw/pyfftw-9999.ebuild
19 @@ -30,11 +30,12 @@ RDEPEND="
20 >=sci-libs/fftw-3.3.3
21 >=dev-python/cython-0.19.1[${PYTHON_USEDEP}]
22 "
23 -DEPEND="${RDEPEND}
24 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
25 - "
26 +DEPEND="${RDEPEND}"
27
28 python_test() {
29 distutils_install_for_testing
30 + cd "${TEST_DIR}"/lib || die
31 + cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
32 + cp -r "${S}"/test "${TEST_DIR}"/lib/ || die
33 esetup.py test || die
34 }