This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into t/20312/parent_of_argument_lost_with_func…
…tions
- Loading branch information
Showing
472 changed files
with
17,099 additions
and
5,486 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SageMath version 7.2.beta5, Release Date: 2016-04-21 | ||
SageMath version 7.2.rc0, Release Date: 2016-05-05 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
= alabaster = | ||
|
||
== Description == | ||
|
||
Alabaster is a visually (c)lean, responsive, configurable theme for the Sphinx | ||
documentation system. It is Python 2+3 compatible. | ||
|
||
It began as a third-party theme, and is still maintained separately, but as of | ||
Sphinx 1.3, Alabaster is an install-time dependency of Sphinx and is selected | ||
as the default theme. | ||
|
||
Live examples of this theme can be seen on paramiko.org, fabfile.org and | ||
pyinvoke.org. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tarball=alabaster-VERSION.tar.gz | ||
sha1=ff3e575ee7eb4ba1721f17d91ec5a54b16283603 | ||
md5=957c665d7126dea8121f98038debcba7 | ||
cksum=738605178 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$(PYTHON) | pip | ||
|
||
---------- | ||
All lines of this file are ignored except the first. | ||
It is copied by SAGE_ROOT/build/make/install into SAGE_ROOT/build/make/Makefile. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.7.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd src && python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
standard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- a/common.mk 2016-04-07 15:53:44.907758600 +0200 | ||
+++ b/common.mk 2016-04-07 15:54:02.599770500 +0200 | ||
@@ -3,6 +3,6 @@ | ||
-I$(top_srcdir)/libpolybori/include | ||
|
||
AM_CFLAGS = -std=c99 | ||
-AM_CXXFLAGS = -std=c++98 -ftemplate-depth-100 | ||
+AM_CXXFLAGS = -std=gnu++98 -ftemplate-depth-100 | ||
|
||
AM_DEFAULT_SOURCE_EXT = .cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
diff --git a/Cudd/cudd/Makefile.in b/Cudd/cudd/Makefile.in | ||
index 645eb7d..760278b | ||
--- a/Cudd/cudd/Makefile.in | ||
+++ b/Cudd/cudd/Makefile.in | ||
@@ -350,7 +350,7 @@ AM_CPPFLAGS = \ | ||
-I$(top_srcdir)/libpolybori/include | ||
|
||
AM_CFLAGS = -std=c99 | ||
-AM_CXXFLAGS = -std=c++98 -ftemplate-depth-100 | ||
+AM_CXXFLAGS = -std=gnu++98 -ftemplate-depth-100 | ||
AM_DEFAULT_SOURCE_EXT = .cc | ||
noinst_LTLIBRARIES = libcudd.la | ||
libcudd_la_SOURCES = \ | ||
diff --git a/common.mk b/common.mk | ||
index 7915587..0afda02 100755 | ||
--- a/common.mk | ||
+++ b/common.mk | ||
@@ -3,6 +3,6 @@ AM_CPPFLAGS = \ | ||
-I$(top_srcdir)/libpolybori/include | ||
|
||
AM_CFLAGS = -std=c99 | ||
-AM_CXXFLAGS = -std=c++98 -ftemplate-depth-100 | ||
+AM_CXXFLAGS = -std=gnu++98 -ftemplate-depth-100 | ||
|
||
AM_DEFAULT_SOURCE_EXT = .cc | ||
diff --git a/groebner/src/Makefile.in b/groebner/src/Makefile.in | ||
index ef7882c..cb3b04f | ||
--- a/groebner/src/Makefile.in | ||
+++ b/groebner/src/Makefile.in | ||
@@ -372,7 +372,7 @@ AM_CPPFLAGS = \ | ||
-I$(top_srcdir)/libpolybori/include | ||
|
||
AM_CFLAGS = -std=c99 | ||
-AM_CXXFLAGS = -std=c++98 -ftemplate-depth-100 | ||
+AM_CXXFLAGS = -std=gnu++98 -ftemplate-depth-100 | ||
AM_DEFAULT_SOURCE_EXT = .cc | ||
lib_LTLIBRARIES = libpolybori_groebner.la | ||
libpolybori_groebner_la_CXXFLAGS = $(AM_CXXFLAGS) $(SIMMD_CFLAGS) | ||
diff --git a/libpolybori/src/Makefile.in b/libpolybori/src/Makefile.in | ||
index 4e4e60a..4d110c2 | ||
--- a/libpolybori/src/Makefile.in | ||
+++ b/libpolybori/src/Makefile.in | ||
@@ -323,7 +323,7 @@ AM_CPPFLAGS = \ | ||
-I$(top_srcdir)/libpolybori/include | ||
|
||
AM_CFLAGS = -std=c99 | ||
-AM_CXXFLAGS = -std=c++98 -ftemplate-depth-100 | ||
+AM_CXXFLAGS = -std=gnu++98 -ftemplate-depth-100 | ||
AM_DEFAULT_SOURCE_EXT = .cc | ||
noinst_LTLIBRARIES = libpolybori_base.la | ||
libpolybori_base_la_SOURCES = \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=443f6e49b23bbc1e9004f32c802b83e35abe3a77 | ||
md5=bb7132154839ae45a55ca1c46331289d | ||
cksum=2428928852 | ||
sha1=e2e8a0a63e2734fca610c1fde383ea8e8b342d8f | ||
md5=fe01ff42664d309fbafbca6924f1fddd | ||
cksum=646567598 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
159 | ||
161 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
atlas | ||
$(BLAS) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
= imagesize = | ||
|
||
== Description == | ||
|
||
It parses image files' header and return image size. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tarball=imagesize-VERSION.tar.gz | ||
sha1=cf95cf234c88d5400acfa922cdc3c1f5b6a7e713 | ||
md5=23cb4b0b5ec76fb26942d6cc0b1cf31c | ||
cksum=40173098 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$(PYTHON) | pip | ||
|
||
---------- | ||
All lines of this file are ignored except the first. | ||
It is copied by SAGE_ROOT/build/make/install into SAGE_ROOT/build/make/Makefile. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd src && python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
standard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# no dependencies | ||
| $(PYTHON) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=sagetex-VERSION.tar.bz2 | ||
sha1=0d4ff45b97e591a22b225f0d7d1469ff903d4846 | ||
md5=55d2293116a391631daaf7847e618646 | ||
cksum=1506200788 | ||
tarball=sagetex-VERSION.tar.gz | ||
sha1=b14a1be391d7697b83179d451ea9405a9186c3b6 | ||
md5=89f539ac31dd35555eb4f7959280ff89 | ||
cksum=43653548 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.4 | ||
3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.