Commit graph

1326 commits

Author SHA1 Message Date
recht
367eed19fe Build Python with thread support by default and turn the existing
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.
2005-01-23 20:41:45 +00:00
drochner
f45d2126e2 update to 1.0.57
changes:
-allow executing expressions from the command line
-secure mode
-More intelligent parsing
-optimizations, fixes, documentation improvements
2005-01-21 15:28:36 +00:00
adam
ff69c1f99d Changes 1.53
- bug fix in handling of -pi (previous version changed constant pi)
- bug fix in division of integer vectors with negative coefficients
- for loop can now handle >= 2**32 iterations
- fixed bug which occurred in V 1.50 while parsing certain
  parenthized expressions
2005-01-21 09:50:20 +00:00
drochner
7442ce5a14 update to 1.4.2, and fix Python support 2005-01-20 21:35:07 +00:00
minskim
f2cd83b8dd Update mathomatic to 11.6d.
Changes:

Some more improvement to simplification.

Displayed floating point precision reduced to 12 digits.

Allow typing just "e#" or "pi" on the command line, to give the
values for each.

Changed simplify command to prefer (1/constant)^n instead of 1/(constant^n).
It produces more efficient code and solves a problem.

Improved "code integer" command by allowing integer powers.

Improved eliminate command by trying next equation if solve fails.

"list export" now produces 100% Maxima compatible equations.

Changed "SILENT" compile time define to also remove all debugging code.
2005-01-14 14:52:44 +00:00
adam
d1111b4565 Changes 4.8:
Core simplex method and interior-point method routines were
        re-implemented and now they use a new, "storage-by-rows" sparse
        matrix format (unlike previous versions where linked lists were
        used to represent sparse matrices). For details see ChangeLog.

        Also a minor bug was fixed in API routine lpx_read_cpxlp.
2005-01-14 11:31:00 +00:00
adam
5739500a9b Fixed installation problem - now all the modules should be installed correctly, and buildlinked against fftw (not fftw2) 2005-01-13 15:41:53 +00:00
adam
0a4c703516 Changes 1.6:
* Added a new wavelet directory, with 1-dimensional and 2-dimensional
  discrete wavelet transforms.
* Added support for LQ and P^T LQ decompositions.  To find the QR
  decomposition of large systems (M>>N) use the LQ decomposition,
  solving the transpose of the original system.  This allows more
  efficient memory access, and is useful for solving large least-squares
  problems.
* Fixed a bug in the SYRK and HERK blas functions gsl_blas_{s,d,c,z}syrk
  and gsl_blas_{c,z}herk which caused invalid memory access for non-square
  matrices.
* Fixed a bug in gsl_swap_vectors which caused it to return incorrect
  results when swapping vectors with different strides.
* Corrected the error estimate for gsl_cheb_eval_n_err to use
  evaluation order instead of the approximation order.
* Improved the reliability of the gsl_sf_gamma_inc family of
  functions.
* Equal abscissae are now handled gracefully in the cspline and
  periodic cspline interpolations.
* Removed potential cancellation error in calculation of uniform
  histogram ranges.
* Improved numerical stability of integration for akima and cspline
  interpolation.
* Differential equation solvers now handle error codes returned from
  user-defined functions.
* Improved error estimates in ode-initval solvers, and provide exact
  derivatives on output.  Added new semi-implicit ode-initval solver,
  gsl_odeiv_step_rk2simp.
* Added missing function definition for gsl_sf_psi_1.
* Fixed the function gsl_sf_expint_Ei_scaled to call
  gsl_sf_expint_Ei_scaled_e instead of gsl_sf_expint_Ei_e.
* Added cumulative distribution function for exponential power
  distribution.
* The functions gsl_cdf_beta_P and gsl_cdf_beta_Q now return
  consistent results of 0 or 1 for out of range values, x<0 and x>1,
  rather than 0 for left and right tails simultaneously.
* The Jacobi eigensolvers gsl_eigen_jacobi and gsl_eigen_jacobi_invert
  have new implementations from Golub and Van Loan.
* The standard output and standard error streams are now flushed by
  the default error handler before the program aborts, in order to
  ensure that error messages are properly displayed on some platforms.
