mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: cadabra2: Update to 2.5.8.
* gnu/packages/engineering.scm (cadabra2): Update to 2.5.8. [arguments]<#:phases>[patch-dependencies]: Remove phase. [inputs]: Replace glibmm by glibmm-2.66. Change-Id: I1bbf7ee6e96c35c5a5dcb9c01d94cad59542a2d2
This commit is contained in:
parent
84de473132
commit
790c9ffe59
1 changed files with 5 additions and 11 deletions
|
@ -4814,16 +4814,17 @@ (define-public python-asyncua
|
||||||
(define-public cadabra2
|
(define-public cadabra2
|
||||||
(package
|
(package
|
||||||
(name "cadabra2")
|
(name "cadabra2")
|
||||||
(version "2.4.5.6")
|
(version "2.5.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/kpeeters/cadabra2")
|
(url "https://github.com/kpeeters/cadabra2")
|
||||||
(commit version)))
|
(commit version)
|
||||||
|
(recursive? #t)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1c0832q156kl83dz1wpjw4wf2f68fg7421wxwzahnr2r7xxvgrvl"))))
|
"0pcijvvv75x6408r6slkwljhqb4l4csnk6dhf5333dv9j9cm76ck"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -4838,20 +4839,13 @@ (define-public cadabra2
|
||||||
(assoc-ref %outputs "out")))
|
(assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-dependencies
|
|
||||||
(lambda _
|
|
||||||
(substitute* "cmake/modules/FindGLIBMM.cmake"
|
|
||||||
(("glibmm-2[.]4") "glibmm-2.68"))
|
|
||||||
(substitute* "client_server/ComputeThread.cc"
|
|
||||||
(("sigc::slot<void>[(][)]") "{}")
|
|
||||||
(("Glib::SPAWN_") "Glib::SpawnFlags::"))))
|
|
||||||
(add-before 'check 'prepare-checks
|
(add-before 'check 'prepare-checks
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "HOME" "/tmp"))))))
|
(setenv "HOME" "/tmp"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list glibmm gmp python boost gtkmm-3 sqlite python-gmpy2 python-sympy
|
(list glibmm-2.66 gmp python boost gtkmm-3 sqlite python-gmpy2 python-sympy
|
||||||
python-mpmath python-matplotlib texlive-dvipng
|
python-mpmath python-matplotlib texlive-dvipng
|
||||||
`(,util-linux "lib")))
|
`(,util-linux "lib")))
|
||||||
(synopsis "Computer algebra system geared towards field theory")
|
(synopsis "Computer algebra system geared towards field theory")
|
||||||
|
|
Loading…
Reference in a new issue