gnu: cl-simple-neural-network: Update to 3.2.

* gnu/packages/lisp-xyz.scm (sbcl-simple-neural-network): Update to 3.2.
  [native-inputs, inputs]: Remove labels.
  [arguments]: Use gexp.

Change-Id: Ia7682c82f88ab509715d90e37612b0208d500ed4
This commit is contained in:
Guillaume Le Vaillant 2024-12-07 11:35:18 +01:00
parent 99c75817ef
commit bc630c5ebe
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -27472,30 +27472,27 @@ functions to work with matrices.")
(define-public sbcl-simple-neural-network (define-public sbcl-simple-neural-network
(package (package
(name "sbcl-simple-neural-network") (name "sbcl-simple-neural-network")
(version "3.1") (version "3.2")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://codeberg.org/glv/simple-neural-network") (url "https://codeberg.org/glv/simple-neural-network")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name "simple-neural-network" version)) (file-name (git-file-name "cl-simple-neural-network" version))
(sha256 (sha256
(base32 "1jj1c90fr5clwka0jv32hv6xp1bkdlpa6x5jh19an13rhx8ll4zr")))) (base32 "15c4851qm1zv76hqa4081z0ni7dnf23130x1rxgsiysjpvz2slyf"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(native-inputs (native-inputs
`(("chipz" ,sbcl-chipz) (list sbcl-chipz sbcl-fiveam))
("fiveam" ,sbcl-fiveam)))
(inputs (inputs
`(("cl-store" ,sbcl-cl-store) (list sbcl-cl-store sbcl-lparallel))
("lparallel" ,sbcl-lparallel)))
(arguments (arguments
`(#:phases (list #:phases
(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'check 'remove-test-data (add-after 'check 'remove-test-data
(lambda* (#:key outputs #:allow-other-keys) (lambda _
(let ((out (assoc-ref outputs "out"))) (for-each delete-file (find-files #$output "\\.gz$")))))))
(for-each delete-file (find-files out "\\.gz$"))))))))
(synopsis "Simple neural network in Common Lisp") (synopsis "Simple neural network in Common Lisp")
(description (description
"@code{simple-neural-network} is a Common Lisp library for creating, "@code{simple-neural-network} is a Common Lisp library for creating,