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

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

bug#59396: closed ([PATCH] gnu: Add cl-simplified-types.)


From: GNU bug Tracking System
Subject: bug#59396: closed ([PATCH] gnu: Add cl-simplified-types.)
Date: Sun, 20 Nov 2022 13:49:04 +0000

Your message dated Sun, 20 Nov 2022 13:48:20 +0000
with message-id <874jutybwk.fsf@kitej>
and subject line Re: [bug#59396] [PATCH] gnu: Add cl-simplified-types.
has caused the debbugs.gnu.org bug report #59396,
regarding [PATCH] gnu: Add cl-simplified-types.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
59396: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59396
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-simplified-types. Date: Sun, 20 Nov 2022 02:14:55 +0000
* gnu/packages/lisp-xyz.scm (sbcl-simplified-types, cl-simplified-types,
ecl-simplified-types): New variables.
---
 gnu/packages/lisp-xyz.scm | 40 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 59cffce248..f4a4aad1e2 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -6972,6 +6972,46 @@ (define-public ecl-type-i
      ;; The tests get stuck indefinitly
      '(#:tests? #f))))

+(define-public sbcl-simplified-types
+  (let ((commit "8fd0727a70a9de76289ac62c1567b8d278e7434e")
+        (revision "0"))
+    (package
+      (name "sbcl-simplified-types")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/marcoheisig/simplified-types";)
+               (commit commit)))
+         (file-name (git-file-name "cl-simplified-types" version))
+         (sha256
+          (base32 "1hdwmn5lz717aj6qdqmfmr3cbjl8l3giwn0fb5ca9pj83cx7fg8y"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       (list sbcl-alexandria
+             sbcl-introspect-environment
+             sbcl-trivia))
+      (home-page "https://github.com/marcoheisig/simplified-types";)
+      (synopsis "Simplify Common Lisp type specifiers")
+      (description
+       "Simplified-Types is a library that provides functions for simplifying
+Common Lisp type specifiers.  The API consists of two functions:
+
+@itemize
+@item @code{simplify-type} takes a type specifier and, optionally, an
+environment, and returns the corresponding simplified type.
+@item @code{simplified-type-of} takes an object and returns the simplified
+type of that object.
+@end itemize")
+      (license license:expat))))
+
+(define-public cl-simplified-types
+  (sbcl-package->cl-source-package sbcl-simplified-types))
+
+(define-public ecl-simplified-types
+  (sbcl-package->ecl-package sbcl-simplified-types))
+
 (define-public sbcl-typo
   (let ((commit "0e883490f81edf2a1be4e5b101d1caec78d7853b")
         (revision "0"))
--
2.38.0





--- End Message ---
--- Begin Message --- Subject: Re: [bug#59396] [PATCH] gnu: Add cl-simplified-types. Date: Sun, 20 Nov 2022 13:48:20 +0000
Patch pushed as c8f406056fb0f371e8cc15d92938528d9948e767.
Thanks.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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