pkgsrc/math
obache 37b7b1af4e Update py-Scientific to 2.8.
Based on PR#43282 by Wen Heping.

2.7.9 --> 2.7.10
----------------

Bug fixes:

- Removed all occurrences of "as" as a variable name for compatibility
  with Python 2.6.

- Installation without the netCDF module did not work.

Improvements:

- Vector.dyadicProduct() was replaced by a more efficient implementation.

- Scientific.IO.PDB: Atom objects now have a parent attribute whose
  value is the containing group.


2.7.8 --> 2.7.9
---------------

License change: ScientificPython is now distributed under the
CeCILL-C license, which is an adaptation of the LGPL to French
law. The previously used CeCILL license, similar to the GPL, was
considered too restrictive.

Bug fixes:

- MPI interfaces did not work correctly with NumPy and/or Python 2.5.

Improvements:

- Compilation script for mpipython works around a Python configuration
  bug under MacOS X.
- Docstrings have been cleaned up.

2.7.7 --> 2.7.8
---------------

Bug fixes:

- Due to a typo in Scientific.IO.PDBSpaceGroups, some space group
  names were not found in the space group table.

Improvements:

- Vector objects can now be multiplied with NumPy scalar objects
  (which is what you get when extracting numbers from NumPy
  arrays). Due to the way NumPy scalars handle multiplication, the
  result used to be an array rather than a Vector, which caused
  various applications to crash.

- The build procedure under Windows has been improved. It can
  generate a binary installer that includes the netCDF DLL,
  making ScientificPython independent of a netCDF installation.

2.7.6 --> 2.7.7
---------------

Bug fixes:

- Installation on Windows didn't work because the Unix maths libraries
  don't exist there.


Improvements:

- InterpolatingFunction and TensorField objects can represent
  periodic functions/fields.

- DistributedComputing: the watchdog period of slave processes is now
  a user-definable parameter.

- PDBSpaceGroups was simplified, making it shorter and faster to load.

- Scientific.N contains the array type object in the variable array_type.
  This makes it possible to write Pyrex modules using arrays in such a
  way that they always use the numeric module for which ScientificPython
  was compiled.


2.7.5 --> 2.7.6
---------------

Bug fixes:

- NumPy compatibility fixes.

- Pyro 3.6 compatibility fix in DistributedComputing.MasterSlave


2.7.4 --> 2.7.5
---------------

New features:

- Scaling, inversion, and shear transformations added to
  Geometry.Transformations

Improvements:

- PDB parser handles CRYST1, SCALEn and MTRIXn records
- Better identification of the Numerics package that is being used

Bug fixes:

- Scientific_affinitypropagation.c compiles with NumPy


2.7.3 --> 2.7.4
---------------

New features:

- New module Clustering.AffinityPropagation.
- New class BSP.ParRootSequence.

Bug fixes:

- Replaced float equality test in Functions.InterpolatingFunction
- Removed exception for order > 1 in Derivatives.DerivVar.__init__
- Fixed reading of non-string attributes from netCDF files.

Improvements:

- New methods getBinIndices and getBinCount in Statistics.Histogram.Histogram
- Physics.PhysicalQuantities: unit definitions added to doc string

2.7.2 --> 2.7.3
---------------

Improvements:

- Added multi-module setup for master-slave computations.
- More information available through task_manager.
- task_manager can start slave processes.

2.7.1 --> 2.7.2
---------------

Bug fixes:

- Scientific_netcdf would not compile with NumPy under Python 2.4
  because NumPy also defined Py_ssize_t.

2.7 --> 2.7.1
-------------

Improvements:

- NumPy compatibility. Scientific_netcdf was revised by hand.
  The Python code was run through numpy.oldnumeric.alter_code1 to
  identify the critical sections, which were then all handled in
  some way. It is possible that there are still incompatibilities
  of the kind that numpy.oldnumeric.alter_code1 cannot detect


2.5.12hg --> 2.7
----------------

New features:

- Subpackage Scientific.DistributedComputing for easy parallelization
  of independent tasks.

2.5.11 --> 2.5.12hg
-------------------

Bug fixes:

- VRML2 output would crash for scenes containing Line objects
- Pyrex implmentation of vector objects could crash instead of raising
  an exception in divide operations.
