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

Commit 2975c87

Browse files
author
Travis Scrimshaw
committedJan 4, 2014
Merge branch 'develop' into public/monoids/15289-indexed
* develop: (95 commits) Trac #14858: more robust type checks for arith.py Updated Sage version to 6.1.beta3 Trac #11271: making the curve inaccessible + documentation Trac #11271: Corrections to is_surjective in Galois representations over Q. sage-sdist: copy upstream tarballs using sage-spkg Fixed docbuild. Removed removed file from doc. Fix wrong NOTE block. Where possible, remove optional - database_stein_watkins Stein-Watkins database: reviewer patch buid/deps : added a dependency of freetype on libpng in order to work around a build-time race condition. Replace bytes_to_long/long_to_bytes by ord/chr. Revert "Filter pycrypto warning about insecure modular exponentiaiton." first version of the git-trac package Filter pycrypto warning about insecure modular exponentiaiton. Update PyCrypto to version 2.6.1. Let PyCrypto build on FreeBSD. trac #15435: WeylGroup and CoxeterGroup to groups.<tab> trac #15369: Alias groups.misc.AdditiveCyclic to IntegerModRing Fix for comparison of padics. ...
2 parents 545a8df + 075c388 commit 2975c87

File tree

156 files changed

+15131
-7753
lines changed

Some content is hidden

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

156 files changed

+15131
-7753
lines changed
 

‎VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Sage version 6.1.beta2, released 2013-12-23
1+
Sage version 6.1.beta3, released 2014-01-04

‎build/deps

+6-5
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ all-sage: \
8080
$(INST)/$(PALP) \
8181
$(INST)/$(PARI) \
8282
$(INST)/$(PEXPECT) \
83-
$(INST)/$(PIL) \
83+
$(INST)/$(PILLOW) \
8484
$(INST)/$(POLYBORI) \
8585
$(INST)/$(POLYTOPES_DB) \
8686
$(INST)/$(PPL) \
@@ -311,7 +311,7 @@ $(INST)/$(SQLITE): $(INST)/$(READLINE)
311311
# SageTeX, you actually need to run Sage, produce plots,...
312312
$(INST)/$(SAGETEX): $(INST)/$(PYTHON) \
313313
$(SAGERUNTIME) $(INST)/$(MAXIMA) $(INST)/$(SCIPY) \
314-
$(INST)/$(MATPLOTLIB) $(INST)/$(PIL) $(INST)/$(TACHYON)
314+
$(INST)/$(MATPLOTLIB) $(INST)/$(PILLOW) $(INST)/$(TACHYON)
315315
+$(PIPE) "$(SAGE_SPKG) $(SAGETEX) 2>&1" "tee -a $(SAGE_LOGS)/$(SAGETEX).log"
316316

317317
$(INST)/$(SETUPTOOLS): $(INST)/$(PYTHON)
@@ -336,7 +336,7 @@ $(INST)/$(ZLIB):
336336
$(INST)/$(JMOL): $(INST)/$(SAGENB)
337337
+$(PIPE) "$(SAGE_SPKG) $(JMOL) 2>&1" "tee -a $(SAGE_LOGS)/$(JMOL).log"
338338

339-
$(INST)/$(FREETYPE):
339+
$(INST)/$(FREETYPE): $(INST)/$(LIBPNG)
340340
+$(PIPE) "$(SAGE_SPKG) $(FREETYPE) 2>&1" "tee -a $(SAGE_LOGS)/$(FREETYPE).log"
341341

342342
$(INST)/$(LIBPNG): $(INST)/$(ZLIB)
@@ -484,8 +484,8 @@ $(INST)/$(GCC): $(INST)/$(MPIR) $(INST)/$(MPFR) $(INST)/$(MPC) \
484484
$(INST)/$(ZLIB)
485485
+$(PIPE) "$(SAGE_SPKG) $(GCC) 2>&1" "tee -a $(SAGE_LOGS)/$(GCC).log"
486486

487-
$(INST)/$(PIL): $(INST)/$(PYTHON)
488-
+$(PIPE) "$(SAGE_SPKG) $(PIL) 2>&1" "tee -a $(SAGE_LOGS)/$(PIL).log"
487+
$(INST)/$(PILLOW): $(INST)/$(PYTHON) $(INST)/$(SETUPTOOLS)
488+
+$(PIPE) "$(SAGE_SPKG) $(PILLOW) 2>&1" "tee -a $(SAGE_LOGS)/$(PILLOW).log"
489489

490490
$(INST)/$(NUMPY): $(INST)/$(PYTHON) $(INST)/$(ATLAS)
491491
+$(PIPE) "$(SAGE_SPKG) $(NUMPY) 2>&1" "tee -a $(SAGE_LOGS)/$(NUMPY).log"
@@ -507,6 +507,7 @@ $(INST)/$(CEPHES):
507507
# setuptools forgets to update easy-install.pth during parallel
508508
# builds, so we build the relevant packages serially.
509509

510+
$(INST)/$(SQLALCHEMY): $(INST)/$(PILLOW)
510511
$(INST)/$(PYGMENTS): $(INST)/$(SQLALCHEMY)
511512
$(INST)/$(JINJA2): $(INST)/$(PYGMENTS)
512513
$(INST)/$(SPHINX): $(INST)/$(JINJA2)

0 commit comments

Comments
 (0)
This repository has been archived.