emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39559: closed ([PATCH] gnu: Add cl-function-cache.)


From: GNU bug Tracking System
Subject: bug#39559: closed ([PATCH] gnu: Add cl-function-cache.)
Date: Tue, 11 Feb 2020 13:41:02 +0000

Your message dated Tue, 11 Feb 2020 14:40:25 +0100
with message-id <87blq5fdiu.fsf@yamatai>
and subject line Re: [bug#39559] [PATCH] gnu: Add cl-function-cache.
has caused the debbugs.gnu.org bug report #39559,
regarding [PATCH] gnu: Add cl-function-cache.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39559: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39559
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-function-cache. Date: Tue, 11 Feb 2020 08:53:14 +0100
* gnu/packages/lisp-xyz.scm (sbcl-function-cache,
  cl-function-cache, ecl-function-cache): New variables.
---
 gnu/packages/lisp-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c75acbc9d4..eac49df0e2 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10338,3 +10338,42 @@ covered by the Common Lisp standard.")
 
 (define-public ecl-float-features
   (sbcl-package->ecl-package sbcl-float-features))
+
+(define-public sbcl-function-cache
+  (package
+    (name "sbcl-function-cache")
+    (version "1.0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/AccelerationNet/function-cache.git";)
+             (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
+    (build-system asdf-build-system/sbcl)
+    (synopsis "function caching / memoization library for Common Lisp")
+    (description
+     "A common lisp library that provides extensible function result
+caching based on arguments (an expanded form of memoization).")
+    (home-page "https://github.com/AccelerationNet/function-cache";)
+    (license (license:non-copyleft
+              
"https://github.com/AccelerationNet/function-cache/blob/master/README.md";))
+    (inputs
+     `(("alexandria" ,sbcl-alexandria)
+       ("cl-interpol" ,sbcl-cl-interpol)
+       ("iterate" ,sbcl-iterate)
+       ("symbol-munger" ,sbcl-symbol-munger)
+       ("closer-mop" ,sbcl-closer-mop)))
+    (arguments
+     `(#:asd-system-name "function-cache"
+       #:asd-file "function-cache.asd"
+       #:tests? #f))))
+
+(define-public cl-function-cache
+  (sbcl-package->cl-source-package sbcl-function-cache))
+
+(define-public ecl-function-cache
+  (sbcl-package->ecl-package sbcl-function-cache))
-- 
2.25.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#39559] [PATCH] gnu: Add cl-function-cache. Date: Tue, 11 Feb 2020 14:40:25 +0100 User-agent: mu4e 1.2.0; emacs 26.3
Pushed as 06327c3035517d5c50b30fce411149e758de047e. Thanks.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]