- Pyrex implmentation of vector objects would raise exceptions incorrectly
  under Python 2.5

Improvements:

- builds Macintosh packages with documentation and examples

2.5.10 --> 2.5.11
-----------------

Bug fixes:

- Pyrex implementation of vector objects raised exceptions in comparisons
- Pyrex implementation of vector objects did not accept negative indices
- Some object deletions during conversion to epydoc had to be reversed

Improvements:

- Two test suites

2.5.9 --> 2.5.10
----------------

Bug fixes:

- Fixed netCDF error handling

Improvements:

- Support for NumPy (not very well tested yet)
- Scientific.NumberDict more efficient

2.5.8 --> 2.5.9
---------------

Improvements:

- Scientifc.IO.NetCDF supports the new 64-bit data structures in Python 2.5
  (not yet tested on a 64-bit machine)
- Docstrings modified for use with Epydoc.

2.5.7 --> 2.5.8
---------------

Bug fixes:

- Syntax error in Scientific.IO.PDB
- Attribute deletion in netCDF file and variable objects caused a crash.

2.5.6 --> 2.5.7
----------------

Bug fixes:

- Tensor-vector multiplication was incorrect with the Pyrex implementation
  of vector objects.

2.5.5 --> 2.5.6
----------------

Bug fixes:

- Scientific.BSP.ParClass did not pass on __call__ and __getitem__
  to local class
- Scientific.BSP.ParClass: Class wrappers did not always return the right
  global object.

2.5.4 --> 2.5.5
----------------

Bug fixes:

- Scientific.IO.NetCDF.NetCDFVariable.assignValue() had incomplete error
  reporting. Some errors would not raise exceptions as required.


2.5.3 --> 2.5.4
----------------

Improvements:

- A "test" method on MPI request objects permits to check if data
  is available (thanks to Jakob Schiotz for this addition).

Bug fixes:

- The new Pyrex vector objects could not be pickled.

2.5.1 --> 2.5.3
----------------

Improvements:

- The class Scientific.Geometry.Vector has been reimplemented in Pyrex,
  yielding much faster vector operations. There is, however, the restriction
  that the vector elements must be of type "float". For the rare applications
  where this condition is not fulfilled (such as
  Scientific.Functions.Derivatives.DerivVector), the Python implementation
  remains accessible as Scientific.Geometry.VectorModule.Vector.

2.4.9 --> 2.5.1
----------------

Improvements:

- Vector and Tensor objects permit comparison with other types
  of objects (which always return False)
- Numarray can be used instead of Numeric as far as possible
  (see README for details)

2.4.7 --> 2.4.9:
----------------

Bug fixes:

- Integer array attributes caused a TypeError with recent versions of
  Numeric (that don't do silent casts from Long to Int any more).

Additions:

- Method "threeAngles" in Geometry.Transformation.Rotation.


2.4.6 --> 2.4.7:
----------------

Bug fixes:

- Scientific.BSP: alltrue() and anytrue() sometimes returned wrong results.

Additions:

- Scientific.Visualization.VMD can now correctly launch VMD under Windows
2010-05-29 03:18:54 +00:00
..
aamath Import aamath 0.3 as math/aamath. 2009-09-05 17:32:40 +00:00
abs Update HOMEPAGE and MASTER_SITES, set LICENSE (GNU GPL v.2). 2009-09-03 11:50:52 +00:00
admesh Fix broken homepage link 2009-09-13 23:53:07 +00:00
algae Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
antixls
aribas Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
bc Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
blas Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
blitz++ Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
calc calc is included in emacs>=22. 2009-08-05 08:20:48 +00:00
calcoo bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
capc-calc Update to calc 2.12.4.0. 2009-09-03 09:59:09 +00:00
cln update to 1.3.1 2010-04-13 17:22:09 +00:00
dcdflib.c Support staged installation. 2009-12-12 21:58:18 +00:00
dcdflib.f Support staged installation. 2009-12-12 21:58:18 +00:00
dfftpack Support staged installation. 2009-12-12 21:58:18 +00:00
dieharder destdir support 2009-11-30 17:53:58 +00:00
djbfft Take MAINTAINER. 2010-03-20 01:51:55 +00:00
eigen2 Update eigen2 to 2.0.4. 2009-08-04 21:13:30 +00:00
eispack Support staged installation. 2009-12-11 17:36:50 +00:00
ess PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
eukleides Not MAKE_JOBS_SAFE. 2009-07-16 14:32:49 +00:00
euler bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
extcalc update to 0.9.3 2010-05-20 17:48:59 +00:00
fftpack Support staged installation. 2009-12-12 19:43:41 +00:00
fftw Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
fftw2 Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
fftwf Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
fgmp dead mirror. fetch from backup. 2009-05-21 11:21:44 +00:00
fityk Changes 0.9.2: 2010-05-15 07:12:00 +00:00
fricas Update to FriCAS 1.0.9 2010-01-23 02:11:40 +00:00
galculator bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
gap Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gcalctool update to 2.28.2 2009-12-16 17:56:53 +00:00
geg Add DESTDIR support. 2008-06-20 01:09:05 +00:00
genius Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
glpk Changes 4.43: 2010-05-21 10:36:56 +00:00
gnumeric Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
gnumeric110 update to 0.10.3 2010-05-17 16:30:12 +00:00
gp-autpgrp Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gp-factint Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gp-fplsa Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gp-grape Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gp-grpconst Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gp-lag Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
grace Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
graphopt Support staged installation. 2009-12-11 17:47:28 +00:00
grpn Needs pkg-config. 2009-11-26 17:35:53 +00:00
gsl Update to 1.14: 2010-03-15 10:45:28 +00:00
gtklife Support staged installation. 2009-12-12 20:39:56 +00:00
itpp initial import of itpp-4.0.7 into the packages collection 2010-03-16 21:22:13 +00:00
kseg Set PREV_PKGPATH. 2010-03-14 16:37:07 +00:00
lapack Detect if the fortran compiler/libs have etime as an intrinsic or not instead 2010-03-17 21:47:11 +00:00
libffm Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
libmatheval Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
linpack Support staged installation. 2009-12-11 01:34:38 +00:00
ltm Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mapm Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mathomatic Update mathomatic to 14.5.5. 2009-09-22 02:05:50 +00:00
maxima Update to Maxima 5.21.1: 2010-05-07 03:16:06 +00:00
mcsim Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
meschach This one uses BSD Make scripts. 2009-12-11 17:09:51 +00:00
metis Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
minpack Support staged installation. 2009-12-11 18:10:56 +00:00
mpfr Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
mprime-bin Fix DESTDIR installation. Simplify. 2009-12-21 20:10:17 +00:00
mtl DESTDIR support 2010-02-04 14:51:44 +00:00
muparser MAKE_JOBS_SAFE=no 2009-12-12 12:27:33 +00:00
newmat Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 20:47:52 +00:00
nickle fix build issue with Sun Studio. It doesn't like void values as operators 2010-01-15 23:09:28 +00:00
ntl Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
octave Use BSD_INSTALL_LIB to install shared objects. 2010-04-24 20:58:36 +00:00
octave-forge Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
odepack Support staged installation. 2009-12-12 20:11:24 +00:00
openaxiom Dragonfly hack is no longer needed. 2009-12-16 01:58:08 +00:00
openfst Initial import of openfst-1.1 from pkgsrc-wip, packaged by Pierre 2009-11-03 17:53:44 +00:00
ordCalc Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
otter Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
p5-Excel-Template Import p5-Excel-Template version 0.31. 2008-10-20 22:41:15 +00:00
p5-Excel-Template-Plus Updating math/p5-Excel-Template-Plus from 0.04nb1 to 0.05 2010-03-10 17:39:31 +00:00
p5-Math-Base85 Give up MAINTAINER 2009-07-17 18:00:13 +00:00
p5-Math-BaseCnv Added math/p5-Math-BaseCnv version 1.4.75 2008-10-26 19:12:13 +00:00
p5-Math-Bezier Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Math-BigInt-GMP Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
p5-Math-BigInt-Pari Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
p5-Math-BigInteger Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Math-FFT Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Math-GMP Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
p5-Math-Interpolate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Math-MatrixReal Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Math-Pari Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
p5-Math-Random Update to 0.71: 2009-02-22 16:21:11 +00:00
p5-Math-Random-MT-Perl Updating math/p5-Math-Random-MT-Perl from 1.05 to 1.06 2009-09-12 21:14:22 +00:00
p5-Math-Round Initial import of math/p5-Math-Round, needed by upcoming graphics/circos. 2009-04-21 17:46:39 +00:00
p5-Math-VecStat Initial import of math/p5-Math-VecStat, needed by upcoming graphics/circos. 2009-04-21 17:47:10 +00:00
p5-Number-Compare Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Number-Latin Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Roman Update from version 1.22 to 1.23. 2009-02-22 13:21:32 +00:00
p5-Set-Crontab Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Set-Infinite Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Spreadsheet-ParseExcel Update from version 0.5500 to version 0.5700 (upstream 0.57) 2010-01-24 23:37:24 +00:00
p5-Spreadsheet-Read Updating math/p5-Spreadsheet-Read from 0.38 to 0.39 2010-03-16 22:41:56 +00:00
p5-Spreadsheet-ReadSXC Initial import of p5-Spreadsheet-ReadSXC version 0.20 in the NetBSD 2009-02-01 09:04:02 +00:00
p5-Spreadsheet-WriteExcel Updating math/p5-Spreadsheet-WriteExcel from 2.36 to 2.37 2010-02-23 11:21:55 +00:00
p5-Spreadsheet-XLSX Update p5-Spreadsheet-XLSX from version 0.10 to version 0.12 2009-11-10 12:14:55 +00:00
p5-Statistics-Descriptive Updating package for p5 module Statistics::Descriptive from 2.6 to 3.0100 2009-08-18 14:03:06 +00:00
pari Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
pari-galdata remove broken http mirror. 2010-04-17 16:11:08 +00:00
pear-Numbers_Roman Updaet pear-Numbers_Roman from 0.2.0 to 1.0.2. 2010-02-06 15:55:13 +00:00
pear-Numbers_Words Update pear-Numbers_Words package to 0.16.2. 2010-05-16 09:44:35 +00:00
php-bcmath bcmath extension bundled with PHP 5.3 needs a patch to build as an extension module, 2009-07-10 20:00:00 +00:00
prng Initial import of prng-3.0.2, packaged for wip by Wen Heping. 2010-02-19 13:56:53 +00:00
pspp Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
py-ephem Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-fpconst Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
py-mpmath Update py-mpmath to 0.14. 2010-02-08 11:54:25 +00:00
py-networkx Update py-networkx to 1.0.1. 2010-03-03 12:00:59 +00:00
py-numarray Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-Numeric Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-numpy Don't hardcode Python version number. This fixes the build with Python 2.6. 2010-04-25 00:02:20 +00:00
py-pytables use PYVERSSUFFIX, fixes Python!=2.5 2009-12-16 16:59:48 +00:00
py-rpy Deal with two digit R --version output. Still mark as broken because it 2010-02-15 16:32:20 +00:00
py-Scientific Update py-Scientific to 2.8. 2010-05-29 03:18:54 +00:00
py-Scientific-doc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-scipy Set LICENSE to modified-bsd. 2010-02-21 15:13:42 +00:00
py-sympy update to 0.6.6 2010-01-27 14:21:19 +00:00
qalculate update to 0.9.7 2010-04-13 17:25:22 +00:00
qalculate-bases Fix build after CLN update. Bump revision (autoconf dependency). 2009-09-06 15:24:38 +00:00
qalculate-currency Fix build after CLN update. Bump revision (autoconf dependency). 2009-09-06 15:24:38 +00:00
qalculate-gtk update to 0.9.7 2010-04-13 17:28:34 +00:00
qalculate-kde Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
qalculate-units Fix build after CLN update. Bump revision (autoconf dependency). 2009-09-06 15:40:49 +00:00
qhull Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
quadpack Support staged installation. 2009-12-12 21:58:18 +00:00
R Changes 2.11.0: 2010-05-06 07:33:40 +00:00
R-abind Fix homepage. 2008-10-13 11:30:50 +00:00
R-akima Update to the latest version of the module along with R update 2009-12-11 19:18:17 +00:00
R-CGIwithR Update R-CGIwithR to 0.72. 2008-10-13 11:12:52 +00:00
R-chron Update to the latest version of the module along with R update 2009-12-11 19:23:06 +00:00
R-circular Added USE_LANGUAGES 2009-12-11 19:25:33 +00:00
R-classInt A package for choosing univariate class intervals for mapping or other graphics 2009-12-11 19:11:00 +00:00
R-clim.pact Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-combinat Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-DAAG This should have been imported along with R-2.10.0; oops 2009-12-21 11:51:19 +00:00
R-date Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-e1071 Functions for latent class analysis, short time Fourier transform, fuzzy 2009-12-11 19:09:46 +00:00
R-gdata Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-genetics Update R-genetics to 1.3.4 2008-10-14 07:38:26 +00:00
R-geoR Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-GRASS Update to the latest version of the module along with R update 2009-12-11 19:14:36 +00:00
R-gstat Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-gtools Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-httpRequest Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-hwde Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-ISwR Update to the latest version of the module along with R update 2009-12-11 19:14:36 +00:00
R-lmm Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
R-mapproj Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-maps Update to the latest version of the module along with R update 2009-12-11 19:26:24 +00:00
R-mvtnorm Update to the latest version of the module along with R update 2009-12-11 19:36:55 +00:00
R-ncdf Fix homepage. 2008-10-14 05:42:14 +00:00
R-PHYLOGR Update R-PHYLOGR to 1.0.6 2008-10-13 11:24:40 +00:00
R-pixmap Update to the latest version of the module along with R update 2009-12-11 19:36:55 +00:00
R-R2HTML Update to the latest version of the module along with R update 2009-12-11 19:18:17 +00:00
R-randomForest Needs C and Fortran. From PR 42506. 2009-12-23 23:38:46 +00:00
R-RArcInfo Update R-RArcInfo to 0.4.7 2008-10-13 11:29:42 +00:00
R-Rcmdr Update to the latest version of the module along with R update 2009-12-11 19:18:17 +00:00
R-sgeostat Update to the latest version of the module along with R update 2009-12-11 19:36:55 +00:00
R-shapefiles Update R-shapefiles to 0.6 2008-10-13 19:27:42 +00:00
R-sp Update to the latest version of the module along with R update 2009-12-11 19:36:55 +00:00
R-statmod Update to the latest version of the module along with R update 2009-12-11 19:36:55 +00:00
R-wle Follow f2c/libf2c split: bump revision of all packages 2009-12-03 13:06:51 +00:00
randlib Home page moved. 2009-12-12 20:56:54 +00:00
ruby-rb-gsl Update ruby-rb-gsl package to 1.14.3. 2010-03-31 10:00:06 +00:00
sc Support staged installation. 2009-12-12 20:22:01 +00:00
scilab Tends to go into infinite loops on 64bit platforms as confirmed on 2010-01-06 18:24:12 +00:00
slatec Support staged installation. 2009-12-11 17:32:41 +00:00
snns Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
speedcrunch add speedcrunch-0.10.1, another desktop calculator 2010-02-03 14:09:17 +00:00
statist Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
superlu Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
tasp-vsipl Support staged installation. 2009-12-12 20:39:56 +00:00
teapot teapot is a spread sheet program for UNIX, which uses modern concepts 2010-05-04 14:45:32 +00:00
texdrive PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
TinySVM Import TinySVM-0.09 as math/TinySVM. 2010-05-19 11:47:15 +00:00
tochnog Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
udunits DESTDIR support 2010-02-04 14:51:44 +00:00
units Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
vista Support staged installation. 2009-12-12 21:58:18 +00:00
xeukleides MAKE_JOBS_SAFE=no 2009-08-03 15:57:45 +00:00
xfractint Support staged installation. 2009-12-11 17:47:28 +00:00
xgap Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
xldlas Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
xlife Support staged installation. 2009-12-12 19:19:00 +00:00
xlispstat NetBSD-current grew fmax(3) too 2009-11-01 16:07:10 +00:00
xmgr add license. 2010-02-07 18:36:33 +00:00
xylib Changes 0.6: 2010-05-15 06:19:27 +00:00
yacas Update to YACAS 1.2.2. 2009-09-05 13:07:09 +00:00
yorick DESTDIR support 2010-02-04 14:51:44 +00:00
Makefile math/orpie was broken by an ocaml update three years ago and nobody stepped 2010-05-28 17:03:53 +00:00