gnu: sbcl-geco: Update to 2.1.2.

* gnu/packages/lisp-xyz.scm (sbcl-geco): Update to 2.1.2.
  [home-page]: Update home page.
  [license]: Fix license.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Foo Chuan Wei 2021-12-11 14:37:21 +00:00 committed by Guillaume Le Vaillant
parent d1072f21ba
commit c12c7f1284
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F

@ -12650,25 +12650,28 @@ XML to Lisp structures or s-expressions and back.")
((#:tests? _ #f) #f)))))) ((#:tests? _ #f) #f))))))
(define-public sbcl-geco (define-public sbcl-geco
(package (let ((commit "db13c9384491092975f46f6a837ccdc04681a93a")
(name "sbcl-geco") (revision "1"))
(version "2.1.1") (package
(source (name "sbcl-geco")
(origin (version (git-version "2.1.2" revision commit))
(method git-fetch) (source
(uri (git-reference (origin
(url "https://github.com/gpwwjr/GECO") (method git-fetch)
(commit (string-append "v" version)))) (uri (git-reference
(file-name (git-file-name "geco" version)) (url "https://github.com/gpwwjr/GECO")
(sha256 (commit commit)))
(base32 "1rc8a4mk40hjx5qy980hjylv6xxqdbq38hg8c4w30y93abfd519s")))) (file-name (git-file-name "cl-geco" version))
(build-system asdf-build-system/sbcl) (sha256
(home-page "http://hiwaay.net/~gpw/geco/geco.html") (base32 "1ncaf9ab7jz59zmga0p97blsjjb1m6db0qih57wipfhqdb5ylz17"))))
(synopsis "Genetic algorithm toolkit for Common Lisp") (build-system asdf-build-system/sbcl)
(description (home-page "https://github.com/gpwwjr/GECO")
"GECO (Genetic Evolution through Combination of Objects) is an extensible, (synopsis "Genetic algorithm toolkit for Common Lisp")
object-oriented framework for prototyping genetic algorithms in Common Lisp.") (description
(license license:lgpl2.1+))) "GECO (Genetic Evolution through Combination of Objects) is an
extensible, object-oriented framework for prototyping genetic algorithms in
Common Lisp.")
(license license:lgpl2.0+))))
(define-public cl-geco (define-public cl-geco
(sbcl-package->cl-source-package sbcl-geco)) (sbcl-package->cl-source-package sbcl-geco))