Version 9.4.

- Drop upstreamed -eclib patch.
- Drop unnecessary -readonly patch.
- Unbundle ipywidgets.
- Bundle memory_allocator for now.
This commit is contained in:
Jerry James 2021-08-27 13:18:01 -06:00
parent db8b5a20c1
commit 916819fe9b
11 changed files with 390 additions and 482 deletions

View file

@ -1,6 +1,6 @@
diff -up src/sage/databases/cremona.py.orig src/sage/databases/cremona.py
--- src/sage/databases/cremona.py.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/sage/databases/cremona.py 2021-05-28 11:39:00.005575551 -0600
--- src/sage/databases/cremona.py.orig 2021-08-22 02:44:33.000000000 -0600
+++ src/sage/databases/cremona.py 2021-08-26 13:33:03.200366675 -0600
@@ -885,7 +885,8 @@ class MiniCremonaDatabase(SQLDatabase):
message = "There is no elliptic curve with label " \
+ label + " in the default database; try installing " \
@ -11,11 +11,11 @@ diff -up src/sage/databases/cremona.py.orig src/sage/databases/cremona.py
raise ValueError(message)
ainvs = eval(c[0])
data = {'cremona_label': label,
@@ -1663,6 +1664,7 @@ class LargeCremonaDatabase(MiniCremonaDa
@@ -1670,6 +1671,7 @@ class LargeCremonaDatabase(MiniCremonaDa
con.executemany("UPDATE t_curve SET gens=? WHERE curve=?",
curve_data)
print("Committing...")
+ self.commit()
if largest_conductor and int(v[0]) > largest_conductor: break
if largest_conductor and int(v[0]) > largest_conductor:
break

View file

@ -1,40 +0,0 @@
diff -up src/sage/libs/eclib/mwrank.pyx.orig src/sage/libs/eclib/mwrank.pyx
--- src/sage/libs/eclib/mwrank.pyx.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/sage/libs/eclib/mwrank.pyx 2021-07-07 09:31:20.972526814 -0600
@@ -55,7 +55,7 @@ cdef extern from "wrap.cpp":
char* mw_getbasis(mw* m)
double mw_regulator(mw* m)
int mw_rank(mw* m)
- int mw_saturate(mw* m, bigint* index, char** unsat,
+ int mw_saturate(mw* m, long* index, char** unsat,
long sat_bd, int odd_primes_only)
void mw_search(mw* m, char* h_lim, int moduli_option, int verb)
@@ -894,12 +894,12 @@ cdef class _mw:
"""
- cdef _bigint index
+ cdef long index
cdef char* s
cdef int ok
sig_on()
- index = _bigint()
- ok = mw_saturate(self.x, index.x, &s, sat_bd, odd_primes_only)
+ index = 0
+ ok = mw_saturate(self.x, &index, &s, sat_bd, odd_primes_only)
unsat = string_sigoff(s)
return ok, index, unsat
diff -up src/sage/libs/eclib/wrap.cpp.orig src/sage/libs/eclib/wrap.cpp
--- src/sage/libs/eclib/wrap.cpp.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/sage/libs/eclib/wrap.cpp 2021-07-06 17:38:03.377018615 -0600
@@ -178,7 +178,7 @@ int mw_rank(struct mw* m)
}
/* Returns index and unsat long array, which user must deallocate */
-int mw_saturate(struct mw* m, bigint* index, char** unsat,
+int mw_saturate(struct mw* m, long* index, char** unsat,
long sat_bd, int odd_primes_only)
{
vector<long> v;

View file

@ -1,7 +1,23 @@
diff -up src/bin/sage-env.orig src/bin/sage-env
--- src/bin/sage-env.orig 2021-08-22 02:44:33.000000000 -0600
+++ src/bin/sage-env 2021-08-27 08:49:17.252812930 -0600
@@ -333,10 +333,8 @@ if [ -n "$SAGE_LOCAL" ]; then
export CPATH="$SAGE_LOCAL/include${CPATH}"
fi
-if [ -n "$SAGE_LOCAL" ]; then
- SINGULARPATH="$SAGE_LOCAL/share/singular" && export SINGULARPATH
- SINGULAR_EXECUTABLE="$SAGE_LOCAL/bin/Singular" && export SINGULAR_EXECUTABLE
-fi
+SINGULARPATH="/usr/share/singular" && export SINGULARPATH
+SINGULAR_EXECUTABLE="/usr/bin/Singular" && export SINGULAR_EXECUTABLE
if [ -z "$SAGE_REPO_ANONYMOUS" ]; then
SAGE_REPO_ANONYMOUS="https://gitlab.com/sagemath/dev/tracmirror.git"
diff -up src/sage/env.py.orig src/sage/env.py
--- src/sage/env.py.orig 2021-05-29 21:01:26.503474025 -0600
+++ src/sage/env.py 2021-05-29 21:03:06.389635554 -0600
@@ -166,16 +166,16 @@ SAGE_DATE = var("SAGE_DATE", version.dat
--- src/sage/env.py.orig 2021-08-27 08:46:35.399958049 -0600
+++ src/sage/env.py 2021-08-27 08:46:48.584192481 -0600
@@ -166,15 +166,15 @@ SAGE_DATE = var("SAGE_DATE", version.dat
SAGE_VERSION_BANNER = var("SAGE_VERSION_BANNER", version.banner)
# virtual environment where sagelib is installed
@ -10,21 +26,18 @@ diff -up src/sage/env.py.orig src/sage/env.py
SAGE_LIB = var("SAGE_LIB", os.path.dirname(os.path.dirname(sage.__file__)))
-SAGE_EXTCODE = var("SAGE_EXTCODE", join(SAGE_LIB, "sage", "ext_data"))
+SAGE_EXTCODE = var("SAGE_EXTCODE", join("/usr", "share", "sagemath", "etc"))
SAGE_VENV_SPKG_INST = var("SAGE_VENV_SPKG_INST", join(SAGE_VENV, "var", "lib", "sage", "installed"))
# prefix hierarchy where non-Python packages are installed
SAGE_LOCAL = var("SAGE_LOCAL", SAGE_VENV)
-SAGE_ETC = var("SAGE_ETC", join(SAGE_LOCAL, "etc"))
-SAGE_INC = var("SAGE_INC", join(SAGE_LOCAL, "include"))
-SAGE_SHARE = var("SAGE_SHARE", join(SAGE_LOCAL, "share"))
-SAGE_DOC = var("SAGE_DOC", join(SAGE_SHARE, "doc", "sage"))
+SAGE_ETC = var("SAGE_ETC", join("/usr", "share", "sagemath", "etc"))
+SAGE_INC = var("SAGE_INC", join("/usr", "include"))
+SAGE_SHARE = var("SAGE_SHARE", join("/usr", "share", "sagemath"))
+SAGE_DOC = var("SAGE_DOC", join("/usr", "share", "doc", "sagemath"))
SAGE_SPKG_INST = var("SAGE_SPKG_INST", join(SAGE_LOCAL, "var", "lib", "sage", "installed"))
# source tree of the Sage distribution
@@ -199,12 +199,12 @@ THEBE_DIR = var("THEBE_DIR", join(SAGE_S
@@ -202,11 +202,11 @@ THEBE_DIR = var("THEBE_DIR", join(SAGE_S
COMBINATORIAL_DESIGN_DATA_DIR = var("COMBINATORIAL_DESIGN_DATA_DIR", join(SAGE_SHARE, "combinatorial_designs"))
CREMONA_MINI_DATA_DIR = var("CREMONA_MINI_DATA_DIR", join(SAGE_SHARE, "cremona"))
CREMONA_LARGE_DATA_DIR = var("CREMONA_LARGE_DATA_DIR", join(SAGE_SHARE, "cremona"))
@ -34,14 +47,13 @@ diff -up src/sage/env.py.orig src/sage/env.py
+JMOL_DIR = var("JMOL_DIR", join("/usr", "share", "java", "jmol"))
+MATHJAX_DIR = var("MATHJAX_DIR", join("/usr", "share", "javascript", "mathjax"))
+MTXLIB = var("MTXLIB", join(DOT_SAGE, "meataxe"))
THREEJS_DIR = var("THREEJS_DIR", join(SAGE_SHARE, "threejs"))
SINGULARPATH = var("SINGULARPATH", join(SAGE_SHARE, "singular"))
THREEJS_DIR = var("THREEJS_DIR", join(SAGE_SHARE, "threejs-sage"))
-PPLPY_DOCS = var("PPLPY_DOCS", join(SAGE_SHARE, "doc", "pplpy"))
+PPLPY_DOCS = var("PPLPY_DOCS", join("/usr", "share", "doc", "python3-pplpy"))
MAXIMA = var("MAXIMA", "maxima")
MAXIMA_FAS = var("MAXIMA_FAS")
SAGE_NAUTY_BINS_PREFIX = var("SAGE_NAUTY_BINS_PREFIX", "")
@@ -301,10 +301,10 @@ def _get_shared_lib_path(*libnames: str)
KENZO_FAS = var("KENZO_FAS")
@@ -309,10 +309,10 @@ def _get_shared_lib_path(*libnames: str)
# locate singular shared object
# On Debian it's libsingular-Singular so try that as well
@ -53,4 +65,4 @@ diff -up src/sage/env.py.orig src/sage/env.py
+GAP_SO = var("GAP_SO", "@@LIBDIR@@/libgap.so")
# post process
if ' ' in DOT_SAGE:
if DOT_SAGE is not None and ' ' in DOT_SAGE:

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
diff -up configure.orig configure
--- configure.orig 2021-05-09 16:01:38.000000000 -0600
+++ configure 2021-06-03 06:44:51.137915577 -0600
@@ -12184,12 +12184,12 @@ if test -n "$OPENBLAS_CFLAGS"; then
--- configure.orig 2021-08-22 02:45:52.000000000 -0600
+++ configure 2021-08-26 13:40:30.029000877 -0600
@@ -12703,12 +12703,12 @@ if test -n "$OPENBLAS_CFLAGS"; then
pkg_cv_OPENBLAS_CFLAGS="$OPENBLAS_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
@ -17,7 +17,7 @@ diff -up configure.orig configure
test "x$?" != "x0" && pkg_failed=yes
else
pkg_failed=yes
@@ -12201,12 +12201,12 @@ if test -n "$OPENBLAS_LIBS"; then
@@ -12720,12 +12720,12 @@ if test -n "$OPENBLAS_LIBS"; then
pkg_cv_OPENBLAS_LIBS="$OPENBLAS_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
@ -33,7 +33,7 @@ diff -up configure.orig configure
test "x$?" != "x0" && pkg_failed=yes
else
pkg_failed=yes
@@ -12227,9 +12227,9 @@ else
@@ -12746,9 +12746,9 @@ else
_pkg_short_errors_supported=no
fi
if test $_pkg_short_errors_supported = yes; then
@ -45,7 +45,7 @@ diff -up configure.orig configure
fi
# Put the nasty error message in config.log where it belongs
echo "$OPENBLAS_PKG_ERRORS" >&5
@@ -12257,16 +12257,16 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
@@ -12776,16 +12776,16 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
#ifdef __cplusplus
extern "C"
#endif
@ -65,7 +65,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12319,22 +12319,22 @@ else
@@ -12835,22 +12835,22 @@ else
/* end confdefs.h. */
#include <stdio.h>
@ -95,7 +95,7 @@ diff -up configure.orig configure
return 1;
;
return 0;
@@ -12387,7 +12387,7 @@ return cblas_dgemm ();
@@ -12903,7 +12903,7 @@ return cblas_dgemm ();
return 0;
}
_ACEOF
@ -104,7 +104,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12451,7 +12451,7 @@ return dgeqrf ();
@@ -12967,7 +12967,7 @@ return dgeqrf ();
return 0;
}
_ACEOF
@ -113,7 +113,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12515,7 +12515,7 @@ return dgeqrf_ ();
@@ -13031,7 +13031,7 @@ return dgeqrf_ ();
return 0;
}
_ACEOF
@ -122,7 +122,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12579,7 +12579,7 @@ return DGEQRF ();
@@ -13095,7 +13095,7 @@ return DGEQRF ();
return 0;
}
_ACEOF
@ -131,7 +131,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12643,7 +12643,7 @@ return DGEQRF_ ();
@@ -13159,7 +13159,7 @@ return DGEQRF_ ();
return 0;
}
_ACEOF
@ -140,7 +140,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12731,16 +12731,16 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
@@ -13247,16 +13247,16 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
#ifdef __cplusplus
extern "C"
#endif
@ -160,7 +160,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12793,22 +12793,22 @@ else
@@ -13306,22 +13306,22 @@ else
/* end confdefs.h. */
#include <stdio.h>
@ -190,7 +190,7 @@ diff -up configure.orig configure
return 1;
;
return 0;
@@ -12861,7 +12861,7 @@ return cblas_dgemm ();
@@ -13374,7 +13374,7 @@ return cblas_dgemm ();
return 0;
}
_ACEOF
@ -199,7 +199,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12925,7 +12925,7 @@ return dgeqrf ();
@@ -13438,7 +13438,7 @@ return dgeqrf ();
return 0;
}
_ACEOF
@ -208,7 +208,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -12989,7 +12989,7 @@ return dgeqrf_ ();
@@ -13502,7 +13502,7 @@ return dgeqrf_ ();
return 0;
}
_ACEOF
@ -217,7 +217,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -13053,7 +13053,7 @@ return DGEQRF ();
@@ -13566,7 +13566,7 @@ return DGEQRF ();
return 0;
}
_ACEOF
@ -226,7 +226,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -13117,7 +13117,7 @@ return DGEQRF_ ();
@@ -13630,7 +13630,7 @@ return DGEQRF_ ();
return 0;
}
_ACEOF
@ -235,7 +235,7 @@ diff -up configure.orig configure
if test -z "$ac_lib"; then
ac_res="none required"
else
@@ -13192,12 +13192,12 @@ if test -n "$OPENBLASPCDIR"; then
@@ -13705,12 +13705,12 @@ if test -n "$OPENBLASPCDIR"; then
pkg_cv_OPENBLASPCDIR="$OPENBLASPCDIR"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
@ -251,7 +251,7 @@ diff -up configure.orig configure
test "x$?" != "x0" && pkg_failed=yes
else
pkg_failed=yes
@@ -13412,7 +13412,7 @@ fi
@@ -13925,7 +13925,7 @@ fi
if test x$sage_spkg_install_openblas != xyes; then :
@ -261,10 +261,10 @@ diff -up configure.orig configure
if test x$sage_install_blas_pc = xyes; then :
diff -up src/sage/env.py.orig src/sage/env.py
--- src/sage/env.py.orig 2021-06-16 13:13:15.378722205 -0600
+++ src/sage/env.py 2021-06-16 13:42:26.443996772 -0600
@@ -209,7 +209,7 @@ MAXIMA = var("MAXIMA", "maxima")
MAXIMA_FAS = var("MAXIMA_FAS")
--- src/sage/env.py.orig 2021-08-26 13:39:46.040938448 -0600
+++ src/sage/env.py 2021-08-26 13:40:30.029000877 -0600
@@ -212,7 +212,7 @@ MAXIMA_FAS = var("MAXIMA_FAS")
KENZO_FAS = var("KENZO_FAS")
SAGE_NAUTY_BINS_PREFIX = var("SAGE_NAUTY_BINS_PREFIX", "")
ARB_LIBRARY = var("ARB_LIBRARY", "arb")
-CBLAS_PC_MODULES = var("CBLAS_PC_MODULES", "cblas:openblas:blas")
@ -272,9 +272,9 @@ diff -up src/sage/env.py.orig src/sage/env.py
ECL_CONFIG = var("ECL_CONFIG", "ecl-config")
NTL_INCDIR = var("NTL_INCDIR")
NTL_LIBDIR = var("NTL_LIBDIR")
@@ -408,7 +408,7 @@ def cython_aliases():
for lib in ['fflas-ffpack', 'givaro', 'gsl', 'linbox', 'Singular',
'libpng', 'gdlib', 'm4ri', 'zlib', 'cblas', 'lapack']:
@@ -456,7 +456,7 @@ def cython_aliases(required_modules=('ff
for lib, required in itertools.chain(((lib, True) for lib in required_modules),
((lib, False) for lib in optional_modules)):
var = lib.upper().replace("-", "") + "_"
- if lib == 'cblas':
+ if lib == 'cblas' or lib == 'lapack':

View file

@ -1,17 +0,0 @@
diff -up src/sage/all.py.orig src/sage/all.py
--- src/sage/all.py.orig 2020-10-24 11:37:59.000000000 -0600
+++ src/sage/all.py 2020-10-30 13:56:32.674557350 -0600
@@ -324,11 +324,11 @@ def _write_started_file():
Check that the file exists when Sage is running (note, this file is not
necessarily installed or used by downstream packages of Sage)::
- sage: started_file = os.path.join(SAGE_LOCAL, 'etc', 'sage-started.txt')
+ sage: started_file = os.path.join(DOT_SAGE, 'sage-started.txt')
sage: os.path.isfile(started_file) # optional - build
True
"""
- started_file = os.path.join(SAGE_LOCAL, 'etc', 'sage-started.txt')
+ started_file = os.path.join(DOT_SAGE, 'sage-started.txt')
# Current time with a resolution of 1 second
import datetime

View file

@ -1,12 +1,12 @@
diff -up src/sage/misc/cython.py.orig src/sage/misc/cython.py
--- src/sage/misc/cython.py.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/sage/misc/cython.py 2021-05-28 11:28:14.608518654 -0600
@@ -53,7 +53,7 @@ def _standard_libs_libdirs_incdirs_alias
'ec', 'gsl',
] + aliases["CBLAS_LIBRARIES"] + [
--- src/sage/misc/cython.py.orig 2021-08-26 13:10:09.114735665 -0600
+++ src/sage/misc/cython.py 2021-08-26 13:11:01.734797359 -0600
@@ -55,7 +55,7 @@ def _standard_libs_libdirs_incdirs_alias
'ntl']
- standard_libdirs = [os.path.join(SAGE_LOCAL, "lib")] + aliases["CBLAS_LIBDIR"] + aliases["NTL_LIBDIR"]
+ standard_libdirs = [os.path.realpath(os.path.join(SAGE_LOCAL, "lib"))] + aliases["CBLAS_LIBDIR"] + aliases["NTL_LIBDIR"]
standard_libdirs = []
if SAGE_LOCAL:
- standard_libdirs.append(os.path.join(SAGE_LOCAL, "lib"))
+ standard_libdirs.append(os.path.realpath(os.path.join(SAGE_LOCAL, "lib")))
standard_libdirs.extend(aliases["CBLAS_LIBDIR"] + aliases["NTL_LIBDIR"])
standard_incdirs = sage_include_directories() + aliases["CBLAS_INCDIR"] + aliases["NTL_INCDIR"]
return standard_libs, standard_libdirs, standard_incdirs, aliases

View file

@ -1,6 +1,6 @@
diff -up src/sage_docbuild/ext/multidocs.py.orig src/sage_docbuild/ext/multidocs.py
--- src/sage_docbuild/ext/multidocs.py.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/sage_docbuild/ext/multidocs.py 2021-05-28 11:32:20.056542939 -0600
--- src/sage_docbuild/ext/multidocs.py.orig 2021-08-22 02:44:34.000000000 -0600
+++ src/sage_docbuild/ext/multidocs.py 2021-08-26 13:11:24.937824557 -0600
@@ -84,8 +84,11 @@ def merge_environment(app, env):
for ind in newalldoc:
# treat subdocument source as orphaned file and don't complain
@ -16,26 +16,20 @@ diff -up src/sage_docbuild/ext/multidocs.py.orig src/sage_docbuild/ext/multidocs
newcite = {}
for ind, (path, tag, lineno) in citations.items():
diff -up src/sage/interfaces/singular.py.orig src/sage/interfaces/singular.py
--- src/sage/interfaces/singular.py.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/sage/interfaces/singular.py 2021-05-28 11:29:00.597523201 -0600
@@ -2365,7 +2365,7 @@ def generate_docstring_dictionary():
nodes.clear()
node_names.clear()
--- src/sage/interfaces/singular.py.orig 2021-08-26 13:11:24.940824561 -0600
+++ src/sage/interfaces/singular.py 2021-08-26 13:17:49.831262334 -0600
@@ -2370,11 +2370,11 @@ def generate_docstring_dictionary():
- singular_docdir = SINGULARPATH + "/../info/"
+ singular_docdir = "/usr/share/info/"
new_node = re.compile(r"File: singular\.hlp, Node: ([^,]*),.*")
new_lookup = re.compile(r"\* ([^:]*):*([^.]*)\..*")
@@ -2373,8 +2373,9 @@ def generate_docstring_dictionary():
L, in_node, curr_node = [], False, None
# singular.hlp contains a few iso-5559-1 encoded special characters
- with io.open(os.path.join(singular_docdir, 'singular.hlp'),
- encoding='latin-1') as f:
- from sage.libs.singular.singular import get_resource
- singular_info_file = get_resource('i')
+ singular_info_file = '/usr/share/info/singular.hlp.gz'
# singular.hlp contains a few iso-8859-1 encoded special characters
- with io.open(singular_info_file,
+ import gzip
+ with gzip.open(os.path.join(singular_docdir, 'singular.hlp.gz'),
+ encoding='utf-8') as f:
+ with gzip.open(singular_info_file,
encoding='latin-1') as f:
for line in f:
m = re.match(new_node,line)
if m:

View file

@ -1,6 +1,6 @@
diff -up src/bin/sage.orig src/bin/sage
--- src/bin/sage.orig 2021-05-09 16:00:11.000000000 -0600
+++ src/bin/sage 2021-05-28 11:16:43.936440802 -0600
--- src/bin/sage.orig 2021-08-22 02:44:33.000000000 -0600
+++ src/bin/sage 2021-08-26 13:09:38.262699484 -0600
@@ -109,7 +109,6 @@ usage() {
echo " --gap [...] -- run Sage's Gap with given arguments"
echo " --gp [...] -- run Sage's PARI/GP calculator with given arguments"
@ -9,7 +9,7 @@ diff -up src/bin/sage.orig src/bin/sage
echo " --maxima [...] -- run Sage's Maxima with given arguments"
echo " --mwrank [...] -- run Sage's mwrank with given arguments"
echo " --notebook=[...] -- start the Sage notebook (valid options are"
@@ -159,111 +158,6 @@ if [ -f "${SELF}-env-config" ]; then
@@ -160,111 +159,6 @@ if [ -f "${SELF}-env-config" ]; then
fi
#####################################################################
@ -121,12 +121,12 @@ diff -up src/bin/sage.orig src/bin/sage
# Report information about the Sage environment
#####################################################################
@@ -308,20 +202,6 @@ fi
@@ -309,20 +203,6 @@ fi
# Prepare for running Sage, either interactively or non-interactively.
sage_setup() {
- # Check that we're not in a source tarball which hasn't been built yet (#13561).
- if [ ! -z "$SAGE_LOCAL" ] && [ ! -x "$SAGE_LOCAL/bin/sage" ]; then
- if [ "$SAGE_SRC_ENV_CONFIG" = 1 ] && [ ! -z "$SAGE_VENV" ] && [ ! -x "$SAGE_VENV/bin/sage" ]; then
- echo >&2 '************************************************************************'
- echo >&2 'It seems that you are attempting to run Sage from an unpacked source'
- echo >&2 'tarball, but you have not compiled it yet (or maybe the build has not'
@ -142,7 +142,7 @@ diff -up src/bin/sage.orig src/bin/sage
if [ ! -d "$IPYTHONDIR" ]; then
# make sure that $DOT_SAGE exists so that ipython will happily
# create its config directories there. If DOT_SAGE doesn't
@@ -332,20 +212,6 @@ sage_setup() {
@@ -333,20 +213,6 @@ sage_setup() {
}
@ -153,7 +153,7 @@ diff -up src/bin/sage.orig src/bin/sage
-maybe_sage_location()
-{
- if [ -n "$SAGE_LOCAL" -a -w "$SAGE_LOCAL" ]; then
- if [ -x "$SAGE_LOCAL/bin/python" ] && [ -x "$SAGE_LOCAL/bin/sage-location" ]; then
- if [ -x "$SAGE_VENV/bin/python" ] && [ -x "$SAGE_VENV/bin/sage-location" ]; then
- sage-location || exit $?
- fi
- fi
@ -163,7 +163,7 @@ diff -up src/bin/sage.orig src/bin/sage
# Start an interactive Sage session, this function never returns.
interactive_sage() {
sage_setup
@@ -383,8 +249,6 @@ usage_advanced() {
@@ -384,8 +250,6 @@ usage_advanced() {
echo " --nodotsage -- run Sage without using the user's"
echo " .sage directory: create and use a temporary"
echo " .sage directory instead."
@ -172,7 +172,7 @@ diff -up src/bin/sage.orig src/bin/sage
echo " --simple-prompt -- pass the option through to IPython: use"
echo " this option with sage-shell mode in emacs"
if [ -n "$SAGE_SRC" -a -d "$SAGE_SRC" ]; then
@@ -418,18 +282,9 @@ usage_advanced() {
@@ -419,18 +283,9 @@ usage_advanced() {
echo " environment (not Sage), passing additional"
echo " additional options to IPython"
echo " --jupyter [...] -- run Sage's Jupyter with given arguments"
@ -191,7 +191,7 @@ diff -up src/bin/sage.orig src/bin/sage
echo " --python [...], --python3 [...]"
echo " -- run the Python 3 interpreter"
echo " -R [...] -- run Sage's R with the given arguments"
@@ -678,11 +533,6 @@ if [ "$1" = '-lisp' -o "$1" = '--lisp' ]
@@ -677,11 +532,6 @@ if [ "$1" = '-lisp' -o "$1" = '--lisp' ]
exec ecl "$@"
fi
@ -203,7 +203,7 @@ diff -up src/bin/sage.orig src/bin/sage
if [ "$1" = '-maxima' -o "$1" = '--maxima' ]; then
shift
maxima_cmd=$(sage-config MAXIMA 2>/dev/null)
@@ -707,11 +557,6 @@ if [ "$1" = '-R' -o "$1" = '--R' ]; then
@@ -706,11 +556,6 @@ if [ "$1" = '-R' -o "$1" = '--R' ]; then
exec R "$@"
fi
@ -215,7 +215,7 @@ diff -up src/bin/sage.orig src/bin/sage
#####################################################################
# sage --sh and sage --buildsh
#####################################################################
@@ -883,11 +728,6 @@ fi
@@ -877,11 +722,6 @@ fi
# build_sage, sage -b, sage -br, etc. could be moved to
# build/bin/sage-site. See #29111.
@ -227,7 +227,7 @@ diff -up src/bin/sage.orig src/bin/sage
if [[ "$1" =~ ^--notebook=.* || "$1" =~ ^-n=.* || "$1" =~ ^-notebook=.* ]] ; then
sage-cleaner &>/dev/null &
exec sage-notebook "$@"
@@ -898,13 +738,6 @@ if [ "$1" = "-notebook" -o "$1" = '--not
@@ -892,13 +732,6 @@ if [ "$1" = "-notebook" -o "$1" = '--not
exec sage-notebook "$@"
fi
@ -241,7 +241,7 @@ diff -up src/bin/sage.orig src/bin/sage
if [ -n "$SAGE_SRC" -a -d "$SAGE_SRC" ]; then
# Source inspection facilities, supported on sage-the-distribution and on distributions
# that package the Sage sources.
@@ -921,36 +754,11 @@ if [ -n "$SAGE_SRC" -a -d "$SAGE_SRC" ];
@@ -915,46 +748,18 @@ if [ -n "$SAGE_SRC" -a -d "$SAGE_SRC" ];
fi
fi
@ -278,7 +278,6 @@ diff -up src/bin/sage.orig src/bin/sage
exec-runtests() {
sage_setup
export PYTHONIOENCODING="utf-8" # Fix encoding for doctests
@@ -967,10 +775,7 @@ exec-runtests() {
exec sage-runtests "$@"
}
@ -290,7 +289,7 @@ diff -up src/bin/sage.orig src/bin/sage
if [ "$1" = '-tp' -o "$1" = '-btp' ]; then
shift
exec-runtests -p "$@"
@@ -980,34 +785,11 @@ if [ "$1" = '-t' -o "$1" = '-bt' -o "$1"
@@ -964,34 +769,11 @@ if [ "$1" = '-t' -o "$1" = '-bt' -o "$1"
fi
fi
@ -325,7 +324,7 @@ diff -up src/bin/sage.orig src/bin/sage
if [ "$1" = '-startuptime' -o "$1" = '--startuptime' ]; then
exec sage-startuptime.py "$@"
fi
@@ -1030,59 +812,11 @@ fi
@@ -1014,59 +796,11 @@ fi
# Creating and handling Sage distributions
#####################################################################
@ -385,7 +384,7 @@ diff -up src/bin/sage.orig src/bin/sage
#####################################################################
# Debugging tools
#####################################################################
@@ -1126,12 +860,6 @@ if [ "$1" = '-callgrind' -o "$1" = "--ca
@@ -1110,12 +844,6 @@ if [ "$1" = '-callgrind' -o "$1" = "--ca
exec sage-callgrind "$@"
fi

View file

@ -5,8 +5,8 @@
%bcond_with bundled_pexpect
%bcond_with bundled_ipython
%bcond_without bundled_ipywidgets
%bcond_without bundled_jupyter_jsmol
%bcond_without bundled_memory_allocator
%bcond_without bundled_thebe
%bcond_without bundled_threejs
%bcond_without install_hack
@ -19,7 +19,7 @@
%endif
# use a workaround to match upstream sagemath patched sphinx
%bcond_without sphinx_hack
%bcond_with sphinx_hack
# use workaround to match upstream sagemath patched cython
%bcond_with cython_hack
@ -41,26 +41,26 @@
%global elliptic_curves_pkg elliptic_curves-0.8.1
%global graphs_pkg graphs-20210214
%if %{with bundled_ipython}
%global ipython_ver 7.13.0
%global ipython_ver 7.16.1
%global ipython_pkg ipython-%{ipython_ver}
%global prompt_toolkit_ver 3.0.5
%global prompt_tookit_pkg prompt_toolkit-%{prompt_toolkit_ver}
%endif
%if %{with bundled_ipywidgets}
%global ipywidgets_ver 7.6.3
%global ipywidgets_pkg ipywidgets-%{ipywidgets_ver}
%endif
%if %{with bundled_jupyter_jsmol}
%global jupyter_jsmol_ver 0.2.4
%global jupyter_jsmol_pkg jupyter_jsmol-%{jupyter_jsmol_ver}
%endif
%if %{with bundled_memory_allocator}
%global memory_allocator_ver 0.1.0
%global memory_allocator_pkg memory_allocator-%{memory_allocator_ver}
%endif
%if %{with bundled_pexpect}
%global pexpect_pkg pexpect-4.8.0
%endif
%global polytopes_db_pkg polytopes_db-20170220
%global sagetex_pkg sagetex-3.5
%global Sphinx_pkg Sphinx-3.1.2
%global singular_pkg singular-4.2.0p2
%global Sphinx_pkg Sphinx-4.0.1
%global singular_pkg singular-4.2.0p3
%if %{with bundled_thebe}
%global thebe_ver 9624e0a0
%global thebe_pkg thebe-%{thebe_ver}
@ -71,7 +71,7 @@
%endif
# Spkg equivalents of required rpms; we pretend they are installed as spkgs.
%global SAGE_REQUIRED_PKGS 4ti2-1.6.9 bliss-0.73 CoCoALib-0.99712 coxeter3-3.1 cryptominisat-5.8.0 database_cremona_ellcurve-%{cremona_ver} gap_packages-4.11.0 libsirocco-2.0.2 lrslib-071a mcqd-1.0 meataxe-1.0 primecount-7.0 qepcad-B.1.74 saclib-2.2.8 surf-1.0.6-gcc6 tdlib-0.9.0
%global SAGE_REQUIRED_PKGS 4ti2-1.6.9 bliss-0.73 CoCoALib-0.99713 coxeter3-3.1 cryptominisat-5.8.0 database_cremona_ellcurve-%{cremona_ver} gap_packages-4.11.1 libsirocco-2.1.0 lrslib-071b mcqd-1.0 meataxe-1.0 primecount-7.1 qepcad-B.1.74 saclib-2.2.8 surf-1.0.6-gcc6 tdlib-0.9.1
%ifarch %{ix86} x86_64
%global SAGE_REQUIRED_PKGS %{SAGE_REQUIRED_PKGS} fes-0.2
@ -88,8 +88,8 @@
Name: sagemath
Summary: A free open-source mathematics software system
Version: 9.3
Release: 5%{?dist}
Version: 9.4
Release: 1%{?dist}
# The file ${SAGE_ROOT}/COPYING.txt is the upstream license breakdown file
# Additionally, every $files section has a comment with the license name
# before files with that license
@ -127,9 +127,6 @@ Patch4: %{name}-rpmbuild.patch
# build documentation in buildroot environment
Patch5: %{name}-sagedoc.patch
# do not attempt to create state files in system directories
Patch6: %{name}-readonly.patch
# work with all maxima-runtime lisp backend packages
Patch7: %{name}-maxima.patch
@ -188,9 +185,6 @@ Patch23: %{name}-intersphinx.patch
# Remove an unused call to a primecount function that no longer exists
Patch24: %{name}-primecount.patch
# Adapt to recent changes in eclib
Patch25: %{name}-eclib.patch
BuildRequires: 4ti2
BuildRequires: appstream
BuildRequires: arb-devel
@ -198,6 +192,7 @@ BuildRequires: bc
BuildRequires: bliss-devel
BuildRequires: boost-devel
BuildRequires: brial-devel
BuildRequires: chrpath
BuildRequires: cmake
BuildRequires: cddlib-devel
BuildRequires: cddlib-tools
@ -331,7 +326,6 @@ BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(pynac)
BuildRequires: pkgconfig(readline)
BuildRequires: pkgconfig(Singular)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(tk)
BuildRequires: pkgconfig(zlib)
BuildRequires: planarity-devel
@ -366,6 +360,7 @@ BuildRequires: %{py3_dist ipykernel}
%if %{without bundled_ipython}
BuildRequires: %{py3_dist ipython}
%endif
BuildRequires: %{py3_dist ipywidgets}
%if %{with bundled_ipython}
BuildRequires: %{py3_dist jedi}
%endif
@ -385,8 +380,10 @@ BuildRequires: %{py3_dist pickleshare}
%endif
BuildRequires: %{py3_dist pip}
BuildRequires: %{py3_dist pkgconfig}
BuildRequires: %{py3_dist pluggy}
BuildRequires: %{py3_dist psutil}
BuildRequires: %{py3_dist ptyprocess}
BuildRequires: %{py3_dist py}
BuildRequires: %{py3_dist pycryptosat}
BuildRequires: %{py3_dist pyopenssl}
%if %{with bundled_ipython}
@ -403,7 +400,9 @@ BuildRequires: %{py3_dist simplegeneric}
BuildRequires: %{py3_dist six}
BuildRequires: %{py3_dist sphinx}
BuildRequires: %{py3_dist sympy}
BuildRequires: %{py3_dist toml}
BuildRequires: %{py3_dist tox}
BuildRequires: %{py3_dist typing-extensions}
BuildRequires: %{py3_dist wheel}
BuildRequires: %{py3_dist widgetsnbextension}
BuildRequires: %{py3_dist zodb3}
@ -542,6 +541,7 @@ Requires: %{py3_dist ipykernel}
%if %{without bundled_ipython}
Requires: %{py3_dist ipython}
%endif
Requires: %{py3_dist ipywidgets}
%if %{with bundled_ipython}
Requires: %{py3_dist jedi}
%endif
@ -581,12 +581,12 @@ Requires: texlive
Provides: bundled(ipython) = %{ipython_ver}
Provides: bundled(prompt_toolkit) = %{prompt_toolkit_ver}
%endif
%if %{with bundled_ipywidgets}
Provides: bundled(ipywidgets) = %{ipywidgets_ver}
%endif
%if %{with bundled_jupyter_jsmol}
Provides: bundled(jupyter-jsmol) = %{jupyter_jsmol_ver}
%endif
%if %{with bundled_memory_allocator}
Provides: bundled(memory-allocator) = %{memory_allocator_ver}
%endif
%description core
This package contains the core sagemath python modules.
@ -841,13 +841,6 @@ pushd build/pkgs/prompt_toolkit
popd
%endif
%if %{with bundled_ipywidgets}
pushd build/pkgs/ipywidgets
tar zxf ../../../upstream/%{ipywidgets_pkg}.tar.gz
mv %{ipywidgets_pkg} src
popd
%endif
%if %{with bundled_jupyter_jsmol}
pushd build/pkgs/jupyter_jsmol
tar zxf ../../../upstream/%{jupyter_jsmol_pkg}.tar.gz
@ -855,6 +848,13 @@ pushd build/pkgs/jupyter_jsmol
popd
%endif
%if %{with bundled_memory_allocator}
pushd build/pkgs/memory_allocator
tar zxf ../../../upstream/%{memory_allocator_pkg}.tar.gz
mv %{memory_allocator_pkg} src
popd
%endif
%if %{with bundled_pexpect}
pushd build/pkgs/pexpect
tar zxf ../../../upstream/%{pexpect_pkg}.tar.gz
@ -898,9 +898,8 @@ popd
%if %{with bundled_threejs}
pushd build/pkgs/threejs
mkdir src
cd src
tar zxf ../../../../upstream/%{threejs_pkg}.tar.gz
tar zxf ../../../upstream/%{threejs_pkg}.tar.gz
mv %{threejs_pkg} src
popd
%endif
@ -910,7 +909,6 @@ popd
%patch3
%patch4
%patch5
%patch6
%patch7
%patch8
%patch9
@ -932,11 +930,8 @@ popd
%patch22
%patch23
%patch24
%patch25
sed -e 's|@@SAGE_ROOT@@|%{SAGE_ROOT}|' \
-e 's|@@SAGE_DOC@@|%{SAGE_DOC}|' \
-e 's|@@SAGE_LOCAL@@|%{SAGE_LOCAL}|' \
sed -e 's|@@SAGE_LOCAL@@|%{SAGE_LOCAL}|' \
-e 's|@@LIBDIR@@|%{_libdir}|g' \
-i src/sage/env.py
@ -975,7 +970,6 @@ sed -i 's,%{_bindir}/python,&3,' src/sage/misc/dev_tools.py
sed -e 's,local/bin/python,bin/python,' \
-e 's,#!%{_bindir}/python,&3,' \
-i src/sage/repl/preparse.py
sed -i 's,$SAGE_LOCAL/bin/python,%{_bindir}/python,g' src/bin/sage
%if %{with bundled_ipython}
sed -e "s|'%{_bindir}/env', 'which'|'%{_bindir}/which'|" \
-i build/pkgs/ipython/src/IPython/utils/_process_posix.py
@ -993,20 +987,6 @@ sed -i 's/yum/rpm/' build/bin/sage-guess-package-system
# Allow use of python 3.10
sed -i 's/3\.10\.0/3.11.0/g' configure
# Allow use of GCC 11
sed -i 's/1\[1-9\]/1[2-9]/' configure
# Allow use of pari 2.13.1
sed -e 's/Mod(0, 2)/0/' \
-e 's,share/doc/pari/pari\.cfg,%{_lib}/pari/pari.cfg,' \
-i configure
# Allow use of fplll 5.4.1
sed -i 's/5\.4\.0/5.4.1/g' configure
# Allow use of giac 1.7
sed -i 's/1\.6\.999/1.7.999/g' configure
# Do not build with -march=native
sed -i 's/CFLAGS_MARCH="-march=native"/CFLAGS_MARCH=""/' configure
@ -1044,13 +1024,14 @@ ln -sf %{_datadir} $SAGE_LOCAL/share
export PATH=%{buildroot}%{_bindir}:$PATH
export PYTHON=%{_bindir}/python3
export PYTHONPATH=%{buildroot}%{python3_sitearch}:$PYTHONPATH
export PYTHONPATH=%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}:$PYTHONPATH
#------------------------------------------------------------------------
# Run the configure script to generate files
export GSL_LIBS="-lgsl -lflexiblas -lm"
%configure \
--prefix=$SAGE_LOCAL \
--disable-rpath \
--disable-silent-rules \
--enable-4ti2 \
--enable-bliss \
@ -1091,15 +1072,15 @@ pushd build/pkgs/prompt_toolkit/src
popd
%endif
%if %{with bundled_ipywidgets}
pushd build/pkgs/ipywidgets/src
%if %{with bundled_jupyter_jsmol}
pushd build/pkgs/jupyter_jsmol/src
%{python3} setup.py build
%{python3} setup.py install --root %{_builddir}
popd
%endif
%if %{with bundled_jupyter_jsmol}
pushd build/pkgs/jupyter_jsmol/src
%if %{with bundled_memory_allocator}
pushd build/pkgs/memory_allocator/src
%{python3} setup.py build
%{python3} setup.py install --root %{_builddir}
popd
@ -1119,6 +1100,7 @@ popd
# Restore environment used to generate bundled interfaces
export PATH=$save_PATH
export SAGE_LOCAL=$save_LOCAL
export PYTHONPATH=$PYTHONPATH:%{_builddir}%{python3_sitelib}:%{_builddir}%{python3_sitearch}
mkdir -p %{buildroot}%{SAGE_SPKG_INST}
mkdir -p %{buildroot}%{_libdir}/sagemath/build/pkgs
@ -1158,8 +1140,8 @@ mkdir -p $DOT_SAGE/tmp
export PATH=%{buildroot}%{_bindir}:$PATH
export PYTHON=%{_bindir}/python3
export PYTHONPATH=%{buildroot}%{python3_sitearch}:$PYTHONPATH
export PYTHONPATH=%{_builddir}%{python3_sitearch}:$PYTHONPATH
export PYTHONPATH=%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}:$PYTHONPATH
export PYTHONPATH=%{_builddir}%{python3_sitearch}:%{_builddir}%{python3_sitelib}:$PYTHONPATH
#------------------------------------------------------------------------
mkdir -p %{buildroot}%{_bindir}
@ -1315,13 +1297,13 @@ mv %{_builddir}%{_bindir}/ip* %{buildroot}%{SAGE_LOCAL}/bin
%endif
#------------------------------------------------------------------------
%if %{with bundled_ipywidgets}
mv %{_builddir}%{python3_sitelib}/ipywidgets* %{buildroot}%{SAGE_PYTHONPATH}
%if %{with bundled_jupyter_jsmol}
mv %{_builddir}%{python3_sitelib}/jupyter_jsmol* %{buildroot}%{SAGE_PYTHONPATH}
%endif
#------------------------------------------------------------------------
%if %{with bundled_jupyter_jsmol}
mv %{_builddir}%{python3_sitelib}/jupyter_jsmol* %{buildroot}%{SAGE_PYTHONPATH}
%if %{with bundled_memory_allocator}
mv %{_builddir}%{python3_sitearch}/memory_allocator* %{buildroot}%{SAGE_PYTHONPATH}
%endif
#------------------------------------------------------------------------
@ -1408,7 +1390,7 @@ pushd src/doc
export PATH=%{buildroot}%{_bindir}:$SAGE_LOCAL/bin:$PATH
export SINGULARPATH=%{_datadir}/singular/LIB
export SINGULAR_BIN_DIR=%{_libdir}/Singular
export PYTHONPATH=$SAGE_SETUP:%{buildroot}%{python3_sitearch}:$SAGE_PYTHONPATH:$SAGE_SRC
export PYTHONPATH=$SAGE_SETUP:%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}:$SAGE_PYTHONPATH:$SAGE_SRC
%if %{with sphinx_hack}
pushd ../../build/pkgs/sphinx/src
@ -1458,6 +1440,13 @@ perl -pi -e 's|%{buildroot}||g;' \
# with docs
%endif
# Even more wrong buildroot references
for shared in $(find %{buildroot}%{python3_sitearch} -name \*.so); do
if chrpath -l $shared | grep -Fq BUILDROOT; then
chrpath -r %{SAGE_LOCAL}/lib $shared
fi
done
#------------------------------------------------------------------------
# Fix links
export SAGE_SRC=%{buildroot}%{SAGE_SRC}
@ -1617,7 +1606,7 @@ popd
#------------------------------------------------------------------------
# Build the large Cremona database
export PATH=%{buildroot}%{SAGE_LOCAL}/bin:$PATH
export PYTHONPATH=%{buildroot}%{SAGE_PYTHONPATH}:%{buildroot}%{python3_sitearch}
export PYTHONPATH=%{buildroot}%{SAGE_PYTHONPATH}:%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}
touch %{buildroot}%{SAGE_SHARE}/cremona/cremona.db
cat > cremona.sage << EOF
import sage.env
@ -1784,12 +1773,12 @@ end
%{SAGE_PYTHONPATH}/IPython
%{SAGE_PYTHONPATH}/prompt_toolkit*
%endif
%if %{with bundled_ipywidgets}
%{SAGE_PYTHONPATH}/ipywidgets*
%endif
%if %{with bundled_jupyter_jsmol}
%{SAGE_PYTHONPATH}/jupyter_jsmol*
%endif
%if %{with bundled_memory_allocator}
%{SAGE_PYTHONPATH}/memory_allocator*
%endif
#------------------------------------------------------------------------
%files data
@ -1985,7 +1974,7 @@ end
%{SAGE_ETC}/notebook-ipython/
# LGPLv2+
%{_datadir}/jupyter/kernels/sagemath/
%{_datadir}/jupyter/nbextensions/threejs
%{_datadir}/jupyter/nbextensions/threejs-sage
#------------------------------------------------------------------------
%files sagetex
@ -1997,6 +1986,13 @@ end
########################################################################
%changelog
* Fri Aug 27 2021 Jerry James <loganjerry@gmail.com> - 9.4-1
- Version 9.4
- Drop upstreamed -eclib patch
- Drop unnecessary -readonly patch
- Unbundle ipywidgets
- Bundle memory_allocator for now
* Wed Aug 18 2021 Jerry James <loganjerry@gmail.com> - 9.3-5
- Unbundle flintqs
- Require gp2c and pari-nftables

View file

@ -1,2 +1,2 @@
SHA512 (cremona-2019-10-29.tar.gz) = 32fbb828f26f87191e39123762cfbd796aac9abf346f0dc981e8e3f390435b22d281be3031ea92ae7e18f4ce41af8054784ca0d550a08f17b05c54ca08b4c9c8
SHA512 (sage-9.3.tar.gz) = e5775aeff52fde3176f73340050e373e010a96f965c4b939b2ab105a941260d163185be2495ad38de6fbcaed81e897b6ad4180874ccfc778542beb79287bc912
SHA512 (sage-9.4.tar.gz) = cb634a14c5c594e1f76b1d1aa0fdd38560ffc5190df440e9e7d580eee7ddd7f7935d11fb993521eb26c6f68b7c76d1e4c146c53d3bc14435b9c8fb7dc9e56517