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/21819/rewrite_error_functions_and_docum…
…entation
- Loading branch information
Showing
837 changed files
with
26,396 additions
and
7,852 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
;;; Directory Local Variables | ||
;;; For more information see (info "(emacs) Directory Variables") | ||
|
||
((nil | ||
;; Use space instead of tabs for indentation | ||
(indent-tabs-mode . nil)) | ||
(makefile-mode | ||
;; But use tabs in Makefiles | ||
(indent-tabs-mode . t))) |
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 7.5.beta2, Release Date: 2016-11-09 | ||
SageMath version 7.5.rc1, Release Date: 2016-12-28 |
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,78 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# sage-apply-patches [-p<num>] [-d patch-subdir] [patch-dir] -- [...] | ||
# | ||
# Apply any patches to original spkg sources. Patch files must have | ||
# the .patch extension. | ||
# | ||
# By default the patches are applied from ../patches/ using the -p1 | ||
# option, and it is assumed that the patches are being applied from | ||
# the root of the package source. | ||
# | ||
# An optional patch subdirectory may be specified with the -d flag. | ||
# For example `sage-apply-patches -d cygwin` applies only those | ||
# patches under <patch-dir>/cygwin. | ||
# | ||
# The -p<num> arg is the argument accepted by the `patch` command, | ||
# and overrides the default -p1 | ||
# | ||
# Any additional arguments following " -- " are passed directly | ||
# to the `patch` command. | ||
# | ||
#*************************************************************************** | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 2 of | ||
# the License, or (at your option) any later version. | ||
# http://www.gnu.org/licenses/ | ||
#*************************************************************************** | ||
|
||
patchdir="../patches" | ||
patch_subdir="" | ||
patch_strip="-p1" | ||
patch_args_sep="" | ||
patch_args="--no-backup-if-mismatch" | ||
|
||
while [[ $# > 0 ]]; do | ||
if [[ -z "$patch_args_sep" ]]; then | ||
case $1 in | ||
-d) | ||
patch_subdir="${2%/}" | ||
shift | ||
;; | ||
-p[0-9]) | ||
patch_strip="$1" | ||
;; | ||
--) | ||
patch_args_sep="$1" | ||
;; | ||
*) | ||
patchdir="${1%/}" | ||
;; | ||
esac | ||
else | ||
patch_args="$patch_args $1" | ||
fi | ||
|
||
shift | ||
done | ||
|
||
patchdir="${patchdir}/${patch_subdir}" | ||
patchdir="${patchdir%/}" | ||
patches=( "${patchdir}"/*.patch ) | ||
|
||
if [[ -r "${patches[0]}" ]]; then | ||
echo "Applying patches from ${patchdir}..." | ||
for patch in ${patches[@]}; do | ||
# Skip non-existing or non-readable patches | ||
[ -r "$patch" ] || continue | ||
echo "Applying $patch" | ||
patch $patch_strip $patch_args < "$patch" | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error applying '$patch'" | ||
exit 1 | ||
fi | ||
done | ||
else | ||
>&2 echo "No patch files found in $patchdir" | ||
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
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 @@ | ||
3.10.2.p2 | ||
3.10.2.p3 |
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,4 +1,4 @@ | ||
tarball=backports_abc-VERSION.tar.gz | ||
sha1=76060a68d14f9d1a4198e00c3bb3711467ecb1f4 | ||
md5=0b65a216ce9dc9c1a7e20a729dd7c05b | ||
cksum=1989294907 | ||
sha1=7f19aefc840301effcd43d9d95e8e59ed8153ea2 | ||
md5=7d1936ec183a3586290adf60f6f96764 | ||
cksum=2833604013 |
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.4.p0 | ||
0.5 |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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=e2e2814e51821d5ff0562304d3d597301e90b976 | ||
md5=245603edc9bffd08d535ed9be163ba5f | ||
cksum=3269882326 | ||
sha1=493e8dd34bd53110ba2b6ca36239b8ead312df46 | ||
md5=b86405e6ca3828cada072c37db55eba3 | ||
cksum=2146672182 |
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 @@ | ||
191 | ||
197 |
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=cysignals-VERSION.tar.bz2 | ||
sha1=1ad0314a19bfad58dfb689c534087c31241c07f0 | ||
md5=20483b618a1d5c65485d38a2d0002386 | ||
cksum=507747317 | ||
sha1=4394b36d8b30a7afd81df45c6266048d49567af0 | ||
md5=abc98cb7b07c3a40979ee24dead06a38 | ||
cksum=1213194811 |
Oops, something went wrong.