glv pushed a commit to branch master
in repository guix.
commit e129321f137ad954570a2e239bf662ea87687ac8
Author: Artyom Bologov <[email protected]>
AuthorDate: Mon Apr 24 17:15:07 2023 +0400
gnu: cl-nclasses: Update to 0.4.0.
gnu/packages/lisp-xyz.scm (sbcl-nclasses): Update to 0.4.0.
Signed-off-by: Guillaume Le Vaillant <[email protected]>
---
gnu/packages/lisp-xyz.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index ec42f7facb..196cf21e20 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -36,7 +36,7 @@
;;; Copyright © 2022 Thomas Albers Raviola <[email protected]>
;;; Copyright © 2022 Arun Isaac <[email protected]>
;;; Copyright © 2022 Trevor Richards <[email protected]>
-;;; Copyright © 2022 Artyom Bologov <[email protected]>
+;;; Copyright © 2022, 2023 Artyom Bologov <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -25641,7 +25641,7 @@ desktop files to the right directories.
(define-public sbcl-nclasses
(package
(name "sbcl-nclasses")
- (version "0.3.0")
+ (version "0.4.0")
(source
(origin
(method git-fetch)
@@ -25651,7 +25651,7 @@ desktop files to the right directories.
(file-name (git-file-name "cl-nclasses" version))
(sha256
(base32
- "0djs16v77ng14d26wpxf5qby2d3l1pfsd2c1qkg4wv6mnk16imnq"))
+ "0g34xm32h0bc0zcyrkr2637jdb8mgb2zymqp6zfjc912sisgcs0l"))
(modules '((guix build utils)))
(snippet
`(begin
@@ -25664,10 +25664,10 @@ desktop files to the right directories.
(list sbcl-lisp-unit2
sbcl-nasdf))
(home-page "https://github.com/atlas-engineer/nclasses")
- (synopsis "Simplify class and condition definitions.")
+ (synopsis "Simplify class, condition, and generic function definitions.")
(description
- "NClasses provides helper macros to help write classes and conditions
-with less boilerplate.
+ "NClasses provides helper macros to help write classes, conditions,
+generic functions, and CLOS code in general with less boilerplate.
It's a fork of @code{hu.dwim.defclass-star}. It inclues some bug fixes and
extra features like type inference.")