Update to sagemath 8.2.

Also:
- Create the sagemath-data-combinatorial_designs subpackage.
- Create the sagemath-notebook-export subpackage.
- Unbundle the LaTeX makecmds style.
- Install LaTeX style files in a more canonical place.
This commit is contained in:
Jerry James 2018-06-03 07:13:30 -06:00
parent b46cd4759a
commit 925e91dade
28 changed files with 743 additions and 795 deletions

View file

@ -1,18 +1,16 @@
diff -up src/sage/interfaces/qepcad.py.orig src/sage/interfaces/qepcad.py
--- src/sage/interfaces/qepcad.py.orig 2017-11-08 08:28:33.908219253 -0500
+++ src/sage/interfaces/qepcad.py 2017-11-08 08:28:43.336219614 -0500
@@ -530,8 +530,8 @@ TESTS:
--- src/sage/interfaces/qepcad.py.orig 2018-05-05 16:21:24.000000000 -0600
+++ src/sage/interfaces/qepcad.py 2018-05-16 13:58:34.360913275 -0600
@@ -530,7 +530,7 @@ TESTS:
Check the qepcad configuration file::
- sage: open('%s/default.qepcadrc'%SAGE_LOCAL).readlines()[-1]
- 'SINGULAR .../bin\n'
+ sage: open('/usr/share/qepcad/default.qepcadrc').readlines()[-1]
+ 'SINGULAR /usr/bin\n'
- sage: with open(os.path.join(SAGE_LOCAL, 'default.qepcadrc')) as f:
+ sage: with open('/usr/share/qepcad/default.qepcadrc')) as f:
....: f.readlines()[-1]
'SINGULAR .../bin\n'
Tests related to the not tested examples (nondeterministic order of atoms)::
@@ -607,7 +607,6 @@ from __future__ import print_function
@@ -608,7 +608,6 @@ from __future__ import print_function
from __future__ import absolute_import
from six import string_types
@ -20,7 +18,7 @@ diff -up src/sage/interfaces/qepcad.py.orig src/sage/interfaces/qepcad.py
import pexpect
import re
import sys
@@ -620,6 +619,8 @@ from sage.docs.instancedoc import instan
@@ -621,6 +620,8 @@ from sage.docs.instancedoc import instan
from .expect import Expect, ExpectFunction, AsciiArtString
@ -29,7 +27,7 @@ diff -up src/sage/interfaces/qepcad.py.orig src/sage/interfaces/qepcad.py
def _qepcad_atoms(formula):
r"""
Return the atoms of a qepcad quantifier-free formula, as a set of strings.
@@ -649,17 +650,17 @@ def _qepcad_cmd(memcells=None):
@@ -650,17 +651,17 @@ def _qepcad_cmd(memcells=None):
sage: from sage.interfaces.qepcad import _qepcad_cmd
sage: s = _qepcad_cmd()
@ -50,7 +48,7 @@ diff -up src/sage/interfaces/qepcad.py.orig src/sage/interfaces/qepcad.py
_command_info_cache = None
@@ -684,7 +685,7 @@ def _update_command_info():
@@ -685,7 +686,7 @@ def _update_command_info():
cache = {}