summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2017-12-31 12:13:52 +0700
committerAndrey Grozin <grozin@gentoo.org>2017-12-31 12:13:52 +0700
commite954c188b17b8fb279bfadf1051de87bad4cbae3 (patch)
tree37d3a4d2a706190487d7b863d0cb9785146326f3 /sci-mathematics/maxima/files
parentsci-mathematics/maxima: use l10n instead of linguas (diff)
downloadgentoo-e954c188b17b8fb279bfadf1051de87bad4cbae3.tar.gz
gentoo-e954c188b17b8fb279bfadf1051de87bad4cbae3.tar.bz2
gentoo-e954c188b17b8fb279bfadf1051de87bad4cbae3.zip
sci-mathematics/maxima: clean 5.37.3-r4, 5.39.0, 5.40.0
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'sci-mathematics/maxima/files')
-rw-r--r--sci-mathematics/maxima/files/db-0.patch20
-rw-r--r--sci-mathematics/maxima/files/sbcl-1.patch18
2 files changed, 0 insertions, 38 deletions
diff --git a/sci-mathematics/maxima/files/db-0.patch b/sci-mathematics/maxima/files/db-0.patch
deleted file mode 100644
index d6cc18617cc5..000000000000
--- a/sci-mathematics/maxima/files/db-0.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -r -U2 maxima-5.37.1.orig/src/db.lisp maxima-5.37.1/src/db.lisp
---- maxima-5.37.1.orig/src/db.lisp 2015-08-11 01:01:13.000000000 +0600
-+++ maxima-5.37.1/src/db.lisp 2015-09-04 00:21:43.596685564 +0600
-@@ -389,10 +389,14 @@
-
- (defmfun isp (pat)
-- (let ((isp 'unknown))
-+ (let ((isp 'unknown) #+ccl (err t))
- (ignore-errors
- (setq isp
- (cond ((truep pat))
- ((falsep pat) nil)
-- (t 'unknown))))
-+ (t 'unknown)))
-+ (setq err nil))
-+ #+ccl
-+ (when err
-+ (setq +labs nil))
- isp))
-
diff --git a/sci-mathematics/maxima/files/sbcl-1.patch b/sci-mathematics/maxima/files/sbcl-1.patch
deleted file mode 100644
index 8899f0973708..000000000000
--- a/sci-mathematics/maxima/files/sbcl-1.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -r -U1 maxima-5.37.1.orig/src/maxima.in maxima-5.37.1/src/maxima.in
---- maxima-5.37.1.orig/src/maxima.in 2015-05-22 04:40:03.000000000 +0600
-+++ maxima-5.37.1/src/maxima.in 2015-09-03 16:22:57.340893630 +0600
-@@ -193,5 +193,5 @@
- if [ -x "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/maxima" ]; then
-- exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/maxima" --noinform $MAXIMA_LISP_OPTIONS --end-runtime-options --eval '(cl-user::run)' --end-toplevel-options "$@"
-+ exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/maxima" --noinform $MAXIMA_LISP_OPTIONS --end-runtime-options --no-sysinit --no-userinit --eval '(cl-user::run)' --end-toplevel-options "$@"
- else
-- exec "@SBCL_NAME@" --core "$maxima_image_base.core" --noinform $MAXIMA_LISP_OPTIONS --end-runtime-options --eval '(cl-user::run)' --end-toplevel-options "$@"
-+ exec "@SBCL_NAME@" --core "$maxima_image_base.core" --noinform $MAXIMA_LISP_OPTIONS --end-runtime-options --no-sysinit --no-userinit --eval '(cl-user::run)' --end-toplevel-options "$@"
- fi
-diff -r -U1 maxima-5.37.1.orig/src/server.lisp maxima-5.37.1/src/server.lisp
---- maxima-5.37.1.orig/src/server.lisp 2015-04-10 01:41:59.000000000 +0600
-+++ maxima-5.37.1/src/server.lisp 2015-09-03 16:23:47.100891537 +0600
-@@ -10,3 +10,2 @@
- (eval-when (:compile-toplevel :load-toplevel :execute)
-- #+sbcl (require 'asdf) ;not needed here for a recent SBCL
- #+sbcl (require 'sb-posix)