Path to this page:
./
math/py-Numeric,
Adds multidimensional numeric arrays to Python
Branch: CURRENT,
Version: 24.2,
Package name: py25-Numeric-24.2,
Maintainer: tsarnaThe Numeric Extensions to Python (NumPy) give Python the number crunching
power of numeric languages like Matlab and IDL while maintaining all of the
advantages of the general-purpose programming language Python.
These extensions add two new object types to Python, and then include a
number of extensions that take advantage of these two new objects.
* Multidimensional Array Objects
+ Efficient arrays of homogeneous machine types
+ Arbitrary number of dimensions
+ Sophisticated structural operations
* Universal Function Objects
+ Supports mathematical functions on all python objects
+ Very efficient for Array Objects
* Simple interfaces to existing numerical libraries:
+ Linear Algebra (LAPACK)
+ Fourier Transforms (FFTPACK)
+ Random Numbers (RANLIB)
Required to run:[
lang/python25]
Master sites: (Expand)
SHA1: 72869ef80c12630a9a125ba10c96093b6ae16aff
RMD160: c9502db28663558c535e236392c9beddec9743bb
Filesize: 726.367 KB
Version history: (Expand)
- (2009-03-05) Updated to version: py25-Numeric-24.2
- (2007-03-21) Updated to version: py24-Numeric-24.2
- (2006-02-15) Updated to version: py23-Numeric-24.2
- (2006-02-06) Updated to version: py23-Numeric-23.7nb1
- (2005-10-05) Package added to pkgsrc.se, version py23-Numeric-23.7 (created)
CVS history: (Expand)
| 2009-06-14 20:05:51 by Joerg Sonnenberger | Files touched by this commit (88) |
Log message:
Remove @dirrm entries from PLISTs
|
| 2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
| 2009-03-20 18:30:14 by Joerg Sonnenberger | Files touched by this commit (42) |
Log message:
Include pyversion.mk include the protected part of the buildlink3.mk
files, not over and over again.
|
| 2009-03-05 19:51:33 by Joerg Sonnenberger | Files touched by this commit (53) |
Log message:
Remove PYBINMODULE. All it did was mark some packages as not available
on some platforms that lacked shared library support in the past. The
list hasn't been maintained at all and the gain is very limited, so just
get rid of it.
|
2008-04-25 22:39:14 by Joerg Sonnenberger | Files touched by this commit (170) |  |
Log message:
Update PYTHON_VERSIONS_COMPATIBLE
- assume that Python 2.4 and 2.5 are compatible and allow checking for
fallout.
- remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+
default. Modify the others to deal with the removals.
|
| 2008-04-16 14:18:26 by David Brownlee | Files touched by this commit (1) |
Log message:
PYTHON_VERSIONS_ACCEPTED+=25
|
| 2008-04-13 00:43:15 by Johnny C. Lam | Files touched by this commit (370) |
Log message:
Convert to use PLIST_VARS instead of manually passing "@comment "
through PLIST_SUBST to the plist module.
|
| 2007-12-27 15:07:25 by Joerg Sonnenberger | Files touched by this commit (2) |
Log message:
Never use setuptools to make builds consistent independent of whether
py-setuptools is present or not.
|