From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34740) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4ta-00063O-To for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4tT-0003RH-Fr for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:29 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37431) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4t6-00038G-LG for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:16 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4t6-0002Nk-G6 for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:04 -0400 Subject: [bug#36467] [PATCH 06/12] gnu: Add cl-containers Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34588) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4sz-0005qe-Gv for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4ss-00031D-97 for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:53 -0400 Received: from mout02.posteo.de ([185.67.36.66]:38023) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4sm-0001xY-Do for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:46 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id E08262400E5 for ; Tue, 2 Jul 2019 00:32:55 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:21 +0200 Message-Id: <20190701223127.32222-6-glv@posteo.net> In-Reply-To: <20190701223127.32222-1-glv@posteo.net> References: <20190701222716.12254-1-glv@posteo.net> <20190701223127.32222-1-glv@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 36467@debbugs.gnu.org Cc: Guillaume LE VAILLANT * gnu/packages/lisp.scm (sbcl-cl-containers, cl-containers): New variable= s. --- gnu/packages/lisp.scm | 48 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 770c8030ad..d785ed2b73 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6108,6 +6108,54 @@ which implements a set of utilities.") (define-public cl-metatilities-base (sbcl-package->cl-source-package sbcl-metatilities-base)) =20 +(define-public sbcl-cl-containers + (let ((commit "810927e19d933bcf38ffeb7a23ce521efc432d45") + (revision "1")) + (package + (name "sbcl-cl-containers") + (version (git-version "0.12.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gwkkwg/cl-containers.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1s9faxw7svhbjpkhfrz2qxgjm3cvyjb8wpyb4m8dx4i5g7vvprkv")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("lift" ,sbcl-lift))) + (inputs + `(("metatilities-base" ,sbcl-metatilities-base))) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'relax-version-checks + (lambda _ + (substitute* "cl-containers.asd" + (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)") + "\"metatilities-base\"")) + (substitute* "cl-containers-test.asd" + (("\\(:version \"lift\" \"1\\.7\\.0\"\\)") + "\"lift\"")) + #t))))) + (synopsis "Containers Library for Common Lisp") + (description + "Common Lisp ships with a set of powerful built in data structure= s +including the venerable list, full featured arrays, and hash-tables. +CL-containers enhances and builds on these structures by adding containe= rs +that are not available in native Lisp (for example: binary search trees, +red-black trees, sparse arrays and so on), and by providing a standard +interface so that they are simpler to use and so that changing design +decisions becomes significantly easier.") + (home-page "https://common-lisp.net/project/cl-containers/") + (license license:expat)))) + +(define-public cl-containers + (sbcl-package->cl-source-package sbcl-cl-containers)) + (define-public sbcl-fprog (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") (revision "1")) --=20 2.22.0