pkgsrc/math
asau 63940adf8c Update to Mathomatic 15.2.0
CHANGES MADE TO MATHOMATIC 15.2.0 TO BRING IT UP TO THE NEXT VERSION:

All makefiles were improved.  Library test/example program is renamed to "testmain".

Package maintainers please take note: support for the DESTDIR environment variable was
added to the makefiles; for proper operation when packaging version 15.2.1 or higher,
please remove any patches for missing DESTDIR support.
m4 Mathomatic should work now when included in the Mathomatic package (make m4install).
Thank you for packaging Mathomatic!  If I did anything wrong, please let me know.

8/26/10 - Added the -e option, which processes mathematical expressions and Mathomatic commands
          instead of input files on the shell command line.  For example, entering
          "mathomatic -eq 2+3" gives "answer = 5".  This functionality has been requested
          many times by Mathomatic command line users.  A complete example:


CHANGES MADE TO MATHOMATIC 15.1.6 TO BRING IT UP TO THE NEXT VERSION:

Minor improvements were made to the user documentation.

8/22/10 - Removed "Complex number roots approximated" warning message, since this happens often.

          Capitalized E, I, PI, and Pi are now accepted as the universal constants e, i, and pi,
          without needing to enter "set no case".  This allows Mathomatic to easily
          accept Mathematica style expression input.

          m4 Mathomatic now additionally accepts Mathematica style capitalized function input.
          matho and rmath now display elapsed, CPU, and system times in seconds upon exit.

8/23/10 - Fixed #equation-number entry at the main prompt to always work and allow an expression
          or equation following on the same line to be entered at that equation space.
          For example: "#10 y=1/x" will work now;
          previously only worked if equation space number 10 was previously allocated and used.
          The way it works is: all equation spaces up to and including number 10 are allocated,
          if not already allocated, upon entry of "#10".
          Equations spaces are allocated with the memory allocator malloc(3).


CHANGES MADE TO MATHOMATIC 15.1.5 TO BRING IT UP TO THE NEXT VERSION:

7/26/10 - Disabled ncurses call for auto-color detection when CYGWIN is defined while
          compiling the source code, due to a reported problem of readline failing with
          ncurses in Cygwin.

7/28/10 - Disabled readline history save file for the Cygwin port,
          because it is a filename that starts with a period.

7/31/10 - Added "set fractions_display" option, to allow disabling the automatic conversion of
          fractions like .5 to 1/2 for display.
          Developer requested and useful in the symbolic math library,
          when numerical fraction output isn't wanted.

8/01/10 - Fixed a memory leak when ignoring the output string in the symbolic math library.

8/04/10 - Preserve overflowed powers like 2^2222 rather than aborting with an error message.
          Allow simplification of math like 2*2^2222 and 2/2^2222.

8/08/10 - matho-primes runs twice as fast with the -ffast-math gcc compilation option,
          which is now enabled by default.  Don't try -ffast-math with the main Mathomatic
          program though, because then Mathomatic won't work properly.


CHANGES MADE TO MATHOMATIC 15.1.4 TO BRING IT UP TO THE NEXT VERSION:

Many minor tweaks and improvements.

7/03/10 - Makefiles and compile scripts were corrected and enhanced
          per http://www.gnu.org/prep/standards/

7/06/10 - Changed all "#if true" and "#if false" conditional commenting to "#if 1" and "#if 0"
          in the C source code, thanks to Min Sik Kim of NetBSD pkgsrc.


CHANGES MADE TO MATHOMATIC 15.1.3 TO BRING IT UP TO THE NEXT VERSION:

All of the Unix man pages and user manuals for Mathomatic were fixed.

The compare and "solve verify" commands now simplify more thoroughly with "repeat simplify"
for better expression equality determination.

6/17/10 - Greatly improved file operation error reporting by using the perror(3) function.

6/18/10 - Fixed categories in "icons/mathomatic.desktop";
          Mathomatic now goes under valid categories, mainly Education.


