Skip to content

Commit ad454f6

Browse files
author
Release Manager
committed
Trac #32587: upgrade gsl to version 2.7
One API change in GSL 2.7 causes trouble in Sage, see - https://groups.google.com/g/sage-devel/c/yQ67Wy0gp58/m/jr6f7xtcBQAJ Some distros, e.g. Gentoo, now have GSL 2.7 as the default. URL: https://trac.sagemath.org/32587 Reported by: dimpase Ticket author(s): Lorenz Panny, John Palmieri, Matthias Koeppe Reviewer(s): Dima Pasechnik
2 parents f4f555c + bb8b92d commit ad454f6

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

build/pkgs/gsl/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tarball=gsl-VERSION.tar.gz
2-
sha1=9273164b6bdf60d0577518a1c1310eff6659e3dd
3-
md5=bda73a3dd5ff2f30b5956764399db6e7
4-
cksum=1462047518
2+
sha1=29179db0d746f422bb0ceca2cbda4de107a2c651
3+
md5=9e47e81caaebcd92b7aca27a5348df74
4+
cksum=2494121348
55
upstream_url=https://ftp.gnu.org/gnu/gsl/gsl-VERSION.tar.gz

build/pkgs/gsl/dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$(BLAS)
1+
$(BLAS) | pkgconf
22

33
----------
44
All lines of this file are ignored except the first.

build/pkgs/gsl/package-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6
1+
2.7

build/pkgs/gsl/spkg-install.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
cd src
22

3-
sdh_configure LIBS="`pkg-config --libs-only-l cblas` -lm"
3+
sdh_configure LIBS="`pkg-config --libs-only-l cblas` -lm" \
4+
LDFLAGS="$LDFLAGS `pkg-config --libs-only-L cblas`" \
5+
CPPFLAGS="$CPPFLAGS `pkg-config --cflags-only-I cblas`" \
6+
CFLAGS="$CFLAGS `pkg-config --cflags-only-other cblas`"
47
sdh_make
58
sdh_make_install

0 commit comments

Comments
 (0)