mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 08:36:32 +01:00
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.
This commit is contained in:
parent
39033592a8
commit
362be0b7f8
1 changed files with 10 additions and 12 deletions
|
@ -1732,14 +1732,14 @@ (define-public radare2
|
|||
(define-public asco
|
||||
(package
|
||||
(name "asco")
|
||||
(version "0.4.10")
|
||||
(source (origin
|
||||
(version "0.4.11")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://sourceforge/asco/asco/" version "/ASCO-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"119rbc2dc8xzwxvykgji0v0nrzvymjmlizr1bc2mihspj686kxsl"))))
|
||||
(base32 "0ggxv0p1zmfbvd1k17p2j1cskbjsa83fansz8ihxn7ax9qdicljv"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
|
@ -1756,8 +1756,7 @@ (define-public asco
|
|||
(("nice")
|
||||
(string-append coreutils "/bin/nice")))
|
||||
(substitute* "Makefile"
|
||||
(("<FULL_PATH_TO_MPICH>/bin/mpicc") (which "mpicc")))
|
||||
#t)))
|
||||
(("<FULL_PATH_TO_MPICH>/bin/mpicc") (which "mpicc"))))))
|
||||
(replace 'install ; no install target
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(for-each (lambda (file)
|
||||
|
@ -1765,8 +1764,7 @@ (define-public asco
|
|||
(assoc-ref outputs "out")
|
||||
"/bin")))
|
||||
'("asco" "asco-mpi" "asco-test"
|
||||
"tools/alter/alter" "tools/log/log"))
|
||||
#t)))))
|
||||
"tools/alter/alter" "tools/log/log")))))))
|
||||
(native-inputs
|
||||
`(("mpi" ,openmpi)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue