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.
- Loading branch information
Showing
10 changed files
with
43 additions
and
18 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 9.6.rc0, Release Date: 2022-04-10 | ||
SageMath version 9.6.rc1, Release Date: 2022-04-19 |
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=ffb658a0ff2c9baafe48b0986c8f4a752b8165e2 | ||
md5=ca16d1e5c783c44d765afc0673dad562 | ||
cksum=2868305934 | ||
sha1=1524f97042a658d1c6b797ccaf9281ed32474930 | ||
md5=b2db89f2ac4c76b3f6b30f57ee15171d | ||
cksum=3697337668 |
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 @@ | ||
547ddc2096a611d3273bd5a1c93445dc7348014a | ||
9da7c13c6970e13984373574ed04410134120370 |
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 @@ | ||
1.6.0.47p3 | ||
1.6.0.47p3.p0 |
25 changes: 25 additions & 0 deletions
25
build/pkgs/giac/patches/0001-src-global.cc-Do-not-send-SIGINT-to-process-1.patch
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 @@ | ||
From 5546fba822d4816eb27c94964b96caa69989b846 Mon Sep 17 00:00:00 2001 | ||
From: Matthias Koeppe <[email protected]> | ||
Date: Sun, 17 Apr 2022 12:20:55 -0700 | ||
Subject: [PATCH] src/global.cc: Do not send SIGINT to process 1 | ||
|
||
--- | ||
src/global.cc | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/global.cc b/src/global.cc | ||
index c343aea..87e4575 100755 | ||
--- a/src/global.cc | ||
+++ b/src/global.cc | ||
@@ -1978,7 +1978,7 @@ extern "C" void Sleep(unsigned int miliSecond); | ||
void ctrl_c_signal_handler(int signum){ | ||
ctrl_c=true; | ||
#if !defined KHICAS && !defined NSPIRE_NEWLIB && !defined WIN32 && !defined BESTA_OS && !defined NSPIRE && !defined FXCG && !defined POCKETCAS | ||
- if (child_id) | ||
+ if (child_id && child_id != 1) | ||
kill(child_id,SIGINT); | ||
#endif | ||
#if defined HAVE_SIGNAL_H && !defined HAVE_NO_SIGNAL_H | ||
-- | ||
2.35.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 |
---|---|---|
@@ -1 +1 @@ | ||
9.6.rc0 | ||
9.6.rc1 |
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 @@ | ||
9.6.rc0 | ||
9.6.rc1 |
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,5 +1,5 @@ | ||
# Sage version information for shell scripts | ||
# This file is auto-generated by the sage-update-version script, do not edit! | ||
SAGE_VERSION='9.6.rc0' | ||
SAGE_RELEASE_DATE='2022-04-10' | ||
SAGE_VERSION_BANNER='SageMath version 9.6.rc0, Release Date: 2022-04-10' | ||
SAGE_VERSION='9.6.rc1' | ||
SAGE_RELEASE_DATE='2022-04-19' | ||
SAGE_VERSION_BANNER='SageMath version 9.6.rc1, Release Date: 2022-04-19' |
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,5 +1,5 @@ | ||
# Sage version information for Python scripts | ||
# This file is auto-generated by the sage-update-version script, do not edit! | ||
version = '9.6.rc0' | ||
date = '2022-04-10' | ||
banner = 'SageMath version 9.6.rc0, Release Date: 2022-04-10' | ||
version = '9.6.rc1' | ||
date = '2022-04-19' | ||
banner = 'SageMath version 9.6.rc1, Release Date: 2022-04-19' |