[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/11: gnu: cl-fset: Update to 1.3.3-1.a75a4ec.
From: |
guix-commits |
Subject: |
06/11: gnu: cl-fset: Update to 1.3.3-1.a75a4ec. |
Date: |
Fri, 7 Jun 2024 03:59:34 -0400 (EDT) |
glv pushed a commit to branch lisp-team
in repository guix.
commit 2252f0553d990c551885380f0d4db729c7711b96
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Thu May 30 16:42:27 2024 +0200
gnu: cl-fset: Update to 1.3.3-1.a75a4ec.
* gnu/packages/lisp-xyz.scm (sbcl-fset): Update to 1.3.3-1.a75a4ec.
[arguments]: Add 'fix-build' phase.
Change-Id: I9f0947e64c81b1547d657c721879d1e12c2507d3
---
gnu/packages/lisp-xyz.scm | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 5b888eafb6..90676ad4db 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -15652,28 +15652,35 @@ of the files and the line numbers where they were
found.")
(sbcl-package->ecl-package sbcl-formgrep))
(define-public sbcl-fset
- (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
+ (let ((commit "a75a4ec713277780d9e15bfaa486b56949142d35")
(revision "1"))
(package
(name "sbcl-fset")
- (version (git-version "1.3.2" revision commit))
+ (version (git-version "1.3.3" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/slburson/fset")
(commit commit)))
- (file-name (git-file-name name version))
+ (file-name (git-file-name "cl-fset" version))
(sha256
- (base32
- "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
+ (base32 "0bah0z8zrcykvnbi2wcdlbx902r818xg5dvd3384wf75kr2ccxvv"))
(snippet '(begin
;; Remove obsolete copy of system definition.
- (delete-file "Code/fset.asd")
- #t))))
+ (delete-file "Code/fset.asd")))))
(build-system asdf-build-system/sbcl)
(inputs
(list sbcl-misc-extensions sbcl-mt19937 sbcl-named-readtables))
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-build
+ (lambda _
+ ;; Fix for SBCL > 2.4.4
+ (substitute* "Code/port.lisp"
+ (("sb-ext::once-only")
+ "sb-int:once-only")))))))
(synopsis "Functional set-theoretic collections library")
(description
"FSet is a functional set-theoretic collections library for Common Lisp.
- branch lisp-team created (now 5abf9c0c6b), guix-commits, 2024/06/07
- 01/11: gnu: cl-asdf: Update to 3.3.7., guix-commits, 2024/06/07
- 02/11: gnu: sbcl: Update to 2.4.5., guix-commits, 2024/06/07
- 05/11: gnu: eisl: Update to 3.90., guix-commits, 2024/06/07
- 08/11: gnu: cl-maxpc: Disable tests., guix-commits, 2024/06/07
- 06/11: gnu: cl-fset: Update to 1.3.3-1.a75a4ec.,
guix-commits <=
- 04/11: gnu: lisp: Sort packages., guix-commits, 2024/06/07
- 11/11: gnu: cl-fast-generic-functions: Fix build with sbcl >= 2.4.0., guix-commits, 2024/06/07
- 09/11: gnu: cl-specialization-store: Disable tests., guix-commits, 2024/06/07
- 07/11: gnu: cl-cl-gobject-introspection: Update to 0.3-4.4908a84., guix-commits, 2024/06/07
- 03/11: gnu: ecl: Update to 24.5.10., guix-commits, 2024/06/07
- 10/11: gnu: cl-schemeish: Update to 0.0.1-2.872ea3d., guix-commits, 2024/06/07