This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new b3a8639c54 gnu: sbcl-named-readtables: Update to aa6dab5.
b3a8639c54 is described below

commit b3a8639c545d7bf8e381cf81eab6ed85f675e4eb
Author: Simen Endsjø <[email protected]>
AuthorDate: Fri Feb 27 23:06:44 2026 +0100

    gnu: sbcl-named-readtables: Update to aa6dab5.
    
    * gnu/packages/lisp-xyz.scm (sbcl-named-readtables): Update to aa6dab5.
    [phases]: Remove documentation.
    
    Change-Id: Id3a7da11311e11e8a08bb69f5de5e1a4ec257a03
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/lisp-xyz.scm | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c3b66f67b2..c7c7f731ae 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24085,8 +24085,8 @@ closures but adds conveniences such as 
introspectability.")
   (sbcl-package->ecl-package sbcl-named-closure))
 
 (define-public sbcl-named-readtables
-  (let ((commit "d5ff162ce02035ec7de1acc9721385f325e928c0")
-        (revision "4"))
+  (let ((commit "aa6dab55abff3cca26b976d9a105c2006ca0c3b6")
+        (revision "5"))
     (package
       (name "sbcl-named-readtables")
       (version (git-version "0.9" revision commit))
@@ -24097,14 +24097,24 @@ closures but adds conveniences such as 
introspectability.")
                (url "https://github.com/melisgl/named-readtables";)
                (commit commit)))
          (sha256
-          (base32 "0gfgxywzbmavy0kpnxav11vz10qfzxwwrpgqaak9sgzg17g8x5yv"))
+          (base32 "0d9fp11ghpkjzc6ja89xm2lnh8xxxyb4w0z9k7ww1shnqvdy3jba"))
          (file-name (git-file-name "cl-named-readtables" version))))
       (build-system asdf-build-system/sbcl)
       ;; (native-inputs (list sbcl-try))
       ;; Tests disabled because of a circular dependency issue:
       ;;   try -> named-readtables -> mgl-pax -> try
       (arguments
-       (list #:tests? #f))
+       '(#:tests? #f
+         #:phases
+         (modify-phases %standard-phases
+           ;; We disable the documentations embedded in the core library to
+           ;; avoid adding additional dependencies.
+           (add-after 'unpack 'remove-doc
+             (lambda _
+               (substitute* "named-readtables.asd"
+                 (("\\:depends-on \\(\"mgl-pax-bootstrap\"\\)") "")
+                 (("\\(:file \"doc\"\\)") ""))
+               #t)))))
       (home-page "https://github.com/melisgl/named-readtables/";)
       (synopsis "Library that creates a namespace for named readtables")
       (description

Reply via email to