Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 3678400

Browse files
committed
Merge tag '8.1.rc3' into t/22079/infinite_loop_in_ceil___function
SageMath version 8.1.rc3
2 parents 5f6b998 + 20007d5 commit 3678400

File tree

1,042 files changed

+49314
-27759
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,042 files changed

+49314
-27759
lines changed

COPYING.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ extcode GPLv2+
5454
fflas_ffpack LGPLv2.1+
5555
flint GPLv2+
5656
flintqs GPLv2+
57+
fplll LGPLv2.1+
5758
freetype FreeType License (similar to BSD; see below)
5859
gap GPLv2+
5960
gcc GPLv3+
@@ -72,7 +73,6 @@ jinja2 Modified BSD
7273
jmol LGPLv2.1+
7374
jsonschema MIT License
7475
lcalc GPLv2+
75-
libfplll LGPLv2.1+
7676
libgap GPLv3+
7777
libpng Custom, very similar to zlib
7878
linbox LGPLv2.1+

VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 8.1.beta5, Release Date: 2017-09-11
1+
SageMath version 8.1.rc3, Release Date: 2017-11-23

build/bin/sage-spkg

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ while true; do
220220
-s)
221221
export SAGE_KEEP_BUILT_SPKGS=yes;;
222222
-c|--check)
223-
SAGE_CHECK_PACKAGES=x # nonempty, so not set to '!python2' later
223+
SAGE_CHECK_PACKAGES=x # nonempty, so not set to default later
224224
export SAGE_CHECK=yes;;
225225
-*)
226226
echo >&2 "Error: unknown option '$1'"
@@ -615,7 +615,7 @@ fi
615615
if [ "$USE_LOCAL_SCRIPTS" = yes ]; then
616616
# New-style package
617617
echo "Setting up build directory for $PKG_NAME"
618-
cp -Rp "$PKG_SCRIPTS" "$PKG_NAME"
618+
cp -RLp "$PKG_SCRIPTS" "$PKG_NAME"
619619
cd "$PKG_NAME" || exit $?
620620

621621
sage-uncompress-spkg -d src "$PKG_SRC"
@@ -767,7 +767,7 @@ fi
767767
# Since Python's self-tests seem to fail on all platforms, we disable
768768
# its test suite by default.
769769
if [ -z "$SAGE_CHECK_PACKAGES" ]; then
770-
SAGE_CHECK_PACKAGES='!python2'
770+
SAGE_CHECK_PACKAGES='!python2,!python3'
771771
fi
772772
# Allow spaces, commas, or colons as separator (the documentation suggests commas).
773773
if echo ",$SAGE_CHECK_PACKAGES," | grep -i "[ ,:]\!$PKG_BASE[ ,:]" > /dev/null ; then

build/make/deps

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ $(STARTED): $(STANDARD_PACKAGES)
102102
#
103103
# This consists of packages which are required for the Sage build system.
104104
###############################################################################
105-
base: $(inst_bzip2) $(inst_patch) $(inst_pkgconf)
105+
base: $(inst_patch) $(inst_pkgconf)
106106

107107
###############################################################################
108108
# Building normal packages
@@ -203,7 +203,7 @@ $(SAGE_EXTCODE)/%: $(SAGE_SRC)/ext/%
203203
# documented modules are imported and because we use matplotlib to
204204
# produce plots.
205205
DOC_DEPENDENCIES = sagelib $(inst_sphinx) $(inst_sagenb) \
206-
| $(SAGERUNTIME) $(inst_maxima) $(inst_networkx) $(inst_scipy) \
206+
| $(SAGERUNTIME) $(inst_maxima) $(inst_networkx) $(inst_scipy) $(inst_sympy) \
207207
$(inst_matplotlib) $(inst_pillow) $(inst_mathjax) $(inst_mpmath) \
208208
$(inst_ipykernel) $(inst_jupyter_client) $(inst_conway_polynomials) \
209209
$(inst_tachyon) $(inst_jmol) $(inst_thebe) $(inst_ipywidgets) $(inst_typing)

build/pkgs/alabaster/spkg-install

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cd src && $PIP_INSTALL .
1+
cd src && sdh_pip_install .

build/pkgs/appnope/spkg-install

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cd src
22

33
# Only install this package on OS X
44
if python -c 'from sys import *; exit(0 if platform == "darwin" else 1)'; then
5-
$PIP_INSTALL . || exit $?
5+
sdh_pip_install .
66
else
77
echo "Not OS X, skipping installation of package 'appnope'"
88
fi

build/pkgs/arb/checksums.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=arb-VERSION.tar.gz
2-
sha1=fcca9134006e77cde5f2024f36150e823bf731ae
3-
md5=b6b94a39b71293b6811a191cb9542096
4-
cksum=248634837
2+
sha1=2f06bfb433cdaecde0e824c5e638094fd666a0d1
3+
md5=d63cdd1147104790826c93bc8651104f
4+
cksum=2745482665

build/pkgs/arb/package-version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.1.p1
1+
2.11.1.p0

0 commit comments

Comments
 (0)