Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit ce95d01

Browse files
committed
Merge branch 'develop' into t/22844/symbolic_limit
2 parents 14f2647 + df03447 commit ce95d01

File tree

118 files changed

+6588
-3312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+6588
-3312
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 8.0.beta5, Release Date: 2017-05-04
1+
SageMath version 8.0.beta6, Release Date: 2017-05-12

build/pkgs/configure/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=339f2474b789d33051dde8f69d047ae723a36379
3-
md5=9bb01c255b39648bb19f62a3fa24a80d
4-
cksum=2072910001
2+
sha1=6a2d4b05426a912b1589d9213760a6438105a502
3+
md5=4175d83db6c8a9a2a229bdbb383a923d
4+
cksum=2310778507
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
219
1+
220

build/pkgs/normaliz/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=normaliz-VERSION.tar.gz
2-
sha1=87bd2846a9132eb87ed6e9fa8cf875a0d6f5cc37
3-
md5=0eab32959e10b0c41b92c768ef562136
4-
cksum=1044635248
2+
sha1=81c89b5b2f8ff15d6939a3fd5822a288440f4d51
3+
md5=245b1c025ee45d0e2ffd3a77a585768e
4+
cksum=3791680398
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.4
1+
3.2.1
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff -druN src/source/libnormaliz/cone.cpp patches/source/libnormaliz/cone.cpp
2+
--- src/source/libnormaliz/cone.cpp 2017-02-22 17:59:08.000000000 +0100
3+
+++ patches/source/libnormaliz/cone.cpp 2017-04-26 16:33:57.460366489 +0200
4+
@@ -3223,7 +3223,7 @@
5+
Deg1Elements=Matrix<Integer>(0,dim);
6+
ModuleGenerators=Matrix<Integer>(0,dim);
7+
8+
- Matrix<Integer> Raw=ApproxCone.getDeg1ElementsMatrix();
9+
+ const Matrix<Integer>& Raw=ApproxCone.getDeg1ElementsMatrix();
10+
Matrix<Integer> Result(0,dim);
11+
Matrix<Integer> Eq=BasisChange.getEquations();
12+
Matrix<Integer> Cong=BasisChange.getCongruences();

build/pkgs/normaliz/spkg-install

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,3 @@ cd src
1414
$MAKE || die "Error building normaliz"
1515
$MAKE install || die "Error installing normaliz"
1616

17-
cd Singular || die "Normaliz distribution has no Singular subdirectory"
18-
cp -pf normaliz.lib "$SAGE_LOCAL/share/singular/" || die "Error installing normaliz.lib for Singular."
19-
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=PyNormaliz-VERSION.tar.gz
2-
sha1=e69046012a18f73cc820cf072d43f7d852020d49
3-
md5=27a5f7d3fa0d96766d4f811495b0f5ce
4-
cksum=1643770354
2+
sha1=619d2b01d9ee20bfcf880cb25ea04b72cc2d2942
3+
md5=22eea4624caff219618640ed67003b9d
4+
cksum=4251733870
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0
1+
1.5

build/pkgs/python3/patches/3.4.5-struct.patch

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ as been fixed upstream for Python 3.7; see https://bugs.python.org/issue21124
33
diff -r b244bf74b638 Modules/_struct.c
44
--- a/Modules/_struct.c Sun Oct 02 13:49:05 2016 +0300
55
+++ b/Modules/_struct.c Sun Oct 02 19:54:56 2016 +0900
6+
@@ -1627,7 +1627,7 @@ unpackiter_iternext(unpackiterobject *self)
7+
}
8+
9+
static PyTypeObject unpackiter_type = {
10+
- PyVarObject_HEAD_INIT(&PyType_Type, 0)
11+
+ PyVarObject_HEAD_INIT(NULL, 0)
12+
"unpack_iterator", /* tp_name */
13+
sizeof(unpackiterobject), /* tp_basicsize */
14+
0,
615
@@ -2301,6 +2301,9 @@
716
if (PyType_Ready(&PyStructType) < 0)
817
return NULL;

0 commit comments

Comments
 (0)