gnu: libngspice: Update to 35.
* gnu/packages/engineering.scm (libngspice): Update to 35. [arguments]<#:phases>: Rename 'delete-scripts-and-config to 'delete-scripts and don't try to delete config.h because that file was removed in this version. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>master
parent
1c57703a16
commit
fa6a1f52b2
|
@ -1709,7 +1709,7 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
|
||||||
;; See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=27344#236>.
|
;; See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=27344#236>.
|
||||||
(package
|
(package
|
||||||
(name "libngspice")
|
(name "libngspice")
|
||||||
(version "34")
|
(version "35")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -1720,7 +1720,7 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
|
||||||
"old-releases/" version
|
"old-releases/" version
|
||||||
"/ngspice-" version ".tar.gz")))
|
"/ngspice-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1dfpkgkwmgwhq8dnbb8dh28cfap6rw0yywkhmxr4jxclcvygyqr2"))))
|
(base32 "1v3ra9p2sc6ash1bbjm6i4i3dd6ymxjgnyha7z5rlmyvfv1gbdy1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; No tests for libngspice exist.
|
`(;; No tests for libngspice exist.
|
||||||
|
@ -1737,16 +1737,11 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
|
||||||
(substitute* "man/man1/Makefile.in"
|
(substitute* "man/man1/Makefile.in"
|
||||||
(("^man_MANS = ngspice\\.1 ngnutmeg\\.1 ngsconvert\\.1 ngmultidec\\.1")
|
(("^man_MANS = ngspice\\.1 ngnutmeg\\.1 ngsconvert\\.1 ngmultidec\\.1")
|
||||||
"man_MANS = "))))
|
"man_MANS = "))))
|
||||||
(add-after 'install 'delete-scripts-and-config
|
(add-after 'install 'delete-scripts
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(delete-file-recursively
|
(delete-file-recursively
|
||||||
(string-append (assoc-ref outputs "out")
|
(string-append (assoc-ref outputs "out")
|
||||||
"/share/ngspice/scripts"))
|
"/share/ngspice/scripts")))))
|
||||||
;; This file is autogenerated by the configure script and should
|
|
||||||
;; not be distributed. It could be removed in ngspice 35. See
|
|
||||||
;; https://bugs.archlinux.org/task/70569 for reference.
|
|
||||||
(delete-file (string-append (assoc-ref outputs "out")
|
|
||||||
"/include/config.h")))))
|
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "--enable-openmp"
|
(list "--enable-openmp"
|
||||||
"--enable-ciderlib"
|
"--enable-ciderlib"
|
||||||
|
|
Reference in New Issue