Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/
Date: Tue, 30 Aug 2016 23:42:43
Message-Id: 1472600539.a057d53552e566121889a566a862768e909d4d03.floppym@gentoo
1 commit: a057d53552e566121889a566a862768e909d4d03
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 23:42:19 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 23:42:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a057d535
7
8 dev-python/numpy: disable "fix" for bug 590464
9
10 It's not clear what is creating the pyc files, and this is a pretty bad
11 hack around it.
12
13 Package-Manager: portage-2.3.0_p22
14
15 dev-python/numpy/numpy-1.11.1.ebuild | 16 ++++++++--------
16 1 file changed, 8 insertions(+), 8 deletions(-)
17
18 diff --git a/dev-python/numpy/numpy-1.11.1.ebuild b/dev-python/numpy/numpy-1.11.1.ebuild
19 index 6ac6c96..720e6d0 100644
20 --- a/dev-python/numpy/numpy-1.11.1.ebuild
21 +++ b/dev-python/numpy/numpy-1.11.1.ebuild
22 @@ -114,14 +114,14 @@ python_prepare_all() {
23 # of being bytecode compiled as a proper subdir package.
24 # We trick the buildsystem into accepting it as a bytecode
25 # package by adding a setup.py and an empty __init__.py
26 - cp numpy/{compat/setup.py,core/tests} || die
27 - touch numpy/core/tests/__init__.py || die
28 - sed \
29 - -e 's:compat:tests:' \
30 - -i numpy/core/tests/setup.py || die
31 - sed \
32 - -e "s:config\.add_data_dir('tests'):config\.add_subpackage('tests'):" \
33 - -i numpy/core/setup.py || die
34 + #cp numpy/{compat/setup.py,core/tests} || die
35 + #touch numpy/core/tests/__init__.py || die
36 + #sed \
37 + # -e 's:compat:tests:' \
38 + # -i numpy/core/tests/setup.py || die
39 + #sed \
40 + # -e "s:config\.add_data_dir('tests'):config\.add_subpackage('tests'):" \
41 + # -i numpy/core/setup.py || die
42
43 distutils-r1_python_prepare_all
44 }