Update to sagemath 8.5.

Also:
- Bundle ipython again; Fedora version is too far ahead.  Also have to bundle
  prompt_toolkit since Fedora version is too far ahead of bundled ipython.
- Drop LANGUAGES variable setting, now ignored by the sagemath build system.
- Drop unused SAGE_CBLAS variable from /usr/bin/sage.
- Do not force the C locale when launching sagemath.
- Allow the user to override SAGE_DEBUG in /usr/bin/sage.
- Add -ecm, -giac, and -latte patches to fix interactions with external tools.
- Add -sigfpe patch from upstream.
This commit is contained in:
Jerry James 2019-01-17 19:27:08 -07:00
parent eaa777c690
commit 55beead27c
31 changed files with 674 additions and 684 deletions

View file

@ -1,7 +1,7 @@
diff -up src/module_list.py.orig src/module_list.py
--- src/module_list.py.orig 2018-05-16 14:13:22.021406801 -0600
+++ src/module_list.py 2018-05-16 14:15:57.654208949 -0600
@@ -12,7 +12,7 @@ SAGE_INC = '/usr/include'
--- src/module_list.py.orig 2019-01-16 09:47:07.804224297 -0700
+++ src/module_list.py 2019-01-16 09:47:21.611976523 -0700
@@ -11,7 +11,7 @@ SAGE_INC = '/usr/include'
import pkgconfig
# CBLAS can be one of multiple implementations
@ -10,7 +10,7 @@ diff -up src/module_list.py.orig src/module_list.py
cblas_libs = cblas_pc['libraries']
cblas_library_dirs = cblas_pc['library_dirs']
cblas_include_dirs = cblas_pc['include_dirs']
@@ -21,11 +21,9 @@ cblas_include_dirs = cblas_pc['include_d
@@ -20,11 +20,9 @@ cblas_include_dirs = cblas_pc['include_d
if os.path.exists('/usr/lib/libblas.dll.a'):
cblas_libs = ['gslcblas']
@ -26,9 +26,9 @@ diff -up src/module_list.py.orig src/module_list.py
# GD image library
gd_pc = pkgconfig.parse('gdlib')
diff -up src/sage/misc/cython.py.orig src/sage/misc/cython.py
--- src/sage/misc/cython.py.orig 2018-05-16 13:16:29.207708998 -0600
+++ src/sage/misc/cython.py 2018-05-16 14:15:57.656208921 -0600
@@ -40,7 +40,7 @@ from sage.misc.sage_ostools import resto
--- src/sage/misc/cython.py.orig 2019-01-04 10:27:47.031123276 -0700
+++ src/sage/misc/cython.py 2019-01-04 11:18:40.060863533 -0700
@@ -39,7 +39,7 @@ from sage.misc.sage_ostools import resto
# CBLAS can be one of multiple implementations