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

Commit d641083

Browse files
committed
Merge branch 'develop' into t/21249/realsets_fail_their_testsuite___test_category___test_pickling
2 parents c71e098 + 457b950 commit d641083

File tree

883 files changed

+20376
-9091
lines changed

Some content is hidden

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

883 files changed

+20376
-9091
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 7.6.beta4, Release Date: 2017-02-14
1+
SageMath version 7.6.rc0, Release Date: 2017-03-12

build/bin/sage-logger

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,17 @@ else
6060
SED=cat
6161
fi
6262

63+
# Store the current value of V, but do all logging of child processes
64+
# with V=1 to ensure that no information is lost.
65+
currentV=$V
66+
export V=1
67+
6368
mkdir -p "$logdir"
6469

65-
if [[ "$V" = 0 && $use_prefix = true ]]; then
70+
if [[ "$currentV" = 0 && $use_prefix = true ]]; then
6671
# Silent build.
6772
# Similar to https://www.gnu.org/software/automake/manual/html_node/Automake-Silent-Rules.html#Automake-Silent-Rules
6873
echo "[$logname] installing. Log file: $logfile"
69-
# Use verbose mode for output to logfiles.
70-
export V=1
7174
( exec>> $logfile 2>&1 ; eval "$cmd" )
7275
status=$?
7376
if [[ $status != 0 ]]; then

build/make/deps

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ sagelib: \
146146
$(inst_planarity) \
147147
$(inst_ppl) \
148148
$(inst_pynac) \
149-
$(PYTHON) \
149+
$(inst_python2) \
150+
$(inst_python3) \
150151
$(inst_ratpoints) \
151152
$(inst_readline) \
152153
$(inst_rw) \
@@ -200,7 +201,7 @@ DOC_DEPENDENCIES = sagelib $(inst_sphinx) $(inst_sagenb) \
200201
| $(SAGERUNTIME) $(inst_maxima) $(inst_networkx) $(inst_scipy) \
201202
$(inst_matplotlib) $(inst_pillow) $(inst_mathjax) $(inst_mpmath) \
202203
$(inst_ipykernel) $(inst_jupyter_client) $(inst_conway_polynomials) \
203-
$(inst_tachyon) $(inst_jmol) $(inst_thebe)
204+
$(inst_tachyon) $(inst_jmol) $(inst_thebe) $(inst_ipywidgets)
204205

205206
doc: doc-html
206207

build/pkgs/configure/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=f217d9ec85b7d0e8b6d6b8c9879b027e5e983709
3-
md5=5e76dd251dd6ad8fa2465b1d590173eb
4-
cksum=3094273803
2+
sha1=6f78567b00c4e2420368526ff172f22a59fa3f4a
3+
md5=c187e0d86960a61d32dbce29ec101b98
4+
cksum=3689960718
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
206
1+
209

build/pkgs/functools32/spkg-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ -z "$SAGE_LOCAL" ]; then
66
exit 1
77
fi
88

9-
if [ -x "$SAGE_LOCAL/bin/python3" ]; then
9+
if [ -n -x "$SAGE_LOCAL/bin/python2" ]; then
1010
echo "Skipping functools32 since it is not necessary on Python 3"
1111
exit 0
1212
fi

build/pkgs/gap3/spkg-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ echo "INSTALL_DIR = $INSTALL_DIR"
2020
## INSTALLATION
2121
###########################################
2222

23-
cd src
23+
cd src/src
2424
$MAKE
2525
if [ $? -ne 0 ]; then
2626
echo >&2 "Error building $PACKAGE_SHORTNAME."

build/pkgs/gdb/spkg-install

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ fi
88

99
cd src
1010

11-
LDFLAGS="${LDFLAGS} -L${SAGE_LOCAL}/lib"
11+
# We add -ltinfo flag to let gdb compile on some 32bit VM, see #22487.
12+
LDFLAGS="${LDFLAGS} -L${SAGE_LOCAL}/lib -ltinfo"
1213
export LDFLAGS
1314

1415
./configure --prefix="$SAGE_LOCAL" --libdir="$SAGE_LOCAL/lib" \
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=ipywidgets-VERSION.tar.gz
2-
sha1=f4f57d78fe6e89ef87e9eee31dd9e3f15d1e8601
3-
md5=317e49cc76353352939c2527920f3ebe
4-
cksum=1256350577
2+
sha1=3ec713b82cc415ebe63e2971cc7acae28e89d657
3+
md5=245c978e0ca64b9e686b716c71efb675
4+
cksum=3038350627
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.2.2.p1
1+
6.0.0

0 commit comments

Comments
 (0)