build/cargo-build-system: Use invoke.

* guix/build/cargo-build-system.scm (crate-src?, build, check,
install): Use 'invoke'.
This commit is contained in:
Efraim Flashner 2019-09-02 11:07:53 +03:00
parent f7a8571b37
commit 2f43e5db1c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 7 deletions

View File

@ -81,10 +81,10 @@ Cargo.toml file present at its root."
;; archive, but not nested anywhere else). We do this by cutting up ;; archive, but not nested anywhere else). We do this by cutting up
;; each output line and only looking at the second component. We then ;; each output line and only looking at the second component. We then
;; check if it matches Cargo.toml exactly and short circuit if it does. ;; check if it matches Cargo.toml exactly and short circuit if it does.
(zero? (apply system* (list "sh" "-c" (apply invoke (list "sh" "-c"
(string-append "tar -tf " path (string-append "tar -tf " path
" | cut -d/ -f2" " | cut -d/ -f2"
" | grep -q '^Cargo.toml$'")))))) " | grep -q '^Cargo.toml$'")))))
(define* (configure #:key inputs (define* (configure #:key inputs
(vendor-dir "guix-vendor") (vendor-dir "guix-vendor")
@ -157,7 +157,7 @@ directory = '" port)
#:allow-other-keys) #:allow-other-keys)
"Build a given Cargo package." "Build a given Cargo package."
(or skip-build? (or skip-build?
(zero? (apply system* `("cargo" "build" ,@cargo-build-flags))))) (apply invoke `("cargo" "build" ,@cargo-build-flags))))
(define* (check #:key (define* (check #:key
tests? tests?
@ -165,7 +165,7 @@ directory = '" port)
#:allow-other-keys) #:allow-other-keys)
"Run tests for a given Cargo package." "Run tests for a given Cargo package."
(if tests? (if tests?
(zero? (apply system* `("cargo" "test" ,@cargo-test-flags))) (apply invoke `("cargo" "test" ,@cargo-test-flags))
#t)) #t))
(define (touch file-name) (define (touch file-name)
@ -184,7 +184,7 @@ directory = '" port)
;; otherwise cargo will raise an error. ;; otherwise cargo will raise an error.
(or skip-build? (or skip-build?
(not (has-executable-target?)) (not (has-executable-target?))
(zero? (system* "cargo" "install" "--path" "." "--root" out))))) (invoke "cargo" "install" "--path" "." "--root" out))))
(define %standard-phases (define %standard-phases
(modify-phases gnu:%standard-phases (modify-phases gnu:%standard-phases