gnu: asco: Update to 0.4.11.
* gnu/packages/engineering.scm (asco): Update to 0.4.11. [arguments]: Don't explicitly return #t from phases.master
parent
39033592a8
commit
362be0b7f8
|
@ -1732,14 +1732,14 @@ it suitable for security research and analysis.")
|
||||||
(define-public asco
|
(define-public asco
|
||||||
(package
|
(package
|
||||||
(name "asco")
|
(name "asco")
|
||||||
(version "0.4.10")
|
(version "0.4.11")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "mirror://sourceforge/asco/asco/" version "/ASCO-"
|
(method url-fetch)
|
||||||
version ".tar.gz"))
|
(uri (string-append "mirror://sourceforge/asco/asco/" version "/ASCO-"
|
||||||
(sha256
|
version ".tar.gz"))
|
||||||
(base32
|
(sha256
|
||||||
"119rbc2dc8xzwxvykgji0v0nrzvymjmlizr1bc2mihspj686kxsl"))))
|
(base32 "0ggxv0p1zmfbvd1k17p2j1cskbjsa83fansz8ihxn7ax9qdicljv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
|
@ -1756,8 +1756,7 @@ it suitable for security research and analysis.")
|
||||||
(("nice")
|
(("nice")
|
||||||
(string-append coreutils "/bin/nice")))
|
(string-append coreutils "/bin/nice")))
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("<FULL_PATH_TO_MPICH>/bin/mpicc") (which "mpicc")))
|
(("<FULL_PATH_TO_MPICH>/bin/mpicc") (which "mpicc"))))))
|
||||||
#t)))
|
|
||||||
(replace 'install ; no install target
|
(replace 'install ; no install target
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(for-each (lambda (file)
|
(for-each (lambda (file)
|
||||||
|
@ -1765,8 +1764,7 @@ it suitable for security research and analysis.")
|
||||||
(assoc-ref outputs "out")
|
(assoc-ref outputs "out")
|
||||||
"/bin")))
|
"/bin")))
|
||||||
'("asco" "asco-mpi" "asco-test"
|
'("asco" "asco-mpi" "asco-test"
|
||||||
"tools/alter/alter" "tools/log/log"))
|
"tools/alter/alter" "tools/log/log")))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("mpi" ,openmpi)))
|
`(("mpi" ,openmpi)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Reference in New Issue