diff options
author | jtb <jtb@pkgsrc.org> | 2002-05-03 21:41:31 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2002-05-03 21:41:31 +0000 |
commit | 9246be9e38db37895370c4f7981d2294bdfe337a (patch) | |
tree | 6d4b13a4d6af2c899fbf441316b1461f3b4b01e2 /math/gsl | |
parent | f239da72d899ca9430a7530b956bf2140f5aaf8e (diff) | |
download | pkgsrc-9246be9e38db37895370c4f7981d2294bdfe337a.tar.gz |
Update to version 1.1.1. From the NEWS file:
* What is new in gsl-1.1.1:
** Fixes to histogram2d stat functions
** Added missing prototypes for complex LU determinant functions
** Improved error handling in multifit routines
** Added check to avoid division by zero for rank-deficient matrix in
multifit iteration
* What was new in gsl-1.1:
** The permutation module now includes a copy function
gsl_permutation_memcpy
** The implementation of gsl_sf_gamma_inc has been improved and now
avoids problems caused by internal singularities which occurred in the
series expansion for some combinations of parameters.
** IEEE comparisons of infinities and NaNs are tested during the
configure stage and the functions gsl_isnan, gsl_isinf and gsl_finite
are only compiled on platforms which support the necessary tests.
** The histogram routines now include a sum function,
gsl_histogram_sum for computing the total bin sum, and additional
statistics functions for 2d histograms.
** Internal error checking of user-defined functions has been improved
in the multiroots functions.
** Constants now include the Bohr Radius and Vacuum Permittivity.
** Range checking is now turned off when building the library, but is
still on by default when compiling user applications.
** A combinations directory has been added for generating combinations (n,k).
** The gamma function now returns exact values for integer arguments.
** Fixed bugs in gsl_sf_hyperg_1F1_int and gsl_sf_hyperg_1F1.
** Fixed internal error handling in gsl_sf_laguerre_n to allow
recovery from overflow.
** Several routines for handling divided difference polynomials have
been added to the poly/ directory.
** The interpolation routines now include polynomial interpolation,
based on divided-differences.
** Added new random number generators from Knuth's Seminumerical
Algorithms, 3rd Edition: borosh13, coveyou, fishman18, fishman20,
fishman2x, knuthran, knuthran2, lecuyer21, waterman14.
** Changed divisor in random number generator gfsr4 from 2^32-1 to
2^32 to prevent exact value of 1.0 from being returned, as specified
in the documentation.
Diffstat (limited to 'math/gsl')
-rw-r--r-- | math/gsl/Makefile | 4 | ||||
-rw-r--r-- | math/gsl/PLIST | 7 | ||||
-rw-r--r-- | math/gsl/buildlink.mk | 5 | ||||
-rw-r--r-- | math/gsl/distinfo | 6 |
4 files changed, 12 insertions, 10 deletions
diff --git a/math/gsl/Makefile b/math/gsl/Makefile index 0a13a3e1b82..7c625dfcb17 100644 --- a/math/gsl/Makefile +++ b/math/gsl/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2002/02/18 15:14:30 seb Exp $ +# $NetBSD: Makefile,v 1.8 2002/05/03 21:41:31 jtb Exp $ # -DISTNAME= gsl-1.0 +DISTNAME= gsl-1.1.1 CATEGORIES= math devel MASTER_SITES= ftp://sources.redhat.com/pub/gsl/ \ ftp://ftp.freesoftware.com/pub/sourceware/pub/gsl/ \ diff --git a/math/gsl/PLIST b/math/gsl/PLIST index 864bc956018..35e90bf1eff 100644 --- a/math/gsl/PLIST +++ b/math/gsl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2002/02/18 15:14:31 seb Exp $ +@comment $NetBSD: PLIST,v 1.4 2002/05/03 21:41:31 jtb Exp $ bin/gsl-config bin/gsl-histogram bin/gsl-randist @@ -22,6 +22,7 @@ include/gsl/gsl_block_ulong.h include/gsl/gsl_block_ushort.h include/gsl/gsl_cblas.h include/gsl/gsl_chebyshev.h +include/gsl/gsl_combination.h include/gsl/gsl_complex.h include/gsl/gsl_complex_math.h include/gsl/gsl_const.h @@ -207,7 +208,7 @@ include/gsl/gsl_vector_uint.h include/gsl/gsl_vector_ulong.h include/gsl/gsl_vector_ushort.h include/gsl/gsl_version.h -@unexec ${INSTALL_INFO} --delete --info-dir=%D/info %D/info/gsl-ref.info +@unexec /usr/bin/install-info --delete --info-dir=%D/info %D/info/gsl-ref.info info/gsl-ref.info info/gsl-ref.info-1 info/gsl-ref.info-10 @@ -231,7 +232,7 @@ info/gsl-ref.info-6 info/gsl-ref.info-7 info/gsl-ref.info-8 info/gsl-ref.info-9 -@exec ${INSTALL_INFO} --info-dir=%D/info %D/info/gsl-ref.info +@exec /usr/bin/install-info --info-dir=%D/info %D/info/gsl-ref.info lib/libgsl.a lib/libgsl.la lib/libgsl.so diff --git a/math/gsl/buildlink.mk b/math/gsl/buildlink.mk index 53bf9adda1d..c5e8d26df53 100644 --- a/math/gsl/buildlink.mk +++ b/math/gsl/buildlink.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink.mk,v 1.1 2001/11/22 12:58:40 agc Exp $ +# $NetBSD: buildlink.mk,v 1.2 2002/05/03 21:41:31 jtb Exp $ # # This Makefile fragment is included by packages that use gsl. # @@ -17,7 +17,7 @@ GSL_BUILDLINK_MK= # defined .include "../../mk/bsd.buildlink.mk" -BUILDLINK_DEPENDS.gsl?= gsl>=1.0 +BUILDLINK_DEPENDS.gsl?= gsl>=1.1.1 BUILD_DEPENDS+= ${BUILDLINK_DEPENDS.gsl}:../../math/gsl EVAL_PREFIX+= BUILDLINK_PREFIX.gsl=gsl @@ -42,6 +42,7 @@ BUILDLINK_FILES.gsl+= include/gsl/gsl_block_ulong.h BUILDLINK_FILES.gsl+= include/gsl/gsl_block_ushort.h BUILDLINK_FILES.gsl+= include/gsl/gsl_cblas.h BUILDLINK_FILES.gsl+= include/gsl/gsl_chebyshev.h +BUILDLINK_FILES.gsl+= include/gsl/gsl_combination.h BUILDLINK_FILES.gsl+= include/gsl/gsl_complex.h BUILDLINK_FILES.gsl+= include/gsl/gsl_complex_math.h BUILDLINK_FILES.gsl+= include/gsl/gsl_const.h diff --git a/math/gsl/distinfo b/math/gsl/distinfo index ea96914baca..886dfc4b6c6 100644 --- a/math/gsl/distinfo +++ b/math/gsl/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2001/11/22 12:58:40 agc Exp $ +$NetBSD: distinfo,v 1.7 2002/05/03 21:41:31 jtb Exp $ -SHA1 (gsl-1.0.tar.gz) = 946b28aabcefd3ce82c940115c02f0258a75d3cb -Size (gsl-1.0.tar.gz) = 2016707 bytes +SHA1 (gsl-1.1.1.tar.gz) = fb3e6d00a92dd850480ab6d5c2015be99c96ecb4 +Size (gsl-1.1.1.tar.gz) = 2048441 bytes SHA1 (patch-aa) = af794d95720e2192b0b860bc5c08cebf8935a23c |