Skip to content

Commit 5f14b39

Browse files
committed
Merge branch 'develop' of github.com:sagemath/sage into eclib
2 parents fcf0b9a + 5bd81de commit 5f14b39

File tree

31 files changed

+123
-42
lines changed

31 files changed

+123
-42
lines changed

.zenodo.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"description": "Mirror of the Sage https://sagemath.org/ source tree",
33
"license": "other-open",
4-
"title": "sagemath/sage: 10.0.rc0",
5-
"version": "10.0.rc0",
4+
"title": "sagemath/sage: 10.0.rc1",
5+
"version": "10.0.rc1",
66
"upload_type": "software",
7-
"publication_date": "2023-04-23",
7+
"publication_date": "2023-04-28",
88
"creators": [
99
{
1010
"affiliation": "SageMath.org",
@@ -15,7 +15,7 @@
1515
"related_identifiers": [
1616
{
1717
"scheme": "url",
18-
"identifier": "https://github.com/sagemath/sage/tree/10.0.rc0",
18+
"identifier": "https://github.com/sagemath/sage/tree/10.0.rc1",
1919
"relation": "isSupplementTo"
2020
},
2121
{

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 10.0.rc0, Release Date: 2023-04-23
1+
SageMath version 10.0.rc1, Release Date: 2023-04-28

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=527827bf6b3d445dc433219b4423f824dc95ec94
3-
md5=edf7a6212cc3e0f37acad73af1f059c8
4-
cksum=998886037
2+
sha1=20689ddae5ff8ac5bd6bc78c153683542f7b182a
3+
md5=921055919764dfaf581286c55acb1cba
4+
cksum=1549141056
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eca2a773d086dbbd6c88bb36e2fac4748aa602bf
1+
9185befce0cf5e4c4cb83cce2034a55be95e03a7

build/pkgs/gcc/spkg-configure.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
165165
# Install our own GCC if the system-provided one is older than gcc 8
166166
SAGE_SHOULD_INSTALL_GCC([you have $CXX version $GXX_VERSION, which is quite old])
167167
],
168-
[1[[3-9]].*], [
169-
# Install our own GCC if the system-provided one is newer than 12.x.
168+
[1[[4-9]].*], [
169+
# Install our own GCC if the system-provided one is newer than 13.x.
170170
# See https://github.com/sagemath/sage/issues/29456
171171
SAGE_SHOULD_INSTALL_GCC([$CXX is g++ version $GXX_VERSION, which is too recent for this version of Sage])
172172
])

build/pkgs/gfortran/spkg-configure.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ SAGE_SPKG_CONFIGURE([gfortran], [
8686
# Install our own gfortran if the system-provided one is older than gcc-4.8.
8787
SAGE_SHOULD_INSTALL_GFORTRAN([$FC is version $GFORTRAN_VERSION, which is quite old])
8888
],
89-
[1[[3-9]].*], [
90-
# Install our own gfortran if the system-provided one is newer than 12.x.
89+
[1[[4-9]].*], [
90+
# Install our own gfortran if the system-provided one is newer than 13.x.
9191
# See https://github.com/sagemath/sage/issues/29456, https://github.com/sagemath/sage/issues/31838
9292
SAGE_MUST_INSTALL_GFORTRAN([$FC is version $GFORTRAN_VERSION, which is too recent for this version of Sage])
9393
])

build/pkgs/givaro/patches/218.patch

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
From c7744bb133496cd7ac04688f345646d505e1bf52 Mon Sep 17 00:00:00 2001
2+
From: "Benjamin A. Beasley" <[email protected]>
3+
Date: Thu, 19 Jan 2023 09:12:22 -0500
4+
Subject: [PATCH] Add missing #include <cstdint> for (u)int64_t
5+
6+
Fixes failure to compile on GCC 13.
7+
---
8+
src/library/poly1/givdegree.h | 2 ++
9+
1 file changed, 2 insertions(+)
10+
11+
diff --git a/src/library/poly1/givdegree.h b/src/library/poly1/givdegree.h
12+
index 3753a425..eb85a0dd 100644
13+
--- a/src/library/poly1/givdegree.h
14+
+++ b/src/library/poly1/givdegree.h
15+
@@ -19,6 +19,8 @@
16+
#ifndef __GIVARO_poly1degree_H
17+
#define __GIVARO_poly1degree_H
18+
19+
+#include <cstdint>
20+
+
21+
#include <iostream>
22+
23+
namespace Givaro {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This file is updated on every release by the sage-update-version script
2-
sage-conf ~= 10.0rc0
2+
sage-conf ~= 10.0rc1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This file is updated on every release by the sage-update-version script
2-
sage-docbuild ~= 10.0rc0
2+
sage-docbuild ~= 10.0rc1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This file is updated on every release by the sage-update-version script
2-
sage-setup ~= 10.0rc0
2+
sage-setup ~= 10.0rc1

0 commit comments

Comments
 (0)