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 tag '9.2.beta1' into t/29702/public/move_all_code_from_src_setu…
…p_py__src_fpickle_setup_py_to_sage_setup SageMath version 9.2.beta1, Release Date: 2020-06-13
- Loading branch information
Showing
662 changed files
with
17,124 additions
and
11,246 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
This file was deleted.
Oops, something went wrong.
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
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 9.2.beta0, Release Date: 2020-05-28 | ||
SageMath version 9.2.beta1, Release Date: 2020-06-13 |
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,59 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# sage-spkg-info SPKG | ||
# Format information about a Sage package | ||
# | ||
# Assumes SAGE_ROOT is set | ||
PKG_BASE=$1 | ||
PKG_SCRIPTS="$SAGE_ROOT/build/pkgs/$PKG_BASE" | ||
for ext in rst txt; do | ||
SPKG_FILE="$PKG_SCRIPTS/SPKG.$ext" | ||
if [ -f "$SPKG_FILE" ]; then | ||
cat "$SPKG_FILE" | ||
break | ||
fi | ||
done | ||
if [ -r "$PKG_SCRIPTS/type" ] ; then | ||
echo | ||
echo "== Type ==" | ||
echo | ||
cat "$PKG_SCRIPTS/type" | ||
echo | ||
fi | ||
echo "== Equivalent System Packages ==" | ||
echo | ||
PKG_DISTROS="$PKG_SCRIPTS"/distros | ||
for system_package_file in "$PKG_DISTROS"/*.txt; do | ||
if [ -f "$system_package_file" ]; then | ||
system=$(basename "$system_package_file" .txt) | ||
system_packages="$(echo $(sed 's/#.*//;' $system_package_file))" | ||
case $system in | ||
debian) | ||
# Generic | ||
echo "Debian/Ubuntu:" | ||
;; | ||
fedora) | ||
# Generic | ||
echo "Fedora/Redhat/CentOS:" | ||
;; | ||
*) | ||
echo "$system:" | ||
;; | ||
esac | ||
echo -n " " | ||
sage-print-system-package-command $system --prompt --sudo install $system_packages | ||
fi | ||
done | ||
if [ -z "$system" ]; then | ||
echo "(none known)" | ||
else | ||
echo | ||
if [ -f "$PKG_SCRIPTS"/spkg-configure.m4 ]; then | ||
echo "If the system package is installed, ./configure will check whether it can be used." | ||
else | ||
echo "However, these system packages will not be used for building Sage" | ||
echo "because spkg-configure.m4 has not been written for this package;" | ||
echo "see https://trac.sagemath.org/ticket/27330" | ||
fi | ||
fi | ||
echo |
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,25 @@ | ||
4ti2 | ||
==== | ||
|
||
Description | ||
----------- | ||
|
||
A software package for algebraic, geometric and combinatorial problems | ||
on linear spaces. Available at www.4ti2.de. | ||
|
||
License | ||
------- | ||
|
||
4ti2 is released under a GPL v2 license. | ||
|
||
|
||
Upstream Contact | ||
---------------- | ||
|
||
- Raymond Hemmecke, TU Munich, Germany | ||
- Matthias Köppe, UC Davis, CA, USA | ||
|
||
Dependencies | ||
------------ | ||
|
||
GLPK, GMP. |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
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 was deleted.
Oops, something went wrong.
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,7 @@ | ||
appnope | ||
======= | ||
|
||
Description | ||
----------- | ||
|
||
Disable App Nap on OS X 10.9 |
This file was deleted.
Oops, something went wrong.
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.