[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: python2-warpedlmm: Remove phase remove-bin-directory.
From: |
Hartmut Goebel |
Subject: |
06/06: gnu: python2-warpedlmm: Remove phase remove-bin-directory. |
Date: |
Thu, 20 Oct 2016 08:03:18 +0000 (UTC) |
htgoebel pushed a commit to branch wip-python-build-system
in repository guix.
commit 8fd38f5be016eb84c053407120f407a6d5db94db
Author: Hartmut Goebel <address@hidden>
Date: Wed Oct 19 23:45:12 2016 +0200
gnu: python2-warpedlmm: Remove phase remove-bin-directory.
This directory did contain contain wrappers for `nose`, which should not
be there anyway (since nose already was a native-input). The new
python build system no longer creates this directory, while the old one
did. (This difference is due to the bloody details of how packages are
installed.)
* gnu/packages/bioinformatics.scm (python2-warpedlmm)
[modify-phases] Remove, since remove-bin-directory was the only
modification here.
---
gnu/packages/bioinformatics.scm | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index d97209b..ad0895f 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3501,18 +3501,7 @@ files and writing bioinformatics applications.")
"1agfz6zqa8nc6cw47yh0s3y14gkpa9wqazwcj7mwwj3ffnw39p3j"))))
(build-system python-build-system)
(arguments
- `(#:python ,python-2 ; requires Python 2.7
- #:phases
- (modify-phases %standard-phases
- (add-after
- 'install 'remove-bin-directory
- (lambda* (#:key outputs #:allow-other-keys)
- ;; The "bin" directory only contains wrappers for running
- ;; the module tests. They are not needed after the
- ;; "check" phase.
- (delete-file-recursively
- (string-append (assoc-ref outputs "out") "/bin"))
- #t)))))
+ `(#:python ,python-2)) ; requires Python 2.7
(propagated-inputs
`(("python-scipy" ,python2-scipy)
("python-numpy" ,python2-numpy)
- branch wip-python-build-system updated (411c893 -> 8fd38f5), Hartmut Goebel, 2016/10/20
- 05/06: FIXUP pathpy: 8b86f797, Hartmut Goebel, 2016/10/20
- 03/06: FIXUP python-feedgenerator, Hartmut Goebel, 2016/10/20
- 01/06: khal: fix build: add-installed-pythonpath., Hartmut Goebel, 2016/10/20
- 02/06: FIXUP python-joblib, Hartmut Goebel, 2016/10/20
- 04/06: Fixup python-ipython: add-installed-pythonpath 6e1788e, Hartmut Goebel, 2016/10/20
- 06/06: gnu: python2-warpedlmm: Remove phase remove-bin-directory.,
Hartmut Goebel <=