From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47155) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1Zhc-0008Ga-Rc for guix-patches@gnu.org; Tue, 11 Feb 2020 12:52:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1Zha-0002SJ-UQ for guix-patches@gnu.org; Tue, 11 Feb 2020 12:52:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:51519) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j1Zha-0002R8-DI for guix-patches@gnu.org; Tue, 11 Feb 2020 12:52:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j1Zha-0008Q2-Bg for guix-patches@gnu.org; Tue, 11 Feb 2020 12:52:02 -0500 Subject: [bug#39568] [PATCH] gnu: Add cl-gtype. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45949) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1ZhB-0008Cb-JA for guix-patches@gnu.org; Tue, 11 Feb 2020 12:51:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1ZhA-0001O7-GU for guix-patches@gnu.org; Tue, 11 Feb 2020 12:51:37 -0500 Received: from wout4-smtp.messagingengine.com ([64.147.123.20]:35215) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j1ZhA-0001LV-8E for guix-patches@gnu.org; Tue, 11 Feb 2020 12:51:36 -0500 From: Konrad Hinsen Date: Tue, 11 Feb 2020 11:39:44 +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: 39568@debbugs.gnu.org * gnu/packages/lisp-xyz.scm (sbcl-gtype, cl-gtype): 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 3d38cabf0c..bf86c608d0 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -10503,3 +10503,43 @@ additional form that is considered as a candidate for a constant.") (define-public cl-constantfold (sbcl-package->cl-source-package sbcl-constantfold)) + +(define-public sbcl-gtype + (let ((commit "42275e3606242ae91e9c8dfa30c18ced50a35b66") + (revision "1")) + (package + (name "sbcl-gtype") + (version "0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/numcl/gtype.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1f56dba998v945jcxhha391557n6md1ql25b7icfwwfivhmlaa9b")))) + (build-system asdf-build-system/sbcl) + (synopsis "C++/Julia-like parametric types in CL") + (description + "Support library for numcl that provides Julia-like runtime +parametric type correctness in CL, Based on CLtL2 extensions.") + (home-page "https://github.com/numcl/gtype") + (license license:lgpl3+) + (inputs + `(("trivialib.type-unify" ,sbcl-trivialib-type-unify) + ("trivial-cltl2" ,sbcl-trivial-cltl2) + ("trivia" ,sbcl-trivia) + ("alexandria" ,sbcl-alexandria) + ("iterate" ,sbcl-iterate) + ("type-r" ,sbcl-type-r))) + (native-inputs + `(("fiveam" ,sbcl-fiveam))) + (arguments + `(#:asd-system-name "gtype" + #:asd-file "gtype.asd" + #:test-asd-file "gtype.test.asd"))))) + +(define-public cl-gtype + (sbcl-package->cl-source-package sbcl-gtype)) -- 2.25.0