build-system/python: Return #t from all phases.

* guix/build/python-build-system.scm (build, install, wrap): Return #t.
(check): Return #t and remove vestigial plumbing.
This commit is contained in:
Mark H Weaver 2018-03-18 00:25:09 -04:00
parent 953468743f
commit 1e62645402
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -128,7 +128,8 @@ (define (call-setuppy command params use-setuptools?)
(define* (build #:key use-setuptools? #:allow-other-keys)
"Build a given Python package."
(call-setuppy "build" '() use-setuptools?))
(call-setuppy "build" '() use-setuptools?)
#t)
(define* (check #:key tests? test-target use-setuptools? #:allow-other-keys)
"Run the test suite of a given Python package."
@ -138,15 +139,12 @@ (define* (check #:key tests? test-target use-setuptools? #:allow-other-keys)
;; (given with `package_dir`). This will by copied to the output, too,
;; so we need to remove.
(let ((before (find-files "build" "\\.egg-info$" #:directories? #t)))
(if (call-setuppy test-target '() use-setuptools?)
(let* ((after (find-files "build" "\\.egg-info$" #:directories? #t))
(inter (lset-difference eqv? after before)))
(for-each delete-file-recursively inter)
#t)
#f))
(begin
(format #t "test suite not run~%")
#t)))
(call-setuppy test-target '() use-setuptools?)
(let* ((after (find-files "build" "\\.egg-info$" #:directories? #t))
(inter (lset-difference eqv? after before)))
(for-each delete-file-recursively inter)))
(format #t "test suite not run~%"))
#t)
(define (get-python-version python)
(let* ((version (last (string-split python #\-)))
@ -183,7 +181,8 @@ (define* (install #:key outputs (configure-flags '()) use-setuptools?
"--root=/")
'())
configure-flags)))
(call-setuppy "install" params use-setuptools?)))
(call-setuppy "install" params use-setuptools?)
#t))
(define* (wrap #:key inputs outputs #:allow-other-keys)
(define (list-of-files dir)
@ -212,7 +211,8 @@ (define bindirs
(let ((files (list-of-files dir)))
(for-each (cut wrap-program <> var)
files)))
bindirs)))
bindirs)
#t))
(define* (rename-pth-file #:key name inputs outputs #:allow-other-keys)
"Rename easy-install.pth to NAME.pth to avoid conflicts between packages