summaryrefslogtreecommitdiff
path: root/math/py-numarray/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2017-01-01Add python-3.6 to incompatible versions.wiz1-2/+2
2016-07-09Remove python33: adapt all packages that refer to it.wiz1-2/+2
2015-12-05Extend PYTHON_VERSIONS_INCOMPATIBLE to 35adam1-2/+2
2015-01-27use the Accelerate framework on Darwin instead of the obsolete vecLibdbj1-3/+2
2014-05-09Mark packages that are not ready for python-3.3 also not ready for 3.4,wiz1-2/+2
until proven otherwise.
2014-01-25Update HOMEPAGE. Mark as not ready for python-3.x (use py-numpy there).wiz1-3/+4
2012-09-11"user-destdir" is default these daysasau1-3/+1
2011-10-25register egg-info.obache1-4/+3
Bump PKGREVISION.
2008-06-12Add DESTDIR support.joerg1-1/+3
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg1-2/+1
- 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-12Convert to use PLIST_VARS instead of manually passing "@comment "jlam1-4/+3
through PLIST_SUBST to the plist module.
2006-10-17update to 1.5.2drochner1-3/+6
This is a very modest release which primarily consists of bug fixes to numarray's implementation of the numpy array interface.
2006-03-08Let the package find BLAS routines on Mac OS X. This makes the package buildminskim1-1/+8
on Darwin.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-15update to 1.5.1drochner1-3/+3
changes: -fix a NumArray Operator Optimization Bug -Better NumPy dtype Support. -more bugfixes
2006-02-07update to 1.5drochner1-4/+3
changes: -better interoperability with py-Numeric and scipy (uses "scipy newcore") -bugfixes -speed improvements
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-10-21update to 1.3.3drochner1-3/+3
changes: -many bugfixes -code cleanup, speedup
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-09Update py-numarray to version 1.1.1markd1-4/+4
Support Python 2.4 1.1.1 changes: numarray-1.1.1 is a bugfix release to numarray-1.1. Notable bugs fixed include memory leaks in matrixmultiply and comparison ufuncs. 1.1 changes: I. ENHANCEMENTS CharArray eval() sped up Document memmap.py (memory mapping) Unsigned int type support limited Add kroenecker product II. BUGS FIXED / CLOSED max.reduce of byteswapped array numeric compatibility byteoffset matrixmultiply (a,b) leaves b transposed random_array.randint exceeds boundaries buffer not aligned on 8 byte boundary (Windows-98 broken) Object Array repr for >1000 elements Invalid sequences errors Segfault in array element deletion Incorrect handling of overlapping assignments in Numarray Weirdness with 'new' method searchsorted bug and fix randint bug fix patch a.is_c_array() mixed int/bool results argsort of string arrays III. CAUTIONS 1. This release is binary incompatible with numarray-1.0. Writers of C-extensions which directly reference the byteoffset field of the PyArrayObject should be aware that the data pointer is now the sum of byteoffset and the buffer base pointer. All C extensions which use the numarray C-API must be recompiled. This incompatibility was an unfortunate consequence of the fix for "numeric compatibility byteoffset".
2005-01-23Build Python with thread support by default and turn the existingrecht1-2/+2
python*-pth packages into meta-packages which will install the non-pth packages. Bump PKGREVISIONs on the non-pth versions to propagate the thread change, but leave the *-pth versions untouched to not affect existing installations. Sync all PYTHON_VERSIONS_AFFECTED lines in package Makefiles.
2004-07-09update to 1.0recht1-8/+8
important changes: - Ports of Numeric functions A bunch of Numeric functions were ported to numarray in the new libnumeric module. To get these import from numarray.numeric. Most notable among these are put, putmask, take, argmin, and argmax. Also added were sort, argsort, concatenate, repeat and resize. These are independent ports/implementations in C done for the purpose of best Numeric compatibility and small array performance. The numarray versions, which handle additional cases, still exist and are the default in numarray proper. - Faster matrix multiply The setup for numarray's matrix multiply was moved into C-code. This makes it faster for small matrices. - bug fixes For a complete list of changes see: http://sourceforge.net/project/shownotes.php?release_id=250453
2004-04-21import the numarray-0.9 Python extension - a reimplemantation ofdrochner1-0/+18
py-Numeric