SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for gsl-devel-2.4-59.1.x86_64.rpm :
Tue Jun 20 14:00:00 2017 adam.majerAATTsuse.de
- rstat_test.patch - Fix rstat test on PPC platform
- re-enable multi-job support in unit tests (check make target)

Mon Jun 19 14:00:00 2017 adam.majerAATTsuse.de
- Update to new upstream version 2.4:

* add const to declaration of appropriate gsl_rstat routines

* added routines for Hermite polynomials, gsl_sf_hermite_
*

* added routines to compute integrals with fixed-point
quadrature, based on IQPACK

* added new nonlinear least squares example for fitting
a Gaussian to data

* deprecated routines:
gsl_sf_coupling_6j_INCORRECT
gsl_sf_coupling_6j_INCORRECT_e

* deprecated routine \'gsl_linalg_hessenberg\' (replaced
by gsl_linalg_hessenberg_decomp)

* removed routines which were deprecated in v2.1:
gsl_bspline_deriv_alloc
gsl_bspline_deriv_free

* changed COD expression to Q R Z^T instead of Q R Z to
be consistent with standard texts

* added check for nz == 0 in gsl_spmatrix_get

* permit zero-dimension blocks, vectors, matrics, subvectors,
submatrices, and views of the above

* added routine gsl_linalg_COD_lssolve2 for regularized
least squares problems
- obsoletes patches:

* ppc_test_tolerence.patch

* fix_legendre_test.patch
- unit tests re-enabled

Wed Jun 14 14:00:00 2017 adam.majerAATTsuse.de
- Update to test version 2.3.90.

