mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-21 11:19:02 -04:00
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.
21 lines
1.3 KiB
Diff
21 lines
1.3 KiB
Diff
diff -up src/sage/env.py.orig src/sage/env.py
|
|
--- src/sage/env.py.orig 2019-01-04 11:08:22.825475344 -0700
|
|
+++ src/sage/env.py 2019-01-16 09:46:26.932957717 -0700
|
|
@@ -117,7 +117,7 @@ _add_variable_or_fallback('HOSTNAME',
|
|
_add_variable_or_fallback('LOCAL_IDENTIFIER','$HOSTNAME.%s'%os.getpid())
|
|
|
|
# bunch of sage directories and files
|
|
-_add_variable_or_fallback('SAGE_ROOT', None)
|
|
+_add_variable_or_fallback('SAGE_ROOT', '@@SAGE_ROOT@@')
|
|
_add_variable_or_fallback('SAGE_LOCAL', None)
|
|
_add_variable_or_fallback('SAGE_ETC', opj('$SAGE_LOCAL', 'etc'))
|
|
_add_variable_or_fallback('SAGE_INC', opj('$SAGE_LOCAL', 'include'))
|
|
@@ -141,7 +141,7 @@ _add_variable_or_fallback('SAGE_PKGS', o
|
|
_add_variable_or_fallback('SAGE_EXTCODE', opj('$SAGE_SHARE', 'sage', 'ext'))
|
|
_add_variable_or_fallback('SAGE_LOGS', opj('$SAGE_ROOT', 'logs', 'pkgs'))
|
|
_add_variable_or_fallback('SAGE_SPKG_INST', opj('$SAGE_LOCAL', 'var', 'lib', 'sage', 'installed'))
|
|
-_add_variable_or_fallback('SAGE_DOC_SRC', opj('$SAGE_SRC', 'doc'))
|
|
+_add_variable_or_fallback('SAGE_DOC_SRC', '@@SAGE_DOC@@')
|
|
_add_variable_or_fallback('SAGE_DOC', opj('$SAGE_SHARE', 'doc', 'sage'))
|
|
_add_variable_or_fallback('DOT_SAGE', opj(os.environ.get('HOME','$SAGE_ROOT'), '.sage'))
|
|
_add_variable_or_fallback('SAGE_DOT_GIT', opj('$SAGE_ROOT', '.git'))
|