From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55784) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1RTc-0005L0-10 for guix-patches@gnu.org; Tue, 11 Feb 2020 04:05:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1RTa-00083P-P5 for guix-patches@gnu.org; Tue, 11 Feb 2020 04:05:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:49900) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j1RTa-000839-Li for guix-patches@gnu.org; Tue, 11 Feb 2020 04:05:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j1RTa-0006O8-Gz for guix-patches@gnu.org; Tue, 11 Feb 2020 04:05:02 -0500 Subject: [bug#39561] [PATCH] gnu: Add cl-type-r. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:55635) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1RTA-00056N-NW for guix-patches@gnu.org; Tue, 11 Feb 2020 04:04:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1RT8-0007Kc-E8 for guix-patches@gnu.org; Tue, 11 Feb 2020 04:04:36 -0500 Received: from wout5-smtp.messagingengine.com ([64.147.123.21]:36827) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j1RT8-0007JH-65 for guix-patches@gnu.org; Tue, 11 Feb 2020 04:04:34 -0500 From: Konrad Hinsen Date: Tue, 11 Feb 2020 09:56:42 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39561@debbugs.gnu.org * gnu/packages/lisp-xyz.scm (sbcl-type-r, cl-type-r): New variables. --- gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 92d11f779c..cac2d343c4 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -10377,3 +10377,40 @@ caching based on arguments (an expanded form of memoization).") (define-public ecl-function-cache (sbcl-package->ecl-package sbcl-function-cache)) + +(define-public sbcl-type-r + (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267") + (revision "1")) + (package + (name "sbcl-type-r") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/guicho271828/type-r.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm")))) + (build-system asdf-build-system/sbcl) + (synopsis "Parser interface for the built-in compound types defined in Common Lisp") + (description + "Collections of accessor functions and patterns to access +the elements in compound type specifier, e.g. @code{dimensions} in +@code{(array element-type dimensions)}") + (home-page "https://github.com/guicho271828/type-r") + (license license:lgpl3+) + (inputs + `(("trivia" ,sbcl-trivia) + ("alexandria" ,sbcl-alexandria))) + (native-inputs + `(("fiveam" ,sbcl-fiveam))) + (arguments + `(#:asd-system-name "type-r" + #:asd-file "type-r.asd" + #:test-asd-file "type-r.test.asd"))))) + +(define-public cl-type-r + (sbcl-package->cl-source-package sbcl-type-r)) -- 2.25.0