Thu May 18 14:00:00 2017 adam.majerAATTsuse.de
- Add unit test error logs to build logs when there is a failure
- ppc_test_tolerence.patch: Fix unit tests on PPC64 and PPC64LE
- fix_legendre_test.patch: Ignore part of failing unit test on i586
(boo#1030250)

Fri Jan 6 13:00:00 2017 mpluskalAATTsuse.com
- Update to version 2.3:

* bug fix in documentation for gsl_linalg_LU_refine

* added gsl_multifit_linear_tsvd and gsl_multifit_wlinear_tsvd

* improved rstat example program and added documentation for

* added function gsl_multifit_linear_rank

* bug fix in nonlinear least squares when using data weights with

* add 2D subspace method for large systems (multilarge_nlinear)

* bug fix in gsl_ran_beta for small parameters

* bug fix in gsl_complex_tan for negative imaginary arguments

* doc bug fix: value of golden ratio

* fixed scaling issue in 2D subspace nonlinear least squares
method

* optimize dogleg methods to calculate Gauss-Newton point
only when needed

* reverted gsl_linalg_cholesky_decomp to its previous behavior
so it is backward compatible; new cholesky routine is
gsl_linalg_cholesky_decomp1

* updated gsl_linalg_cholesky_invert to use Level-2 BLAS

* added functions gsl_linalg_tri_
*_invert for inverting

* fix GSL_EIGEN_SORT_VAL_{ASC,DESC} for nonsymmetric

* added complete orthogonal decomposition routines

* and many more - see ChangeLog for full list
- Drop upstreamed patches:

* gsl-disable-multifit-test.patch

* gsl-rstat-test-powerpc.patch
- Packaging changes:

* use https url\'s for download

* fetch keyring from savannah

Fri Jul 29 14:00:00 2016 adam.majerAATTsuse.de
- Add missing Requires in -devel following package split

Fri Jul 29 14:00:00 2016 dmitry_rAATTopensuse.org
- Move gslcblas library to separate package [boo#991155]

Sat Jun 18 14:00:00 2016 dmitry_rAATTopensuse.org
- Update to version 2.1

* added gsl_multifit_linear_rcond() to compute reciprocal
condition number of least squares matrix

* added gsl_multilarge module for large linear least squares
systems
New in version 2.0

* added L-curve analysis routines for linear Tikhonov regression

* add running statistics module

* added bilinear and bicubic interpolation

* added function gsl_multifit_robust_residuals to compute robust
fit residuals

* added Steffen monotonic interpolation method

* added new nonlinear least squares solver \'lmniel\' suitable for
systems with large numbers of data

* nonlinear least squares solver now tracks the number of function
Jacobian evaluations, see example program for details

* the \'fdf\' field of gsl_multifit_function_fdf is now deprecated
and does not need to be specified for nonlinear least squares
problems

* added extensive test suite to nonlinear least squares module,
resulting in a few minor bug fixes; the routine
gsl_multifit_fdfsolver_driver has been rewritten (with API change)
to handle the various error codes of the lmsder iterate
routine, resulting in a high level caller which is highly robust
for a wide class of problems

* added support for sparse matrices, including a GMRES
iterative linear solver

* added routines gsl_linalg_givens and gsl_linalg_givens_gv
for Givens rotations

* added Tikhonov (ridge) regularization to least squares module
(linear and nonlinear)

* Drop obsolete gsl-sorting-complex-numbers.patch
- Disable multifit test for 32-bit systems

* gsl-disable-multifit-test.patch
- Fix build on PowerPC systems

* gsl-rstat-test-powerpc.patch

Mon Jun 8 14:00:00 2015 dimstarAATTopensuse.org
- Add gsl-sorting-complex-numbers.patch: fix in sorting of complex
numbers (http://savannah.gnu.org/bugs/?39055).

Wed Feb 25 13:00:00 2015 mpluskalAATTsuse.com
- Cleanup spec file with spec-cleaner
- Add gpg keys
- Update dependencies
- Split documentation to separate package
- Run only one job for checks

Sat Jul 19 14:00:00 2014 jengelhAATTinai.de
- Utilize shared library package naming guidelines
(split gsl -> gsl,libgsl0)
- Set RPM groups

Mon Sep 9 14:00:00 2013 badshah400AATTgmail.com
- Update to version 1.16:
+ fixed error in gsl_rng_fwrite where uninitialized padding
bytes were being written (bug #39104)
+ fixed error in gsl_block_alloc where padding bytes were not
properly initialized (bugs #39101,#39102,#39103)
+ fixed error in ntuple/test.c where padding bytes were not
properly initialized (bug #39105)
+ fixed triangle selection bug in gsl_sf_coupling_6j_e and
gsl_sf_coupling_9j_e (bugs #39466 and #29606)
+ added higher level wrapper routine
gsl_multifit_fdfsolver_driver
+ converted gsl_multifit_linear_residuals to use dgemv to
improve efficiency (bug #39153)
+ added functions gsl_stats_spearman and gsl_sort_vector2 to
compute Spearman rank correlation
+ added function gsl_poly_dd_hermite_init for Hermite
interpolation
+ Added support for robust linear least squares
+ Added function gsl_linalg_SV_leverage for computing
statistical leverages from SVD decomposition
+ Added support for approximating the Jacobian of nonlinear least
squares fits using forward finite differences
+ Extended gsl_sf_coupling_3j to allow larger range and to
handle the special case (ja jb jc; 0 0 0)=0 when ja+jb+jc is
odd
+ Fixed gsl_sf_mathieu_se_array to return zero when the order is
zero [bug #33679]
+ Fixed overflow in gsl_sf_lncosh for large negative x (x<-354)
+ Improved gsl_ran_negative_binomial_pdf to avoid
underflow/overflow for large arguments
+ Multisets now allow k strictly greater than n
+ Fixed gsl_matrix_complex_fwrite/fread failure for
noncontiguous matrices

Fri Jun 29 14:00:00 2012 cooloAATTsuse.com
- the buildrequire for specific gcc libraries seems unneeded (and broke)

Wed Mar 28 14:00:00 2012 pthAATTsuse.de
- Remove the unneccessary -fno-strict-aliasing.
- Replace FSF address in headers by link to the FSF licenses web
page.
- prefix all patch files with a \'gsl-\'

Tue Feb 28 13:00:00 2012 idonmezAATTsuse.com
- Disable FMA support, see the following message for details:
http://lists.gnu.org/archive/html/bug-gsl/2011-11/msg00019.html
- Still disable %check on i586 because it fails.

Sat Feb 4 13:00:00 2012 jengelhAATTmedozas.de
- Remove redundant tags/sections (see specfile guidelines)
- Parallel build with %_smp_mflags

Sat Feb 4 13:00:00 2012 jengelhAATTmedozas.de
- Remove redundant tags/sections (see specfile guidelines)

Sat Oct 15 14:00:00 2011 cooloAATTsuse.com
- add libtool as buildrequire to make the spec file more reliable

Sat Oct 1 14:00:00 2011 crrodriguezAATTopensuse.org
- Workaround qemu-arm bugs.

Thu Sep 29 14:00:00 2011 andrea.turriniAATTgmail.com
- Made descriptions in gls.spec more readable

Sun Jul 17 14:00:00 2011 badshah400AATTgmail.com
- Update to 1.15: New functions, improvements and bug-fixes; see
NEWS for full list

Wed Dec 8 13:00:00 2010 kkaempfAATTnovell.com
- Update to 1.14
Bugfixes, improvements and new functions. See NEWS for full list.

Mon Dec 6 13:00:00 2010 kkaempfAATTnovell.com
- Fix build on non-SUSE distros

Mon Dec 6 13:00:00 2010 kkaempfAATTnovell.com
- Add pkg-config to BuildRequires so pkgconfig(gsl) gets created
as provides of the -devel package

Thu Feb 11 13:00:00 2010 rguentherAATTsuse.de
- Drop all fancy compile flags as long as we need -fno-strict-aliasing.

Thu Jul 30 14:00:00 2009 garloffAATTsuse.de
- Run make check on all archs, relax precision for qawc elist on x86.

Thu Jul 30 14:00:00 2009 ajAATTsuse.de
- Update to gsl-1.12:

* Many bugfixes (see NEWS for full list)

* Improvements: faster simplex mininimser gsl_multimin_fminimizer_nmsimplex2,
gsl_monte_vegas to avoid catastrophic cancellation,

* New functions: gsl_bspline_eval_deriv, new auxiliary functions
gsl_cheb_order, gsl_cheb_size, gsl_cheb_coeffs for Chebyshev series,
gsl_vector_complex_{isnonneg,add,sub,mul, div,scale,add_constant}
and gsl_matrix_complex_float_isnonn, gsl_linalg_cholesky_invert

Tue Jul 28 14:00:00 2009 ajAATTsuse.de
- Fix build - disable html generation which fails.


 
ICM