public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Yaakov Selkowitz <yselkowi@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/maxima] f45: Update to 5.50.0
Date: Thu, 20 Aug 2026 02:19:43 GMT [thread overview]
Message-ID: <178719238302.1.1281636716122202969.rpms-maxima-d9969e211773@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/maxima
Branch : f45
Commit : d9969e211773f3c627d51d2ef34b7ee8a1d9c6fb
Author : Yaakov Selkowitz <yselkowi@redhat.com>
Date : 2026-08-19T15:26:21-04:00
Stats : +34/-41 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/maxima/c/d9969e211773f3c627d51d2ef34b7ee8a1d9c6fb?branch=f45
Log:
Update to 5.50.0
- Resolves: rhbz#2504322
- Resolves: rhbz#2517329
---
diff --git a/.gitignore b/.gitignore
index 577c62c..e5ca840 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
/maxima-5.47.0.tar.gz
/maxima-5.48.1.tar.gz
/maxima-5.49.0.tar.gz
+/maxima-5.50.0.tar.gz
diff --git a/matrixexp.patch b/matrixexp.patch
deleted file mode 100644
index a9318b0..0000000
--- a/matrixexp.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/share/linearalgebra/matrixexp.lisp
-+++ b/share/linearalgebra/matrixexp.lisp
-@@ -138,8 +138,8 @@
- (print `(ratvars = ,$ratvars gcd = '$gcd algebraic = ,$algebraic))
- (print `(ratfac = ,$ratfac))
- (merror "Unable to find the spectrum")))
--
-- (setq res ($fullratsimp (ncpower (sub (mult z ($ident n)) mat) -1) z))
-+
-+ (setq res ($fullratsimp ($invert_by_lu (sub (mult z ($ident n)) mat) '$crering) z))
- (setq m (length sp))
- (dotimes (i m)
- (setq zi (nth i sp))
diff --git a/maxima-ecl_ldflags.patch b/maxima-ecl_ldflags.patch
index a52eeee..55a16ac 100644
--- a/maxima-ecl_ldflags.patch
+++ b/maxima-ecl_ldflags.patch
@@ -1,26 +1,31 @@
---- maxima-5.45.1/src/maxima.system.orig 2022-03-07 11:23:14.847637296 -0700
-+++ maxima-5.45.1/src/maxima.system 2022-03-07 11:29:22.520003900 -0700
-@@ -80,17 +80,13 @@
- (let ((obj (mapcar #'(lambda (p)
- ;; Convert dir/foo.fas to dir/foo.o
- (make-pathname :type "o" :defaults p))
-- files)))
-- (c::build-fasl "binary-ecl/maxima" :lisp-files obj
-- :ld-flags
-- (let ((x (symbol-value (find-symbol "*AUTOCONF-LD-FLAGS*"
-- (find-package "MAXIMA")))))
+From 66a309e12ffa6c3bd3680565508132d106e47545 Mon Sep 17 00:00:00 2001
+From: Juergen Hoetzel <juergen@hoetzel.info>
+Date: Tue, 12 Mar 2024 23:17:02 +0100
+Subject: [PATCH] ECL: Fix autoconf options on whitespace
+
+---
+ src/maxima.system | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/maxima.system b/src/maxima.system
+index 458565085..4202fc8f4 100644
+--- a/src/maxima.system
++++ b/src/maxima.system
+@@ -80,12 +80,12 @@
+ :ld-flags
+ (let ((x (symbol-value (find-symbol "*AUTOCONF-LD-FLAGS*"
+ (find-package "MAXIMA")))))
- (if (and x (not (string= x ""))) (list x))))
-+ files))
-+ (ldflags (let ((x (symbol-value (find-symbol "*AUTOCONF-LD-FLAGS*"
-+ (find-package "MAXIMA")))))
-+ (if (and x (not (string= x ""))) (c::split-program-options x)))))
-+ (c::build-fasl "binary-ecl/maxima" :lisp-files obj :ld-flags ldflags)
++ (if (and x (not (string= x ""))) (c::split-program-options x))))
(c::build-program "binary-ecl/maxima" :lisp-files obj
-- :ld-flags
-- (let ((x (symbol-value (find-symbol "*AUTOCONF-LD-FLAGS*"
-- (find-package "MAXIMA")))))
+ :ld-flags
+ (let ((x (symbol-value (find-symbol "*AUTOCONF-LD-FLAGS*"
+ (find-package "MAXIMA")))))
- (if (and x (not (string= x ""))) (list x)))
-+ :ld-flags ldflags
++ (if (and x (not (string= x ""))) (c::split-program-options x)))
:epilogue-code '(progn (cl-user::run)))))))
- (defun maxima-binary-pathname ()
+ ;; CMUCL, SCL, SBCL and LispWorks build an absolute binary pathname
+--
+2.44.0
+
diff --git a/maxima.spec b/maxima.spec
index ee73e17..515638f 100644
--- a/maxima.spec
+++ b/maxima.spec
@@ -1,6 +1,8 @@
+%bcond tests 1
+
Summary: Symbolic Computation Program
Name: maxima
-Version: 5.49.0
+Version: 5.50.0
Release: %autorelease
# Automatically converted from old format: GPLv2 - review is highly recommended.
License: GPL-2.0-only
@@ -17,12 +19,9 @@ Patch50: maxima-5.37.1-clisp-noreadline.patch
Patch51: maxima-5.30.0-build-fasl.patch
# handle multiple ldflags in ecl build
+# https://gitlab.archlinux.org/archlinux/packaging/packages/maxima/-/blob/main/0001-ECL-Fix-autoconf-options-on-whitespace.patch
Patch52: maxima-ecl_ldflags.patch
-# fix matrix exponentiation
-# https://gitlab.archlinux.org/archlinux/packaging/packages/maxima/-/raw/main/matrixexp.patch
-Patch53: matrixexp.patch
-
# Use GMP arithmetic with sbcl (Void Linux)
# https://gitlab.archlinux.org/archlinux/packaging/packages/maxima/-/raw/main/maxima-sbcl-gmp.patch
Patch54: maxima-sbcl-gmp.patch
@@ -286,7 +285,9 @@ touch debugfiles.list
%check
desktop-file-validate %{buildroot}%{_datadir}/applications/Xmaxima.desktop
+%if %{with tests}
make -k check || cat tests/test-suite.log
+%endif
%triggerin -- tetex-latex,texlive-latex
if [ -d %{texmf}/tex/latex ]; then
@@ -327,7 +328,6 @@ fi
%{_datadir}/icons/hicolor/scalable/mimetypes/*
%dir %{_libdir}/maxima/
%dir %{_libdir}/maxima/%{maxima_ver}/
-%{_libexecdir}/maxima
%{_infodir}/imaxima*
%{_infodir}/maxima*
%{_infodir}/abs_integrate.info*
diff --git a/sources b/sources
index 21febb1..1b8db7b 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
SHA512 (maximabook-19-Sept-2004.pdf) = 130ae7079f7f941890ef6b65d5cff6d2f0951955bb21c358185098efc9d7f33a667708b974f739601aece23bb85f687287492ea2b9a4a982a7dd8fca22a5b654
SHA512 (macref.pdf) = c5e9c72549933d873cff8fa6776d97e9b818e0861968cfa1f8fc417db2db6ce756d265617abc66afeb5056145b29319a548d011c927a2424bc37e40f1cfba6d8
-SHA512 (maxima-5.49.0.tar.gz) = 8cefd3f786f43b30e0c6bbf62adbb66ecb0454b238a90b40377e8451618b1668f01c6d3204537d52ab9de1684d6db1e88958c88561e60aca7bbb0c0c470b5436
+SHA512 (maxima-5.50.0.tar.gz) = c790c6a0b955827a72448ae272f04248357c62ad2fa5d1ea5e7407cd70c95453273638ce8ccc5f58fb58c163cfda37a3641045f581ea5a6dbd234865b5f655e6
reply other threads:[~2026-08-20 2:19 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178719238302.1.1281636716122202969.rpms-maxima-d9969e211773@fedoraproject.org \
--to=yselkowi@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox