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

Commit c1f1583

Browse files
committed
Merge branch 'develop' into t/15605/__1___2_3__evaluates_to_1
2 parents 046c9f9 + 608cfc2 commit c1f1583

File tree

138 files changed

+3880
-653
lines changed

Some content is hidden

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

138 files changed

+3880
-653
lines changed

.dir-locals.el

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
;;; Directory Local Variables
2+
;;; For more information see (info "(emacs) Directory Variables")
3+
4+
((nil
5+
;; Use space instead of tabs for indentation
6+
(indent-tabs-mode . nil))
7+
(makefile-mode
8+
;; But use tabs in Makefiles
9+
(indent-tabs-mode . t)))

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 7.5.beta5, Release Date: 2016-12-01
1+
SageMath version 7.5.beta6, Release Date: 2016-12-09

build/make/deps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
###############################################################################
1+
## -*- Makefile -*- ###########################################################
22
# This file ($SAGE_ROOT/build/make/deps) will be copied into
33
# $SAGE_ROOT/build/make/Makefile by $SAGE_ROOT/build/make/install
44
###############################################################################

build/pkgs/autotools/SPKG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ spkg. If you edit this, you must update Makefile.build using the
6161
spkg-write-makefile script. After optionally updating the git repos
6262
using spkg-src, you need to run
6363
./spkg-write-makefile >Makefile.build
64-
This must be run in a Sage shell, with the the autotools spkg
64+
This must be run in a Sage shell, with the autotools spkg
6565
installed.

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=3029fd9073df3ef509b6bfcdd444eb8e64fd8e43
3-
md5=56bbebf050b6e795969f78c0cbf34c60
4-
cksum=1121692794
2+
sha1=bc57761b576cc4747e7014697424a8237f870921
3+
md5=e50f6aad2bca8d7602fc9d3d522bb69e
4+
cksum=4245048724
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
194
1+
195

build/pkgs/giac/spkg-install

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,14 @@ echo "Configuring giac..."
3939
# --disable-ao (avoid libao deps)
4040
# --disable-lapack (avoid lapack and blas deps because they could be from the base system)
4141

42-
./configure --prefix="$SAGE_LOCAL" --disable-gui --disable-ao --disable-lapack
42+
# On OS X (10.12) the built in intl is broken
43+
DISABLENLS=""
44+
if [ "$UNAME" = "Darwin" ]; then
45+
echo "OS X Building without Native Language Support"
46+
DISABLENLS="--disable-nls"
47+
fi
48+
49+
./configure --prefix="$SAGE_LOCAL" --disable-gui --disable-ao --disable-lapack "$DISABLENLS"
4350

4451
if [ $? -ne 0 ]; then
4552
exit 1

build/pkgs/giac/type

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
optional
1+
standard

build/pkgs/numpy/lapack_conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
conf_file.write('[blas]\n')
1616
inc_dir = pc_blas['include_dirs']
1717
if len(inc_dir) > 0 :
18-
conf_file.write('include_dirs = '+ ':'.join(list(inc_dir))+'\n')
18+
conf_file.write('include_dirs = '+ ':'.join(inc_dir)+'\n')
1919
lib_dir = pc_blas['library_dirs']
2020
if len(lib_dir) > 0 :
21-
conf_file.write('library_dirs = '+ ':'.join(list(lib_dir))+'\n')
22-
conf_file.write('blas_libs = '+', '.join(list(pc_blas['libraries']))+'\n')
21+
conf_file.write('library_dirs = '+ ':'.join(lib_dir)+'\n')
22+
conf_file.write('blas_libs = '+', '.join(pc_blas['libraries'])+'\n')
2323
conf_file.write('[lapack]\n')
2424
lib_dir = pc_lapack['library_dirs']
2525
if len(lib_dir) > 0 :
26-
conf_file.write('library_dirs = '+ ':'.join(list(lib_dir))+'\n')
27-
conf_file.write('lapack_libs = '+', '.join(list(pc_lapack['libraries']))+'\n')
26+
conf_file.write('library_dirs = '+ ':'.join(lib_dir)+'\n')
27+
conf_file.write('lapack_libs = '+', '.join(pc_lapack['libraries'])+'\n')
2828

2929
conf_file.close()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.1
1+
1.11.1.p0

0 commit comments

Comments
 (0)