Skip to content

Commit a7e9921

Browse files
authored
Merge branch 'develop' into meson-macos
2 parents 467ab58 + c9dd1e8 commit a7e9921

File tree

327 files changed

+3432
-961
lines changed

Some content is hidden

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

327 files changed

+3432
-961
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: SageMath
44
abstract: SageMath is a free open-source mathematics software system.
55
authors:
66
- name: "The SageMath Developers"
7-
version: 10.6.beta1
7+
version: 10.6.beta2
88
doi: 10.5281/zenodo.8042260
9-
date-released: 2024-12-15
9+
date-released: 2024-12-22
1010
repository-code: "https://github.com/sagemath/sage"
1111
url: "https://www.sagemath.org/"

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 10.6.beta1, Release Date: 2024-12-15
1+
SageMath version 10.6.beta2, Release Date: 2024-12-22

build/bin/sage-dist-helpers

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@
7171
#
7272
# - sdh_cmake [...]
7373
#
74-
# Runs `cmake` in the current directory with the given arguments, as well as
75-
# additional arguments passed to cmake (assuming packages are using the
76-
# GNUInstallDirs module) so that `CMAKE_INSTALL_PREFIX` and
77-
# `CMAKE_INSTALL_LIBDIR` are set correctly.
74+
# Runs `cmake` with the given arguments, as well as additional arguments
75+
# (assuming packages are using the GNUInstallDirs module) so that
76+
# `CMAKE_INSTALL_PREFIX` and `CMAKE_INSTALL_LIBDIR` are set correctly.
7877
#
7978
# - sdh_install [-T] SRC [SRC...] DEST
8079
#
@@ -416,9 +415,9 @@ sdh_pip_uninstall() {
416415

417416
sdh_cmake() {
418417
echo "Configuring $PKG_NAME with cmake"
419-
cmake . -DCMAKE_INSTALL_PREFIX="${SAGE_INST_LOCAL}" \
420-
-DCMAKE_INSTALL_LIBDIR=lib \
421-
"$@"
418+
cmake -DCMAKE_INSTALL_PREFIX="${SAGE_INST_LOCAL}" \
419+
-DCMAKE_INSTALL_LIBDIR=lib \
420+
"$@"
422421
if [ $? -ne 0 ]; then
423422
if [ -f "$(pwd)/CMakeFiles/CMakeOutput.log" ]; then
424423
sdh_die <<_EOF_

build/pkgs/bliss/spkg-install.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ if [ "$UNAME" = "Darwin" ]; then
33
export LDFLAGS
44
fi
55
cd src
6-
sdh_cmake -DUSE_GMP=OFF -DCMAKE_VERBOSE_MAKEFILE=ON
6+
sdh_cmake -DUSE_GMP=OFF -DCMAKE_VERBOSE_MAKEFILE=ON .
77
sdh_make
88
sdh_make_install

build/pkgs/ccache/checksums.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
tarball=ccache-VERSION.tar.bz2
2-
sha1=3653e0765f01697c449f7026c479fbd9526323a7
3-
sha256=fa9d7f38367431bc86b19ad107d709ca7ecf1574fdacca01698bdf0a47cd8567
1+
tarball=ccache-VERSION.tar.xz
2+
sha1=cff97f7592f5042eb43cb54a6d12a1ce7e49da62
3+
sha256=c0b85ddfc1a3e77b105ec9ada2d24aad617fa0b447c6a94d55890972810f0f5a
4+
upstream_url=https://github.com/ccache/ccache/releases/download/vVERSION/ccache-VERSION.tar.xz

build/pkgs/ccache/dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zlib
1+
cmake xz
22

33
----------
44
All lines of this file are ignored except the first.

build/pkgs/ccache/distros/arch.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ccache
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.4
1+
4.10.2

build/pkgs/ccache/patches/01-apple-gcc-id.patch

Lines changed: 0 additions & 15 deletions
This file was deleted.

build/pkgs/ccache/spkg-install.in

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
cd src
22

3-
# Use newer version of config.guess and config.sub (see Issue #23710)
4-
cp "$SAGE_ROOT"/config/config.* .
5-
6-
export CPPFLAGS="-I$SAGE_LOCAL/include $CPPFLAGS"
7-
sdh_configure
3+
mkdir build
4+
cd build
5+
sdh_cmake -DCMAKE_BUILD_TYPE=Release \
6+
-DENABLE_TESTING=OFF \
7+
-DREDIS_STORAGE_BACKEND=OFF \
8+
..
89
sdh_make
910
sdh_make_install
1011

11-
1212
set -e
1313

1414
mkdir -p "$SAGE_LOCAL/libexec/ccache"
@@ -21,4 +21,4 @@ ln -sf ../../bin/ccache "$SAGE_LOCAL/libexec/ccache/clang++"
2121

2222
# Copy a reasonable default configuration for Sage
2323
# (cache size of 4G and compression enabled)
24-
cp -p ../ccache.conf "$SAGE_LOCAL/etc"
24+
cp -p ../../ccache.conf "$SAGE_LOCAL/etc"

0 commit comments

Comments
 (0)