CHANGES MADE TO MATHOMATIC 15.1.2 TO BRING IT UP TO THE NEXT VERSION:

6/6/10 - I made mistakes in the improvement to the simplify command of version 15.1.2,
         the original working simplify logic of version 15.1.1 is now restored, sorry.


CHANGES MADE TO MATHOMATIC 15.1.1 TO BRING IT UP TO THE NEXT VERSION:

A general cleanup was done.
A small improvement was made to the final result of the simplify and fraction commands.
Showing intermediate results in the calculate, sum, and product commands is now done with "set debug 1".

5/28/10 - Added "tests/collatz.in", the Collatz conjecture as an automatically computable equation.


CHANGES MADE TO MATHOMATIC 15.1.0 TO BRING IT UP TO THE NEXT VERSION:

Code and documentation cleanup.

5/21/10 - Added "primes/matho-sum", a utility that sums its command line arguments or standard input.
          Use "matho-primes 0 2000000 | matho-sum" to find the sum of all primes less than 2,000,000.
          Solves Project Euler problem #10: http://projecteuler.net/index.php?section=problems&id=10

5/23/10 - Primes (') are allowed in variable names now, if not using the symbolic math library, so that the
          derivative, integrate, and nintegrate commands can change the dependent variable to y', y'', etc.
          This can be turned on in the symbolic math library by the command "set special_variable_characters='".

          Non-alphanumeric characters in variable names are now converted to underline characters (_)
          when exporting to a programming language or to a different program.


CHANGES MADE TO MATHOMATIC 15.0.8 TO BRING IT UP TO THE NEXT VERSION:

5/10/10 - Added "help constants" command.

5/11/10 - Integer variables are now specified by using a variable name that starts with "integer",
          like "integer1", "integer_x", etc.  Currently only the modulus operator "%" checks
          for integer variables, to help with simplification.

5/12/10 - Corrected the output string type of the symbolic math library API.  It was erroneously declared
          as type "const", possibly causing a memory leak.

5/13/10 - Moved and adapted "makefile.lib" to "lib/makefile", so the symbolic math library build is isolated.
          Previously "make clean" was required between different builds.  All makefiles require GNU make now.


CHANGES MADE TO MATHOMATIC 15.0.7 TO BRING IT UP TO THE NEXT VERSION:


4/26/10 - Allow "make pdf" to generate PDF documentation from the HTML documentation with htmldoc.
          Please read the comments in the makefile for all available options.

4/29/10 - For every makefile, CFLAGS has been modified to include OPTFLAGS as required by the Fedora Linux
          build system, and OPTFLAGS defaults to the optional gcc specific flags like optimization.

          In the symbolic math library, made available the equation number of the result of calling the API,
          if also stored in an equation space.  The result equation number is stored in the global "result_en".
          Useful if you want to know where the result was stored, to act on it with further commands.


CHANGES MADE TO MATHOMATIC 15.0.6 TO BRING IT UP TO THE NEXT VERSION:

Corrections and improvements to the documentation were made.

4/3/10 - Vastly improved the "factor number" user interface, now factors integer expressions like 2^32-1.
         "factor number" is disabled in library mode.

4/13/10 - The real and imaginary commands no longer fail when the expression is not complex,
          just a warning is given.

4/14/10 - Changed normal display of "-1*" to "-", for prettier 2D expression output,
          so things like "-a" display properly, not as "-1*a".


CHANGES MADE TO MATHOMATIC 15.0.5:

1/28/10 - Added a Python utility called "primorial" to the Prime Number Tools install
          that multiplies together the results of matho-primes, displaying the primorials
          of the integers given on the command line.

3/18/10 - Changed author email address to "gesslein@linux.com".

3/23/10 - Catch SIGHUP and SIGTERM signals for proper termination of the Mathomatic program;
          readline was messing up when Mathomatic was terminated by closing the shell window.
          The plot command now always plots expressions with grid marks displayed for reference.


CHANGES MADE TO MATHOMATIC 15.0.4:

1/21/10 - In the makefile, changed the HTML man page generator back to rman because
          groff HTML output looks really bad and rman allows linking to other man pages.
          groff is no longer used.

1/24/10 - Fixed "make m4install", the installed rmath and matho programs weren't working.

1/27/10 - Added GNU LGPL license notices to every C source file with a copyright notice,
          for proper protections.


CHANGES MADE TO MATHOMATIC 15.0.3:

1/9/10 - Fixed a problem only in the version 15.0.3 makefile, where it didn't respect
         the CC environment variable set by the user, instead it always used "gcc"
         as the C compiler.


CHANGES MADE TO MATHOMATIC 15.0.2:

12/27/09 - Moved get_screen_size() from main.c to am.c because it is used in the library when
           compile-time options UNIX or CYGWIN are defined.
           Thanks to Cygwin port maintainer Reini Urban for noticing and fixing this problem.
           Defining UNIX or CYGWIN in library mode is not recommended.

12/31/09 - Added code to allow any command to be preceded by "repeat", which sets the
           repeat flag for the following command.  Most commands ignore the repeat flag.

1/1/10 - Ported divide and roots commands to be repeatable.  Also repeatable are the
         calculate and eliminate commands.

1/2/10 - Allow Taylor series computation even if the specified differentiation variable
         is not found in the expression, giving a warning.
         Ported simplify command to be a repeatable full simplify; that is, typing
         "repeat simplify" repeatedly runs the simplify command until the result stabilizes
         to the smallest size expression.

1/7/10 - Thanks to pretty C code submitted by Simon Geard,
         the code and variables commands have been made much more readable.

1/8/10 - Made Mathomatic easier to compile under Solaris, thanks to Michael Pogue of Sun.
         Fixed failure to compile under BSD Unix when compiling with readline support.


CHANGES MADE TO MATHOMATIC 15.0.1:

12/19/09 - The last few versions fix the ugliness caused by the GCD factoring change made on 6/22/09.
           Today's change factors out the numerical GCD of rational coefficients as needed to simplify.
           Most simplification results should be beautiful and the simplest possible again now,
           without the misleading observed magnitude caused by always factoring out the GCD,
           which was why the change of 6/22/09 was made.


CHANGES MADE TO MATHOMATIC 15.0.0:

12/12/09 - Fixed a problem with the -q (quiet mode) option being ignored if the session options
           were ever saved with the "set save" command.

12/13/09 - Added code to allow Mathomatic output to be redirected by default.
           Fixed the derivative command to be successful even when the result is 0,
           when compiled as a library.

12/14/09 - Added ability to log symbolic math library results, and made command behavior
           more consistent in the library by always returning the final result string.

12/16/09 - The factor command now factors more by factoring out the GCD of rational coefficients.


CHANGES MADE TO MATHOMATIC 14.6.3 TO BRING IT UP TO 15.0.0:

Cleanup and more bug fixes.

11/26/09 - Added detection of the terminal's ANSI color availability, when readline is enabled.

11/28/09 - Added detection of divide by zero and NaN when using the "solve verify" command,
           for more correct results.
           Solving now factors out the GCD of rational coefficients, for improved results.
           The fixes today are from errors solving equations like (2*x/(x - 3)) + 3 = 6/(x - 3)

11/29/09 - Disallow the variable named "nan".  NaN cannot be directly entered into Mathomatic.

11/30/09 - Added shell scripts "t" and "tests/t" to easily test Mathomatic by typing "./t".

12/2/09 - The fraction command now factors out the GCD of rational coefficients like the
          solve command does, so that coefficients in algebraic fractions become integers.
          The GCD verifying routine was perfected by making it very strict, like it should be.
2010-08-30 02:48:40 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
blitz++ "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
calc calc is included in emacs>=22. 2009-08-05 08:20:48 +00:00
calcoo Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
dfftpack "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
extcalc Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
fftpack "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
fftw "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
fftw2 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
fftwf "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
fgmp dead mirror. fetch from backup. 2009-05-21 11:21:44 +00:00
fityk Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
fricas Update to FriCAS 1.1.0 2010-07-05 22:41:16 +00:00
galculator Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gap Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gcalctool update to 5.30.2 2010-07-06 15:39:35 +00:00
geg Add DESTDIR support. 2008-06-20 01:09:05 +00:00
genius GNU make fallout: it has become stricter wrt tabulation. 2010-08-18 17:40:31 +00:00
glpk Changes 4.44: 2010-07-13 06:46:56 +00:00
gnumeric Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
gnumeric110 Fix packaging with latest goffice. Bump PKGREVISION. 2010-08-23 13:33:36 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
graphopt Support staged installation. 2009-12-11 17:47:28 +00:00
grpn Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gsl Update to 1.14: 2010-03-15 10:45:28 +00:00
gtklife Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
itpp "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
kseg Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
lapack "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
ltm Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mapm Update mapm to 4.9.5a. 2010-08-17 11:24:20 +00:00
mathomatic Update to Mathomatic 15.2.0 2010-08-30 02:48:40 +00:00
maxima Update to Maxima 5.22.1 2010-08-26 10:21:12 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
mpcomplex Import MPC (multiprecision complex arithmetic library) version 0.8.2 2010-07-27 17:09:45 +00:00
mpfr Bump revision after math/mpfr update. 2010-07-15 21:35:10 +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 Update to muParser 1.32 2010-08-11 20:33:19 +00:00
newmat Update to Newmat11 2010-08-11 20:06:25 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
octave-forge "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
odepack "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Excel-Template-Plus Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Base36 Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Base85 Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-BaseCnv Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Bezier Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-BigInt-GMP Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-BigInt-Pari Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-BigInteger Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-FFT Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-GMP Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Interpolate Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-MatrixReal Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Pari Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Random Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Random-MT-Perl Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-Round Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Math-VecStat Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Number-Compare Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Number-Latin Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Roman Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Set-Crontab Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Set-Infinite Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Spreadsheet-ParseExcel Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Spreadsheet-Read Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Spreadsheet-ReadSXC Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Spreadsheet-WriteExcel Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Spreadsheet-XLSX Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Statistics-Descriptive Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +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 PKGREVISION bump for png-1.4.x shlib change. 2010-06-14 15:33:12 +00:00
py-ephem Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-fpconst update to 0.7.2 which gives it a MASTER_SITE and a distfile again, 2010-08-10 12:35:34 +00:00
py-gmpy add py-gmpy-1.12, a Python wrapper for math/gmp, from Kamel Derouiche 2010-08-10 17:59:00 +00:00
py-mpmath update to 0.15, from Kamel Derouiche per PR pkg/43730 2010-08-10 18:04:30 +00:00
py-networkx Update math/py-networkx to 1.2. 2010-08-27 03:09:18 +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-numexpr add py-numexpr-1.3.1, a numerical expression evaluator for NumPy 2010-07-16 12:12:17 +00:00
py-numpy "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
py-pytables py-cython dependency doesn't support 2.4. 2010-07-17 18:13:08 +00:00
py-rpy "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 Update to scipy 0.7.2 2010-06-06 02:37:08 +00:00
py-sympy update to 0.6.7, from Kamel Derouiche per PR pkg/43731 2010-08-11 13:36:48 +00:00
qalculate update to 0.9.7 2010-04-13 17:25:22 +00:00
qalculate-bases Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
qalculate-currency Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
qalculate-gtk Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
qalculate-kde Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
qalculate-units Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
qhull Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
quadpack "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
R "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
R-abind Fix homepage. 2008-10-13 11:30:50 +00:00
R-akima "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
R-classInt "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 bump PKGREVISION for yesterday's fix (PR 42507) 2010-08-02 09:01:01 +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 Changes 2.11.1: 2010-07-03 07:25:57 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
slatec "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
snns Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
speedcrunch Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +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 Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +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 "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +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 +py-gmpy 2010-08-10 18:01:21 +00:00