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/18386/18386-2
- Loading branch information
Showing
521 changed files
with
15,320 additions
and
13,248 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.beta5, Release Date: 2017-05-04 | ||
SageMath version 8.0.beta8, Release Date: 2017-05-24 |
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=339f2474b789d33051dde8f69d047ae723a36379 | ||
md5=9bb01c255b39648bb19f62a3fa24a80d | ||
cksum=2072910001 | ||
sha1=d19b80dca421a261fd1cf19be8c861aef46d403b | ||
md5=5cfae5d5a32e87c9fff3215773b56dc8 | ||
cksum=133013502 |
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 @@ | ||
219 | ||
222 |
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 @@ | ||
0.25.2.p1 | ||
0.25.2.p2 |
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,32 @@ | ||
Patch for https://github.com/cython/cython/pull/1687 | ||
Only needed for Cygwin systems | ||
|
||
commit 632f18f2710eaf6ee2b3a3aaa0749c7886299e64 | ||
Author: Jeroen Demeyer <jdemeyer@cage.ugent.be> | ||
Date: Thu Apr 27 17:13:39 2017 +0200 | ||
|
||
Do not use special dll linkage for "cdef public" functions | ||
|
||
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py | ||
index 6356e78..76fe4e5 100644 | ||
--- a/Cython/Compiler/ModuleNode.py | ||
+++ b/Cython/Compiler/ModuleNode.py | ||
@@ -214,8 +214,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): | ||
def generate_public_declaration(self, entry, h_code, i_code): | ||
h_code.putln("%s %s;" % ( | ||
Naming.extern_c_macro, | ||
- entry.type.declaration_code( | ||
- entry.cname, dll_linkage="DL_IMPORT"))) | ||
+ entry.type.declaration_code(entry.cname))) | ||
if i_code: | ||
i_code.putln("cdef extern %s" % ( | ||
entry.type.declaration_code(entry.cname, pyrex=1))) | ||
@@ -2849,7 +2848,7 @@ def generate_cfunction_declaration(entry, env, code, definition): | ||
dll_linkage = "DL_IMPORT" | ||
elif entry.visibility == 'public': | ||
storage_class = Naming.extern_c_macro | ||
- dll_linkage = "DL_EXPORT" | ||
+ dll_linkage = None | ||
elif entry.visibility == 'private': | ||
storage_class = "static" | ||
dll_linkage = 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
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=ecm-VERSION.tar.bz2 | ||
sha1=97a6f9fc68337d8dadebc4754a61fdfe97bb0136 | ||
md5=6d70cd667b46e34080615ae361608fa7 | ||
cksum=134247046 | ||
tarball=ecm-VERSION.tar.gz | ||
sha1=407e41af6f93214509810b954b88251e4b89e82b | ||
md5=559b13454b2094fbf26b33ff4fc824b7 | ||
cksum=3785569195 |
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 @@ | ||
6.4.4.p0 | ||
7.0.4.p0 |
Oops, something went wrong.