FreeBSD Bugzilla – Attachment 225863 Details for
Bug 256423
[exp-run] math/gsl: update to 2.7
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
v2
0001-math-gsl-update-to-2.7.patch (text/plain), 4.66 KB, created by
Tobias C. Berner
on 2021-06-16 18:01:31 UTC
(
hide
)
Description:
v2
Filename:
MIME Type:
Creator:
Tobias C. Berner
Created:
2021-06-16 18:01:31 UTC
Size:
4.66 KB
patch
obsolete
>From f303b216471ed898f194c07cee712f0f6186afe2 Mon Sep 17 00:00:00 2001 >From: "Tobias C. Berner" <tcberner@FreeBSD.org> >Date: Sat, 5 Jun 2021 09:30:51 +0200 >Subject: [PATCH] math/gsl: update to 2.7 > >From [1] > >* What is new in gsl-2.7: > * fixed doc bug for gsl_histogram_min_bin (lhcsky at 163.com) > * fixed bug #60335 (spmatrix test failure, J. Lamb) > * fixed bug #36577 > * clarified documentation on interpolation accelerators (V. Krishnan) > * fixed bug #45521 (erroneous GSL_ERROR_NULL in ode-initval2, thanks to M. Sitte) > * fixed doc bug #59758 > * fixed bug #58202 (rstat median for n=5) > * added support for native C complex number types in gsl_complex > when using a C11 compiler > * upgraded to autoconf 2.71, automake 1.16.3, libtool 2.4.6 > * updated exponential fitting example for nonlinear least squares > * added banded LU decomposition and solver (gsl_linalg_LU_band) > * New functions added to the library: > - gsl_matrix_norm1 > - gsl_spmatrix_norm1 > - gsl_matrix_complex_conjtrans_memcpy > - gsl_linalg_QL: decomp, unpack > - gsl_linalg_complex_QR_* (thanks to Christian Krueger) > - gsl_vector_sum > - gsl_matrix_scale_rows > - gsl_matrix_scale_columns > - gsl_multilarge_linear_matrix_ptr > - gsl_multilarge_linear_rhs_ptr > - gsl_spmatrix_dense_add (renamed from gsl_spmatrix_add_to_dense) > - gsl_spmatrix_dense_sub > - gsl_linalg_cholesky_band: solvem, svxm, scale, scale_apply > - gsl_linalg_QR_UD: decomp, lssolve > - gsl_linalg_QR_UU: decomp, lssolve, QTvec > - gsl_linalg_QR_UZ: decomp > - gsl_multifit_linear_lcurvature > - gsl_spline2d_eval_extrap > * bug fix in checking vector lengths in gsl_vector_memcpy (dieggsy@pm.me) > * made gsl_sf_legendre_array_index() inline and documented > - gsl_sf_legendre_nlm() > >[1] http://git.savannah.gnu.org/cgit/gsl.git/tree/NEWS > >Exp-run by: antoine >--- > math/gsl/Makefile | 2 +- > math/gsl/distinfo | 6 +++--- > math/gsl/pkg-plist | 3 ++- > math/p5-Math-GSL/files/patch-inc-GSLBuilder.pm | 6 +++--- > math/p5-Math-GSL/files/patch-inc_Ver2Func.pm | 11 +++++++++++ > 5 files changed, 20 insertions(+), 8 deletions(-) > create mode 100644 math/p5-Math-GSL/files/patch-inc_Ver2Func.pm > >diff --git a/math/gsl/Makefile b/math/gsl/Makefile >index 514de9ab92..722be7fd29 100644 >--- a/math/gsl/Makefile >+++ b/math/gsl/Makefile >@@ -1,7 +1,7 @@ > # Created by: Andrew L. Neporada <andrew@chg.ru> > > PORTNAME= gsl >-PORTVERSION= 2.6 >+PORTVERSION= 2.7 > CATEGORIES= math > MASTER_SITES= GNU > >diff --git a/math/gsl/distinfo b/math/gsl/distinfo >index bbf53b1b26..3ffd875d55 100644 >--- a/math/gsl/distinfo >+++ b/math/gsl/distinfo >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1566551853 >-SHA256 (gsl-2.6.tar.gz) = b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8 >-SIZE (gsl-2.6.tar.gz) = 7398548 >+TIMESTAMP = 1622878012 >+SHA256 (gsl-2.7.tar.gz) = efbbf3785da0e53038be7907500628b466152dbc3c173a87de1b5eba2e23602b >+SIZE (gsl-2.7.tar.gz) = 7508761 >diff --git a/math/gsl/pkg-plist b/math/gsl/pkg-plist >index 507c6fd2ee..c4687cf042 100644 >--- a/math/gsl/pkg-plist >+++ b/math/gsl/pkg-plist >@@ -266,10 +266,11 @@ include/gsl/gsl_vector_ushort.h > include/gsl/gsl_version.h > include/gsl/gsl_wavelet.h > include/gsl/gsl_wavelet2d.h >+include/gsl/test_source.c > lib/libgsl.a > lib/libgsl.so > lib/libgsl.so.25 >-lib/libgsl.so.25.0.0 >+lib/libgsl.so.25.1.0 > lib/libgslcblas.a > lib/libgslcblas.so > lib/libgslcblas.so.0 >diff --git a/math/p5-Math-GSL/files/patch-inc-GSLBuilder.pm b/math/p5-Math-GSL/files/patch-inc-GSLBuilder.pm >index 39fa1a44e9..a267d5119e 100644 >--- a/math/p5-Math-GSL/files/patch-inc-GSLBuilder.pm >+++ b/math/p5-Math-GSL/files/patch-inc-GSLBuilder.pm >@@ -1,6 +1,6 @@ >---- inc/GSLBuilder.pm.orig 2018-12-10 17:11:25 UTC >+--- inc/GSLBuilder.pm.orig 2020-06-12 22:07:37 UTC > +++ inc/GSLBuilder.pm >-@@ -262,7 +262,7 @@ sub link_c { >+@@ -279,7 +279,7 @@ sub link_c { > } > } > >@@ -9,7 +9,7 @@ > my @shrp = $self->split_like_shell($cf->{shrpenv}); > my @ld = $self->split_like_shell($cf->{ld} || $Config{cc}); > >-@@ -294,7 +294,7 @@ sub compile_c { >+@@ -311,7 +311,7 @@ sub compile_c { > > $cf->{installarchlib} = $Config{archlib}; > >diff --git a/math/p5-Math-GSL/files/patch-inc_Ver2Func.pm b/math/p5-Math-GSL/files/patch-inc_Ver2Func.pm >new file mode 100644 >index 0000000000..8ac5d90547 >--- /dev/null >+++ b/math/p5-Math-GSL/files/patch-inc_Ver2Func.pm >@@ -0,0 +1,11 @@ >+--- inc/Ver2Func.pm.orig 2021-06-16 17:58:11 UTC >++++ inc/Ver2Func.pm >+@@ -397,6 +397,8 @@ my @ver2func = ( >+ ^gsl_matrix_uint_scale_columns$ >+ / >+ ] >++ }, >++ "2.7" => { >+ } >+ ); >+ >-- >2.31.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 256423
:
225565
| 225863