2005-01-13 15:06:25 +00:00
jlam
3588ad8a2a Move buildlink3.mk files ahead of targets as per example Makefile. 2005-01-12 22:50:20 +00:00
jlam
0e0b73913a Fix up the comment to note that we still need to unwrap some files at
post-configure time, even after the switch from buildlink2 to buildlink3.
Also, use SUBST_CLASSES instead of the custom post-configure target,
and take advantage of the fact that the "unwrap" SUBST_CLASS already
does mostly the right thing.
2005-01-12 22:49:35 +00:00
jmmv
f4cdc711e1 Update to 4.4.22:
Overview of changes in gcalctool 4.4.22

* Fixed bug #163468. Pressing "(<Del>)" would cause gcalctool to crash.

Overview of changes in gcalctool 4.4.21

* Fixed bug #157277. Entering "(" followed by Clr using the mouse to
  click on the buttons, caused a bogus character to be displayed and
  the display wasn't cleared.
2005-01-12 21:51:59 +00:00
jlam
b6b853727d Nuke USE_FORTRAN and bring the f2c handling within the mk/compiler
framework.  The list of changes include:

  * Modify compiler.mk so that "c" is always prepended to USE_LANGUAGES,
    so we no longer need to say it in package Makefiles.  Packages
    should now append to USE_LANGUAGES instead of setting it.

  * Create mk/compiler/f2c.mk which implements another pseudo-compiler
    "f2c" that may be used with any C compiler backend, e.g.

	PKGSRC_COMPILER= f2c ccache gcc

  * Teach the various "real" compiler files, e.g., sunpro.mk, mipspro.mk,
    etc., to use f2c if the native Fortran compiler isn't present.

Packages that use Fortran should now simply include the line:

	USE_LANGUAGES+=	fortran

in the package Makefile.
2005-01-12 15:31:58 +00:00
jlam
0fb4dcc225 Ensure that f2c-main.c includes config.h so that F77_DUMMY_MAIN is
defined.  This fixes the build when using f2c-f77 as the Fortran
compiler.
2005-01-12 06:02:29 +00:00
minskim
9416a40c03 Update mathomatic to 11.6c.
Changes:
- Some more touch-ups to solve routine.
- Changed uf_repeat() to skip expanding if the expression would be too big.
  This allows Mathomatic to work with huge exponents.
- Turned on "preserve_roots" option by default.
- Improved sum and product commands.  Allow counting down.
- Improved solve routine and removed display of useless messages.
- Added a fix to the limit command.
- Moved "source.txt" into "README.txt".
- Added code to simplify (inf+a) to (inf) generally.
- Fixed minor bug in calculate command.
- Minor fixes to elim_k().
- Improved limit command.
- Made all recursive functions in the source code static.
  Most functions never used globally defined as static.
- Improvement in command argument parsing.
- Added extrema command.
- Improved output of roots command.
- Fixed minor bug caused by "preserve_roots" option.
- Made file "am.htm" valid HTML.
- Simplification improved.
2005-01-08 07:09:50 +00:00
wennmach
9688d77316 Add patch-ab (forgotten in the previous commit - thanks to
wiz for notifying me).
2005-01-03 15:38:05 +00:00
wennmach
8e7b4963b9 The `DZLAUX' routines were still missing from the library. 2005-01-03 15:33:55 +00:00
minskim
18ade915f9 Add missing dependencies (pkgconfig, libgnomecanvas) and bump
PKGREIVISION.
2005-01-01 16:37:55 +00:00
kristerw
508d6d88a6 Update xeukleides to 1.0.0 using patches provided by Torsten Sadowski
in PR pkg/28745.

Changes since 0.9.0 include:
* Bugs concerning `trace' command and `triangle' function fixed.
* Strings may now be enclosed in dollar signs ($).
* Variable names may now contain underscores (_) and single quotes (').
* New `strokes' command.
* New `label' command.
* Enhancement of `arg' function.
* Enhancement of `draw' command.
* New `dot' angle mark.
* Various new numerical functions: `min', `max', `clamp', `sign', `ceil',
  `floor', `round'.
* New ternary test operator, logical operators and comparison operators.
* Improvement of `interactive' command.
* Improvement of triangle and quadrilateral assignments.
* Minor bug fixes.
2004-12-31 13:13:32 +00:00
kristerw
df135dcd28 Update eukleides to 1.0.1 using patches provided by Torsten Sadowski
in PR pkg/28746.

Changes since 0.9.0 are unknown.
2004-12-31 12:36:44 +00:00
wiz
4199034f74 Add and enable p5-Math-Random. 2004-12-29 01:19:56 +00:00
wiz
8c5d81cf60 Initial import of p5-Math-Random-0.67 from pkgsrc-wip, packaged by imil.
This module generates a variety of random numbers. Capabilities of wide
interest include the generation of:
. uniform numbers between 0 and 1 (or user chosen boundaries)
. random integers between user specified bounds
. random permutations of a list (shuffle a deck of cards)
2004-12-29 01:19:13 +00:00
reed
e117eda090 Bump PKGREVISIONs due to libtiff update.
Some BUILDLINK_RECOMMENDED bumps done also.

(If I missed any, please let me know -- and let me know a good
way to automate this.)
2004-12-28 23:18:15 +00:00
wiz
6201b719d4 Remove ancient version of gnumeric, we have two newer versions
(in separate packages) in pkgsrc now.
2004-12-27 11:28:04 +00:00
minskim
0289f78858 Update mathomatic 11.6.
Changes:
  - Many minor improvements made, none of which are worth mentioning by
    themselves.
  - Fixed all message strings with a variable listed in them.
  - Added iteration option to calculate command.
  - Trimmed set command of fat.  Unnecessary messages removed.
  - Removed all occurrences of "usage_flag".
  - Usage info is now displayed everytime a command returns with error.
  - Allow parsing of hexadecimal constants.  Preceed hex numbers with
    "0x".
  - There may be parsing bugs.  Systems using older versions of the GNU
    libraries (specifically strtod(3)) will not allow hexadecimal input.
  - Added limit command.
  - Trapped 0^(negative number).  It previously produced junk.
  - Allow solve routine to produce infinity as an answer.
  - Some commenting and fixing done to solve routine.
2004-12-26 06:19:11 +00:00
wiz
42c628194b Update to 2.11.10.1. Changes since 2.11.10:
Fixed a bug reported by the sourceforge user: cedars where:

  ln(exp(6)) == 3         /* WRONG!!! */

incorrectly returned 1.  This bug was fixed by Ernest Bowen
The regression test was expanded to cover this issue.

Added minor improvements to hash regression testing of pi().

Fixed "help script" and the calc man page regarding the requirement
of -f to be the last -flag in shell script mode.  Further clarified
the meaning and placement of the -f flag.

Moved issues with chi.cal intfile.cal into a "mis-features" section
of the BUGS file.  See "help bugs" or the BUGS source file for details.

Added the bug about:

  calc 'read ellip; efactor(13*17*19)'

to the BUGS file.  See "help bugs" or the BUGS source file for details.
Anyone want to track down and fix this bug?
2004-12-26 01:33:40 +00:00
jmmv
c33d2074af Adjust dependencies after ocaml has been splitted into three different
packages: ocaml, ocaml-graphics and labltk.  Bump PKGREVISION.
2004-12-24 17:21:01 +00:00
wiz
50a0a49108 Add and enable gnumeric14. 2004-12-23 10:49:51 +00:00
drochner
074515746c add a pkg for the new gnumeric-1.4
We might replace the gnumeric-1.2.x pkg eventually. Can't do this now
because the Python plugin isn't built for some reason, so this would
be a regression. (Don't have time to fix this right now.)
2004-12-22 12:08:25 +00:00
wennmach
1b87c6169a Make liblapack contain routines for all types (real, double, complex16,
and complex). Due to an error in the previous patch-aa, liblapack only
contained the complex16 routines.
Bump PKGREVISION.
2004-12-22 10:17:28 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-20 11:30:55 +00:00
minskim
c684a9b166 Honor LIBOWN and LIBGRP. 2004-12-19 19:28:43 +00:00
minskim
920cb40daf This package uses intltool; include intltool/buildlink3.mk. 2004-12-17 22:09:51 +00:00
adam
6dd308ee57 Changes 2.1.64:
* Bug fixes
2004-12-05 11:17:54 +00:00
adam
eaa1293a52 Changes 2004.11.16:
* initial econometrics toolbox
* updated protein databank (extra/pdb) functions
* new functions: wavread wavwrite hann strfind randp sprandn conv2nan
* many bug fixes and improvements
2004-12-05 09:03:42 +00:00
wiz
9a846efb79 Note that guppi is no longer maintained (in a comment). 2004-12-04 18:19:49 +00:00
taca
05a0ff5ab1 Switch to use RUBY_DLEXT as suffix of extention library. 2004-12-04 17:20:46 +00:00
wiz
bdbed82c03 Bump BUILDLINK_DEPENDS because of change in guile dependency. 2004-12-04 16:23:08 +00:00
wiz
68322e60cf Convert to use guile-1.6. Bump PKGREVISION. 2004-12-04 16:22:39 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
wiz
0f06d106c7 Reset maintainer, mail could not be delivered. 2004-12-03 13:56:26 +00:00
wiz
a5aa32988c Update to 1.0.2:
* Fixed precedence of '-' (thanks to Torsten Landschoff)
* Added manpage (ditto)
2004-12-01 20:37:09 +00:00
minskim
91fc8e4b8e Update mathomatic to 11.5c.
Changes:
  - Added loading of $HOME/.mathomaticrc on startup.
    Set options go there.
  - Added undocumented switch "-t" which sets test mode.
    Only used with "make test".
  - Wrote and added "matho-pascal" program to primes directory.
  - Allow "=" in set command.
  - Improved uf_repeat() and modulus simplification.
2004-12-01 04:06:03 +00:00
wiz
4ce264687e Bump PKGREVISION for removal of db3 buildlink3.mk file from
GConf's buildlink3.mk file. Bump BUILDLINK_DEPENDS where appropriate.
2004-11-30 18:26:39 +00:00
adam
14325ea8b6 Changes 4.7:
Now GLPK supports free MPS format. Two new API routines
        lpx_read_freemps (to read problem data in free MPS format) and
        lpx_write_freemps (to write problem data in free MPS format)
        were added. This feature is also available in the solver glpsol
        via new command-line options --freemps and --wfreemps. For more
        details see the GLPK reference manual.

        API routines lpx_read_cpxlp and lpx_write_cpxlp for reading and
        writing problem data in CPLEX LP format were re-implemented to
        allow long symbolic names (up to 255 characters).

        The following three modules were temporarily removed from the
        GLPK distribution due to licensing problems: DELI (an interface
        module to Delphi), GLPKMEX (an interface module to Matlab), and
        JNI (an interface module to Java).
2004-11-30 15:58:39 +00:00
dmcmahill
1ee3e8905a Add dependency on lang/ocaml for those systems which ocamlopt is supported
on.

Addresses PR pkg/28410 by sutre at labri dot fr.  Some patches were supplied
in the PR, the PLIST fix is from me.
2004-11-29 22:05:08 +00:00
adam
a1782a0c8a Changes 1.1.9:
Algorithmic changes
* Input of numbers in bases 2, 4, 8, 16 and 32 is now done in linear bit
  complexity as opposed to O(N^2). Useful for all kinds of persistency.

Implementation changes
* Fixed several bugs in the integer input and output routines that could be
  blamed for random crashes in the following cases: output in base 32 for
  quite large numbers, input in base 2 for fixnums and input in base 3 for
  fixnums on a 64 bit target.

* Fixed crash when radix specifiers were used in input streams.
* Speed up on x86_64 and ia64 by adding some inline assembly.

Other changes
* Fixes for compilation on MacOS X and little endian Mips.
2004-11-29 08:47:29 +00:00
jlam
40377c791f Remove pre-buildlink and post-buildlink as part of getting pkgsrc ready
for pkgsrc-2004Q4.  The "buildlink" phase was removed for the last branch,
and this is the final cleanup.  "post-buildlink" is now "post-wrapper".
2004-11-28 19:19:51 +00:00
taca
eb48f11ef9 Oops, I forgot to commit these files. 2004-11-28 07:29:45 +00:00
taca
d5638b9488 Update ruby-gsl pacakge to 0.2.0 migrating to use new Ruby framework.
0.2.0: using GSL 1.5
       sorting vectors
       fixes in Vector and Linalg_complex
       check if complex_householder_hv is available
       check for Cygwin
       faster MonteCarlo implementation
       more and renamed constants (MKS -> MKSA, CGS -> CGSM)
       better (meaning more sensible) error handling
       fixed initialization bug in Spline
       more samples
2004-11-27 16:27:45 +00:00
taca
6c49a73a6a Update ruby-bitvector package to 0.1.7 migrating to use new Ruby framework.
Changes are seems to miscellaneous bug fixes.
2004-11-27 16:26:09 +00:00