diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-04-02 01:38:43 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-04-02 01:38:43 +0000 |
commit | 995be8e1516602687d0a55485c0588cbe67c1707 (patch) | |
tree | 147a11572f718f1ca9c86089792952c0e4b4ec17 /dev-python/numpy | |
parent | Fix syntax error in lib/Smokeping.pm (bug #506358 by mbe). (diff) | |
download | gentoo-2-995be8e1516602687d0a55485c0588cbe67c1707.tar.gz gentoo-2-995be8e1516602687d0a55485c0588cbe67c1707.tar.bz2 gentoo-2-995be8e1516602687d0a55485c0588cbe67c1707.zip |
Add python3.4. Add -fPIC to FFLAGS unconditionally to allow test suite to work.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/numpy')
-rw-r--r-- | dev-python/numpy/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/numpy/numpy-1.8.0-r1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-python/numpy/ChangeLog b/dev-python/numpy/ChangeLog index 44a29ebf1b9a..8138df4beab5 100644 --- a/dev-python/numpy/ChangeLog +++ b/dev-python/numpy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/numpy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/ChangeLog,v 1.234 2014/03/25 19:26:53 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/ChangeLog,v 1.235 2014/04/02 01:38:43 floppym Exp $ + + 02 Apr 2014; Mike Gilbert <floppym@gentoo.org> numpy-1.8.0-r1.ebuild: + Add python3.4. Add -fPIC to FFLAGS unconditionally to allow test suite to + work. 25 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org> numpy-1.8.0-r1.ebuild: More fixes to the site.cfg file generation diff --git a/dev-python/numpy/numpy-1.8.0-r1.ebuild b/dev-python/numpy/numpy-1.8.0-r1.ebuild index 096855d4d241..0d0278c4efc1 100644 --- a/dev-python/numpy/numpy-1.8.0-r1.ebuild +++ b/dev-python/numpy/numpy-1.8.0-r1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/numpy-1.8.0-r1.ebuild,v 1.13 2014/03/25 19:26:53 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/numpy-1.8.0-r1.ebuild,v 1.14 2014/04/02 01:38:43 floppym Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} ) FORTRAN_NEEDED=lapack @@ -99,8 +99,8 @@ python_prepare_all() { # only one fortran to link with: # linking with cblas and lapack library will force # autodetecting and linking to all available fortran compilers + append-fflags -fPIC if use lapack; then - append-fflags -fPIC NUMPY_FCONFIG="config_fc --noopt --noarch" # workaround bug 335908 [[ $(tc-getFC) == *gfortran* ]] && NUMPY_FCONFIG+=" --fcompiler=gnu95" |