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/21996/factorization_in_iterated_extensi…
…ons_of_finite_fields
- Loading branch information
Showing
1,189 changed files
with
39,471 additions
and
37,212 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 8.0.beta2, Release Date: 2017-04-12 | ||
SageMath version 8.0.beta9, Release Date: 2017-05-31 |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
|
||
# Run the Python interpreter that we are currently building Sage with | ||
# | ||
# An existing Python is a build-time dependency for Sage, but | ||
# sometimes packages need to specifically run the one in Sage and not | ||
# just any Python interpreter. | ||
# | ||
# This is similar to the sage-pip-install script, which you should be | ||
# using for installing Python packages if at all possible. | ||
|
||
|
||
if [ "$SAGE_PYTHON3" = yes ]; then | ||
PYTHON="$SAGE_LOCAL/bin/python3" | ||
else | ||
PYTHON="$SAGE_LOCAL/bin/python2" | ||
fi | ||
|
||
|
||
exec $PYTHON "$@" |
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
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 |
---|---|---|
|
@@ -25,5 +25,8 @@ CMake is distributed under the OSI-approved BSD 3-clause License. | |
|
||
== Dependencies == | ||
|
||
* curl | ||
* zlib | ||
* bzip2 | ||
* xz | ||
|
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=cmake-VERSION.tar.gz | ||
sha1=fa176cc5b1ccf2e98196b50908432d0268323501 | ||
md5=d51c92bf66b1e9d4fe2b7aaedd51377c | ||
cksum=3408528151 | ||
sha1=4e4bf2e2f3443325f2abaec5e96819840d832427 | ||
md5=e8ef820ddf7a650845252bca846696e7 | ||
cksum=3021330276 |
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 @@ | ||
curl zlib bzip2 xz | ||
|
||
---------- | ||
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.2.3 | ||
3.8.1 |
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,26 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ "$UNAME" = Darwin ]; then | ||
CC=clang | ||
CXX=clang++ | ||
fi | ||
|
||
cd src | ||
ctest -E CTestTestStopTime | ||
unset MACOSX_DEPLOYMENT_TARGET | ||
# Supress tests failing for reason out of our controls | ||
FAILING_TESTS="CTestTestStopTime|TestUpload|ctest_submit" | ||
# gui interface may pull dependency conflicting with | ||
# sage libraries | ||
# (1) QT libraries | ||
FAILING_TESTS="${FAILING_TESTS}|Qt5Autogen|Qt4Autogen|Qt4Targets|Qt4And5AutomocReverse" | ||
# (2) GTK2 | ||
FAILING_TESTS="${FAILING_TESTS}|GTK2Components|GTK2Targets" | ||
# BundleUtilities test is failing on some platforms, skipped in Gentoo for that reason | ||
FAILING_TESTS="${FAILING_TESTS}|BundleUtilities" | ||
# Test failing on freeBSD. Upstream acknoledged the test is faulty | ||
# on that platform https://gitlab.kitware.com/cmake/cmake/issues/16887 | ||
if [ "$UNAME" = "FreeBSD" ]; then | ||
FAILING_TESTS="${FAILING_TESTS}|RunCMake.GNUInstallDirs" | ||
fi | ||
ctest --extra-verbose --output-on-failure -E "(${FAILING_TESTS})" | ||
|
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 @@ | ||
experimental | ||
optional |
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=8bdfb4b87a803b90d6b9a937d961835955723a09 | ||
md5=1f1aa69a7ac98e4443e82611a3bbea23 | ||
cksum=4121821509 | ||
sha1=1468ff678f41a3552bce2ba952af0795127d64d8 | ||
md5=931c98793b007e28874089c17c40e53d | ||
cksum=1227610551 |
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 @@ | ||
216 | ||
223 |
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=conway_polynomials-VERSION.tar.bz2 | ||
sha1=25b7abe5c935d20c3ebcde943308652c412d14dc | ||
md5=17f061204b3a6133abb21e17b3abea19 | ||
cksum=3204784255 | ||
sha1=d4d89bda60ac54e73121f84635e774766e19a8b6 | ||
md5=a2725ba21f44554196781424d957f68a | ||
cksum=1387933493 |
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 @@ | ||
0.4.p0 | ||
0.5 |
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,21 +1,21 @@ | ||
#!/usr/bin/env python | ||
|
||
#!/usr/bin/env sage-python23 | ||
import os | ||
from sage.structure.sage_object import save | ||
from sage.env import SAGE_SHARE | ||
from six.moves import cPickle as pickle | ||
|
||
SAGE_SHARE = os.getenv('SAGE_SHARE') | ||
install_root = os.path.join(SAGE_SHARE, 'conway_polynomials') | ||
|
||
def create_db(): | ||
db = {} | ||
from src import conway_polynomials | ||
for p,n,v in conway_polynomials: | ||
for p, n, v in conway_polynomials: | ||
if not p in db: | ||
db[p] = {} | ||
db[p][n] = v | ||
if not os.path.exists(install_root): | ||
os.makedirs(install_root) | ||
save(db, os.path.join(install_root, 'conway_polynomials.sobj')) | ||
with open(os.path.join(install_root, 'conway_polynomials.p'), 'wb') as f: | ||
pickle.dump(db, f) | ||
|
||
if __name__ == '__main__': | ||
create_db() |
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.