gnu: giac: Update to 1.6.0-23.

* gnu/packages/algebra.scm (giac): Update to 1.6.0-23.
[arguments]: Fix more hard-coded /bin/cp in Make files.
[native-inputs]: Add python-wrapper.
This commit is contained in:
Nicolas Goaziou 2020-09-29 13:57:38 +02:00
parent 7806e568f6
commit 07c3c3ba53
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -354,7 +354,7 @@ (define-public cmh
(define-public giac
(package
(name "giac")
(version "1.6.0-7")
(version "1.6.0-23")
(source
(origin
(method url-fetch)
@ -366,7 +366,7 @@ (define-public giac
"~parisse/debian/dists/stable/main/source/"
"giac_" version ".tar.gz"))
(sha256
(base32 "1pvgp137zcl0rbhdn1j41xxfml7fp771a7x4ph8qrhhlx0hxzn3p"))))
(base32 "0bgc3jw9r0f2bkqv0m4hla7r7mxi3fzscnkjfc5cvffp3nk2gwvf"))))
(build-system gnu-build-system)
(arguments
`(#:modules ((ice-9 ftw)
@ -377,7 +377,8 @@ (define-public giac
(add-after 'unpack 'patch-bin-cp
;; Some Makefiles contain hard-coded "/bin/cp".
(lambda _
(substitute* (find-files "doc" "^Makefile")
(substitute* (cons "micropython-1.12/xcas/Makefile"
(find-files "doc" "^Makefile"))
(("/bin/cp") (which "cp")))
#t))
(add-after 'unpack 'disable-failing-test
@ -406,7 +407,7 @@ (define-public giac
(delete-file (string-append out "/bin/xcasnew"))
#t))))))
(inputs
;;; TODO: Add libnauty.
;; TODO: Add libnauty, unbundle "libmicropython.a".
`(("fltk" ,fltk)
("glpk" ,glpk)
("gmp" ,gmp)
@ -430,6 +431,7 @@ (define-public giac
(native-inputs
`(("bison" ,bison)
("flex" ,flex)
("python" ,python-wrapper)
("readline" ,readline)
("texlive" ,texlive-tiny)))
(home-page "https://www-fourier.ujf-grenoble.fr/~parisse/giac.html")