summaryrefslogtreecommitdiff
path: root/math
AgeCommit message (Collapse)AuthorFilesLines
2005-03-19use awk instead of csplit during the build. csplit was onlydmcmahill3-15/+11
used in one place and it generated a build dependency on a package which conflicts with many other pkgs.
2005-03-17rework the pre-fetch check on alpha to unsure ${WRKDIR}/.pkgdb gets createddmcmahill1-3/+2
2005-03-16We no longer have to explicitly set F77. Addresses PR29666dmcmahill1-2/+1
2005-03-15Don't forcibly try to install .0 formatted catpages -- Interix imaketv2-7/+3
doesn't produce them. Just install the .1 pages. Rather than using ${DISTNAME}nbX, use the newer PKGREVISION convention.
2005-03-14- don't hard code /bin/sh (use the configured shell). Needed todmcmahill7-2/+97
get a working shell on solaris. - fix a header file - avoid passing invalid parameters to mkoctfile. octave-forge now works on solaris too.
2005-03-13remove some non-portable shell constructsdmcmahill2-1/+15
2005-03-13In packages with djb-style compile scripts, properly enquote ${CC}schmonz1-5/+5
and ${CFLAGS}. This fixes the build of net/djbdns, as well as any other of these packages passing down PKG_SYSCONFDIR via CFLAGS, as well as being more generally correct for arbitrary user-defined CFLAGS. Suggested by jlam. For consistency across djbware in pkgsrc: * In math/djbfft's and sysutils/daemontools's do-configure targets, remove leading @ from ${ECHO} lines; from the former, also remove unneeded single quotes from one such line. * Rename net/publicfile's pre-build and sysutils/service-config's post-patch targets to do-configure. * In sysutils/checkpassword's do-configure target, reorder creation of conf-cc, conf-ld, and conf-home. All of the affected packages have been verified to compile. XXX These packages probably have enough build goo in common to XXX warrant an mk/djbware.mk. I'll investigate this post-freeze.
2005-03-13make sure that we don't end up with the buildlink directory as partdmcmahill1-2/+6
of the full path to sed in the installed mkoctfile otherwise we end up with a broken mkoctfile.
2005-03-10Fix compilation on solaris. Octave-current works here now.dmcmahill2-1/+25
2005-03-06Bump PKGREVISION with introduce of ruby16-base/ruby18-base pacakge.taca3-6/+6
2005-03-05Update mathomatic to 12.1d.minskim3-10/+10
Changes since 11.7: - Increased precision and optimization of code command. - Prepared code for future improvement to integrate command. - Integrate (a*constant^x) for x has been added. - Allow differentiation and integration of -constant^x. - Disabled power factoring of k^x*k^y, where k is a constant. This fixes a small bug. - Reduced stack usage by almost 2/3. - Reduced stack usage another large amount to the smallest it can be. - Laplace (a*constant^x) and (a/constant^x) for x has been added. - Allow integration of (a/constant^x) for x. - Moved all numeric GCD routines to "gcd.c". - Improved limit command for "limit x inf". - Halved the default equation size and doubled the number of equation spaces to 40. - Fixed bug that caused infinite loop for "2^(.5*n)" and incorrect answer for "-1^(2*n)". - Allow edit command to work with no equations defined. - Allow typing "abort" or "quit" during pause command. - They both abort the current operation. - Removed usage displayed every time a command fails. - Simplify command once again prefers 1/(constant^n) instead of (1/constant)^n. - Added "set finance" option. - Some improvement to simplification of constants. - Improved "factor number" command. Made self-testing and allow multiple integers. - Strip trailing newlines from string returned by getstring(). - Re-enabled power factoring of k^x*k^y, where k is a constant. - The bug it had caused just disappeared. - This is because a lot of changes have been made. - Some speed up in polynomial factoring made by ignoring anything that is not a polynomial in any variable. - Improved denominator rationalizer. - Disabled power factoring of -1^x*-1^y. This time it is done right. - Added new function debug_string(). It simplifies the debugging code. - Simplified pf_sub() (the polynomial factoring subroutine). - Fixed up Prime Number Tools man pages. - Improved matho-twin. - Added simplification of roots like 12^.5 to 2*(3^.5) in simplify command. - Code cleanup. - Improved the results of solving by not always factoring constants. - Added semicolon (";") to end of each line when using "list export". - Some improvement made to the simplify command. - More tests added to test suite. - Fixed bug in patch_root_div(). - Fixed infinity/nan bug in uf_repeat().
2005-02-28on SunOS/sparc with gcc, turn off the -mcpu flag to avoid an internaldmcmahill1-1/+7
compiler error.
2005-02-25update to 23.7drochner3-23/+21
changes: -Added empty as command for creating an empty array (much faster than zeros) -fixes
2005-02-24only 1 USE_LANGUAGES= pleasedmcmahill1-2/+1
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc106-106/+217
2005-02-23Enable pkgviews installation.minskim1-1/+3
2005-02-22Changes 2.1.65:adam7-45/+47
* Bug-fixes and improvements
2005-02-13Remove my un-needed comment about dc.reed1-2/+1
2005-02-09Update py-pytables to 0.9.1markd5-39/+30
PyTables 0.9.1: This release is mainly a maintenance version. In it, some bugs has been fixed and a few improvements has been made. One important thing is that chunk sizes in EArrays has been re-tuned to get much better performance and compression rations. Besides, it has been tested against the latest Python 2.4 and all test units seems to pass fine. PyTables 0.9: In this release you will find a series of quite exciting new features, the most important being new indexing capabilities, in-kernel selections, support for complex datatypes and the possibility to modify values in both tables and arrays (yeah, finally :).
2005-02-09Update py-numarray to version 1.1.1markd4-10/+14
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-02-01Changes 0.7.2:adam2-5/+5
* Show base (if not decimal, hexadecimal or non-standard) as subscript * Use singular instead of abbreviated name for completion * Fix "Convert result" button * Use the last operator for leftover stack values * Fix RPN crash and don't add lonely stack value to itself * Workaround freeze with message dialog without buttons
2005-01-29s/fftw2/fftw to match what was done to Makefiledmcmahill1-2/+2
2005-01-29Update mathomatic to 11.7.minskim2-7/+7
Changes: Another minor adjustment to simplify command to make everything work just right. Trap "derivative x" of (negative constant or zero)^x. Solve "(constant)^y=constant" for y. Moved all html files and the man page to subdirectory "doc". Code cleanup. Improved modulus solving. Trap "x%0". Simplify "x%inf". Fix fraction list display of -0. Change for better simplification. Fix for division by roots of fractions.
2005-01-28Oops, make sure to bump PKG_REVISION.taca1-1/+2
2005-01-28Add RUBY_HAS_ARCHLIB which have machine dependent extention libraries.taca3-3/+8
Bump PKG_REVISION.
2005-01-25Activate and note addition of p5-Set-Infinite-0.61.cube1-1/+2
2005-01-25Reformat, correct error.cube1-2/+2
2005-01-25Initial import of p5-Set-Infinite, version 0.61, into the NetBSD Packagescube4-0/+27
Collection. Set::Infinite is a Set Theory module for infinite sets. It works with reals, integers, and objects. When it is used dates, this module provides schedule checks (intersections), unions, and infinite recurrences.
2005-01-25Activate and note addition of p5-Set-Crontab-1.00.cube1-1/+2
2005-01-25Initial import of p5-Set-Crontab, version 1.00, into the NetBSD Packagescube4-0/+23
Collection. Set::Crontab parses crontab-style lists of integers and defines some utility functions to make it easier to deal with them.
2005-01-24Fix python version required (s/23pth/23/)recht2-4/+4
2005-01-23Build Python with thread support by default and turn the existingrecht2-4/+4
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-21update to 1.0.57drochner3-7/+12
changes: -allow executing expressions from the command line -secure mode -More intelligent parsing -optimizations, fixes, documentation improvements
2005-01-21Changes 1.53adam2-5/+5
- 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-20update to 1.4.2, and fix Python supportdrochner7-37/+53
2005-01-14Update mathomatic to 11.6d.minskim2-5/+5
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-14Changes 4.8:adam3-7/+6
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-13Fixed installation problem - now all the modules should be installed ↵adam4-8/+93
correctly, and buildlinked against fftw (not fftw2)
2005-01-13Changes 1.6:adam4-17/+18
* 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-12Move buildlink3.mk files ahead of targets as per example Makefile.jlam1-11/+12
2005-01-12Fix up the comment to note that we still need to unwrap some files atjlam1-13/+12
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-12Update to 4.4.22:jmmv2-5/+5
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-12Nuke USE_FORTRAN and bring the f2c handling within the mk/compilerjlam21-51/+50
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-12Ensure that f2c-main.c includes config.h so that F77_DUMMY_MAIN isjlam2-1/+17
defined. This fixes the build when using f2c-f77 as the Fortran compiler.
2005-01-08Update mathomatic to 11.6c.minskim2-5/+5
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-03Add patch-ab (forgotten in the previous commit - thanks towennmach1-0/+15
wiz for notifying me).
2005-01-03The `DZLAUX' routines were still missing from the library.wennmach3-11/+15
2005-01-01Add missing dependencies (pkgconfig, libgnomecanvas) and bumpminskim1-1/+4
PKGREIVISION.
2004-12-31Update xeukleides to 1.0.0 using patches provided by Torsten Sadowskikristerw4-44/+26
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-31Update eukleides to 1.0.1 using patches provided by Torsten Sadowskikristerw4-44/+20
in PR pkg/28746. Changes since 0.9.0 are unknown.