-
-
Notifications
You must be signed in to change notification settings - Fork 671
upgrade Maxima to 5.46.0 #35619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
upgrade Maxima to 5.46.0 #35619
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
a6b275e
Trac #32867: don't export MAXIMA_PREFIX.
orlitzky e0933f2
Trac #32867: new spkg-configure.m4 for maxima.
orlitzky 78fa266
Trac #32867: maxima package information for Cygwin.
orlitzky 6da6bef
Trac #32867: disable maxima tests that require matrixexp.patch.
orlitzky a46efcd
Trac #32867: add maxima package information for Gentoo.
orlitzky 6ab5b8d
Trac #32867: don't set a heap limit for the pexpect maxima.
orlitzky 9e5e30c
Trac #32867: don't require pexpect maxima to live in a "/bin" directory.
orlitzky 61759e3
Trac #32867: update package information in distros/arch.txt.
orlitzky bfb7695
add maxima FreeBSD package info
dimpase 76d65fe
update maxima to 5.46.0
dimpase 5760b55
Maxima's way to disable building its docs
dimpase 27c93ee
make info (and makeinfo) standard, simplify scripts for ecl and maxima
dimpase ed08b85
fix maxima tests for version 5.46.0
dimpase 6754c42
set maxima version to be at least 5.45.0
dimpase 5d53851
use standard "tail" options throughout, fix a minor typo
dimpase ea4f5a1
Update src/sage/calculus/calculus.py
dimpase c892559
Update src/sage/calculus/calculus.py
dimpase 1f30ea0
Update src/sage/calculus/calculus.py
dimpase da5323b
Update src/sage/calculus/calculus.py
dimpase dcaa699
Update src/sage/interfaces/maxima_lib.py
dimpase 1854f52
Update src/sage/matrix/matrix2.pyx
dimpase c7528c6
set "digits=10"
dimpase c08cb3d
one #random tag less
dimpase 45c97a8
fix tail parameter
dimpase ba6b8b7
fix tail parameter
dimpase cc522fa
info must be in dependencies of maxima
dimpase 0dbcb4a
info and texinfo for Fedora
dimpase 42a9042
another -1 to 1
dimpase File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
$(MP_LIBRARY) readline gc libffi | ||
$(MP_LIBRARY) readline gc libffi info | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 @@ | ||
texinfo | ||
texinfo info |
This file contains hidden or 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,14 @@ | ||
SAGE_SPKG_CONFIGURE([info], [ | ||
AC_PATH_PROG(INFO, info) | ||
AS_IF([test -z "${INFO}"], [sage_spkg_install_info=yes]) | ||
AS_IF([test -z "${INFO}"], [sage_spkg_install_info=yes | ||
], [ | ||
dnl very old makeinfo are not texi2any, newer are symlinks to texi2any | ||
AC_PATH_PROG(TEXI2ANY, texi2any) | ||
AS_IF([test -z "${TEXI2ANY}"], [sage_spkg_install_info=yes | ||
], [ | ||
AS_IF([makeinfo -c foo 2>&1 | grep -q invalid], [ | ||
dnl makeinfo found, but too old, and does not support all options that ecl likes to use | ||
sage_spkg_install_info=yes]) | ||
]) | ||
]) | ||
]) |
This file contains hidden or 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,2 +1,2 @@ | ||
cd src/info | ||
cd src | ||
sdh_make_install |
This file contains hidden or 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 @@ | ||
optional | ||
standard |
This file contains hidden or 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 @@ | ||
tarball=maxima-VERSION.tar.gz | ||
sha1=ed15d5285794413ba94412079eca3d0fa55a47bf | ||
md5=9b9ae1dace55b1386739dabaa9122e60 | ||
cksum=1765409766 | ||
sha1=1010594e6d6082bbd8efaac1b7756ec1721a4ed5 | ||
md5=3c01f1daa6936e11d8713fef7751d3fe | ||
cksum=2420393096 | ||
upstream_url=https://sourceforge.net/projects/maxima/files/Maxima-source/VERSION-source/maxima-VERSION.tar.gz/download |
This file contains hidden or 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 @@ | ||
ecl | ||
ecl info | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
This file contains hidden or 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 @@ | ||
maxima-ecl | ||
maxima-fas |
This file contains hidden or 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 @@ | ||
maxima |
This file contains hidden or 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 @@ | ||
math/maxima |
This file contains hidden or 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,2 @@ | ||
sci-mathematics/maxima[ecls] | ||
|
This file contains hidden or 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 @@ | ||
5.45.0.p0 | ||
5.46.0 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,46 @@ | ||
SAGE_SPKG_CONFIGURE([maxima], [ | ||
m4_pushdef([SAGE_MAXIMA_MINVER],["5.45.0"])dnl this version and higher allowed | ||
SAGE_SPKG_DEPCHECK([ecl], [ | ||
dnl First check for the "maxima" executable in the user's PATH, because | ||
dnl we still use pexpect to communicate with it in a few places. | ||
AC_CACHE_CHECK([for Maxima >= $SAGE_MAXIMA_MINVER], [ac_cv_path_MAXIMA], [ | ||
AC_PATH_PROGS_FEATURE_CHECK([MAXIMA], [maxima], [ | ||
maxima_version=`$ac_path_MAXIMA --version 2>&1 | tail -n 1\ | ||
| $SED -n -e 's/Maxima *\([[0-9]]*\.[[0-9]]*\.[[0-9]]*\)/\1/p'` | ||
dimpase marked this conversation as resolved.
Show resolved
Hide resolved
|
||
AS_IF([test -n "$maxima_version"], [ | ||
AX_COMPARE_VERSION([$maxima_version], [ge], [SAGE_MAXIMA_MINVER], [ | ||
ac_cv_path_MAXIMA="$ac_path_MAXIMA" | ||
ac_path_MAXIMA_found=: | ||
]) | ||
]) | ||
]) | ||
]) | ||
SAGE_MAXIMA="$ac_cv_path_MAXIMA" | ||
AS_IF([test -z "${SAGE_MAXIMA}"], [ | ||
sage_spkg_install_maxima=yes | ||
],[ | ||
dnl If we have the executable, check also for the ECL library. | ||
AC_MSG_CHECKING([if ECL can "require" the maxima module]) | ||
AS_IF([ecl --eval "(require 'maxima)" --eval "(quit)" \ | ||
>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD], [ | ||
AC_MSG_RESULT(yes) | ||
], [ | ||
AC_MSG_RESULT(no) | ||
sage_spkg_install_maxima=yes | ||
]) | ||
]) | ||
]) | ||
m4_popdef([SAGE_MAXIMA_MINVER]) | ||
],[],[],[ | ||
# post-check | ||
AS_IF([test x$sage_spkg_install_maxima = xyes], [ | ||
dnl Leaving this variable empty will tell sagelib to load | ||
dnl the maxima library (within ECL) by name instead of by | ||
dnl absolute path. | ||
SAGE_MAXIMA='${prefix}'/bin/maxima | ||
SAGE_MAXIMA_FAS='${prefix}'/lib/ecl/maxima.fas | ||
]) | ||
|
||
AC_SUBST(SAGE_MAXIMA, "${SAGE_MAXIMA}") | ||
AC_SUBST(SAGE_MAXIMA_FAS, "${SAGE_MAXIMA_FAS}") | ||
]) |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.