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 '8.0.beta0' into t/22658/polyhedron_methods_using_the_polym…
…ake_pexpect_interface SageMath version 8.0.beta0
- Loading branch information
Showing
344 changed files
with
6,651 additions
and
4,144 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SageMath version 7.6, Release Date: 2017-03-25 | ||
SageMath version 8.0.beta0, Release Date: 2017-03-30 |
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=configure-VERSION.tar.gz | ||
sha1=7a84c43745334f9940826319b4799e3e7883ee17 | ||
md5=e897b888529be545e40ddb697c778a89 | ||
cksum=3005224762 | ||
sha1=b7df014e2f3dc762a43a96a2e49553a301b6eb75 | ||
md5=c8c2f7b67bc0a9784b30239c7b65ba17 | ||
cksum=3421961180 |
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 @@ | ||
212 | ||
213 |
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,23 @@ | ||
= curl = | ||
|
||
== Description == | ||
|
||
Multiprotocols data transfer library (and utility). | ||
|
||
== License == | ||
|
||
"MIT style license" : see file "COPYING" at the root of the source | ||
tarball, explanations at https://curl.haxx.se/docs/copyright.html. | ||
|
||
== Upstream Contact == | ||
|
||
According to the file README at the root of the tarball, contact is | ||
done by mailing https://curl.haxx.se/mail/ | ||
|
||
== Dependencies == | ||
|
||
None listed. | ||
|
||
== Special Update/Build Instructions == | ||
|
||
None. |
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=curl-VERSION.tar.bz2 | ||
sha1=ae4a14778ef9ac3aaeaa022243d6e26c0bf1362b | ||
md5=fb1f03a142236840c1a77c035fa4c542 | ||
cksum=2520895893 |
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 @@ | ||
# no dependencies | ||
|
||
---------- | ||
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 @@ | ||
7.53.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd src | ||
$MAKE check V=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ -z "$SAGE_LOCAL" ] ; then | ||
echo >&2 "Error - SAGE_LOCAL undefined ... exiting" | ||
echo >&2 "Maybe run 'sage -sh'?" | ||
exit 1 | ||
fi | ||
|
||
cd src | ||
|
||
if [ "$SAGE_FAT_BINARY" = yes ]; then | ||
# Let's disable a bunch of stuff which might get linked. | ||
# SSL/TLS still depends on the compilation environment. | ||
CURL_CONFIGURE="--disable-ldap --disable-ldaps --disable-rtsp --disable-ares --disable-crypto-auth --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-libidn --without-nghttp2 --without-gssapi $CURL_CONFIGURE" | ||
fi | ||
|
||
if [ "$UNAME" = "Darwin" ]; then | ||
if [ $MACOSX_VERSION -ge 16 ]; then | ||
echo "OS X 10.$[$MACOSX_VERSION-4] Building with clang and --with-darwinssl." | ||
CC=clang | ||
CURL_CONFIGURE="--with-darwinssl $CURL_CONFIGURE" | ||
fi | ||
fi | ||
|
||
./configure --prefix="$SAGE_LOCAL" --libdir="$SAGE_LOCAL/lib" \ | ||
$CURL_CONFIGURE | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error configuring curl." | ||
exit 1 | ||
fi | ||
|
||
$MAKE V=1 | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error building curl." | ||
exit 1 | ||
fi | ||
|
||
$MAKE install V=1 | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error installing curl." | ||
exit 1 | ||
fi |
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.25.2 | ||
0.25.2.p0 |
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,12 @@ | ||
Fix Cython testsuite failure on 32-bit | ||
From upstream commit: d92a718a26c9354fbf35f31a17de5c069865a447 | ||
See also: https://github.com/cython/cython/issues/1548 | ||
|
||
--- a/tests/run/cpdef_enums.pyx | ||
+++ b/tests/run/cpdef_enums.pyx | ||
@@ -93,4 +93,4 @@ def verify_resolution_GH1533(): | ||
3 | ||
""" | ||
THREE = 100 | ||
- return PyxEnum.THREE | ||
+ return int(PyxEnum.THREE) |
Oops, something went wrong.