NumPy is a general-purpose array-processing package designed to efficiently manipulate large multi-dimensional arrays of arbitrary records without sacrificing too much speed for small multi-dimensional arrays. NumPy is built on the Numeric code base and adds features introduced by numarray as well as an extended C-API and the ability to create arrays of arbitrary type. There are also basic facilities for discrete fourier transform, basic linear algebra and random number generation. Pkgsrc issue: if the package build happens to find a fortran it prefers over the one pkgsrc is using it will try to use it and the wrong thing will happen.
13 lines
479 B
Text
13 lines
479 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2008/12/19 22:04:36 markd Exp $
|
|
|
|
--- numpy/distutils/fcompiler/__init__.py.orig 2008-06-04 23:26:41.000000000 +1200
|
|
+++ numpy/distutils/fcompiler/__init__.py
|
|
@@ -690,7 +690,7 @@ _default_compilers = (
|
|
('irix.*', ('mips','gnu','gnu95',)),
|
|
('aix.*', ('ibm','gnu','gnu95',)),
|
|
# os.name mappings
|
|
- ('posix', ('gnu','gnu95',)),
|
|
+ ('posix', ('gnu','gnu95','g95',)),
|
|
('nt', ('gnu','gnu95',)),
|
|
('mac', ('gnu','gnu95',)),
|
|
)
|