glv pushed a commit to branch master
in repository guix.
commit 5dc04da4dfa5330cd634f7a6dddc3fcdfe102f8a
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Sun Jun 7 10:40:48 2020 +0200
gnu: sbcl-cl-random-forest: Remove obsolete fix.
* gnu/packages/machine-learning.scm (sbcl-cl-random-forest)[arguments]:
Remove
'add-sb-cltl2-dependency' phase.
---
gnu/packages/machine-learning.scm | 15 ++-------------
1 file changed, 2 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index e267682..4be165f 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -11,7 +11,7 @@
;;; Copyright © 2018 Julien Lepiller <[email protected]>
;;; Copyright © 2018 Björn Höfling <[email protected]>
;;; Copyright © 2019 Nicolas Goaziou <[email protected]>
-;;; Copyright © 2019 Guillaume Le Vaillant <[email protected]>
+;;; Copyright © 2019, 2020 Guillaume Le Vaillant <[email protected]>
;;; Copyright © 2019 Brett Gilio <[email protected]>
;;; Copyright © 2020 Konrad Hinsen <[email protected]>
;;; Copyright © 2020 Edouard Klein <[email protected]>
@@ -2067,18 +2067,7 @@ online linear classification written in Common Lisp.")
("cl-online-learning" ,sbcl-cl-online-learning)
("lparallel" ,sbcl-lparallel)))
(arguments
- `(;; The tests download data from the Internet
- #:tests? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'add-sb-cltl2-dependency
- (lambda _
- ;; sb-cltl2 is required by lparallel when using sbcl, but it is
- ;; not loaded automatically.
- (substitute* "cl-random-forest.asd"
- (("\\(in-package :cl-user\\)")
- "(in-package :cl-user) #+sbcl (require :sb-cltl2)"))
- #t)))))
+ `(#:tests? #f)) ; The tests download data from the Internet
(synopsis "Random Forest and Global Refinement for Common Lisp")
(description
"CL-random-forest is an implementation of Random Forest for multiclass