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

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

bug#39567: closed ([PATCH] gnu: Add cl-constantfold.)


From: GNU bug Tracking System
Subject: bug#39567: closed ([PATCH] gnu: Add cl-constantfold.)
Date: Wed, 12 Feb 2020 09:10:01 +0000

Your message dated Wed, 12 Feb 2020 10:09:45 +0100
with message-id <87lfp82mue.fsf@yamatai>
and subject line Re: [bug#39567] [PATCH] gnu: Add cl-constantfold.
has caused the debbugs.gnu.org bug report #39567,
regarding [PATCH] gnu: Add cl-constantfold.
to be marked as done.

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


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

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c22c1ed5a3..3d38cabf0c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10465,3 +10465,41 @@ code.  The main target of this macro is speed.")
 
 (define-public cl-specialized-function
   (sbcl-package->cl-source-package sbcl-specialized-function))
+
+(define-public sbcl-constantfold
+  (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
+        (revision "1"))
+    (package
+      (name "sbcl-constantfold")
+      (version "0.1")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/numcl/constantfold.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
+      (build-system asdf-build-system/sbcl)
+      (synopsis "Support library for numcl")
+      (description
+       "Support library for numcl.  Registers a function as an
+additional form that is considered as a candidate for a constant.")
+      (home-page "https://github.com/numcl/constantfold";)
+      (license license:lgpl3+)
+      (inputs
+       `(("trivia" ,sbcl-trivia)
+         ("alexandria" ,sbcl-alexandria)
+         ("iterate" ,sbcl-iterate)
+         ("lisp-namespace" ,sbcl-lisp-namespace)))
+      (native-inputs
+       `(("fiveam" ,sbcl-fiveam)))
+      (arguments
+       `(#:asd-system-name "constantfold"
+         #:asd-file "constantfold.asd"
+         #:test-asd-file "constantfold.test.asd")))))
+
+(define-public cl-constantfold
+  (sbcl-package->cl-source-package sbcl-constantfold))
-- 
2.25.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#39567] [PATCH] gnu: Add cl-constantfold. Date: Wed, 12 Feb 2020 10:09:45 +0100 User-agent: mu4e 1.2.0; emacs 26.3
Pushed as 6e0f2b959af9e79bda017e949c9882bee06502af. Thanks.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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