From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34860) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4u5-0006Aq-Hi for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4u3-000433-RT for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37442) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4u2-00042R-Py for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4u2-0002Pv-KT for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:02 -0400 Subject: [bug#36467] [PATCH 02/12] gnu: Add series. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34624) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4t5-0005rn-4H for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4t0-00034j-MV for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:00 -0400 Received: from mout02.posteo.de ([185.67.36.66]:58169) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4sv-0001H0-2O for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:55 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id DFF872400E6 for ; Tue, 2 Jul 2019 00:32:48 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:17 +0200 Message-Id: <20190701223127.32222-2-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-series, cl-series): New variables. --- gnu/packages/lisp.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 88dfa51e7a..76dd7a43c8 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5997,6 +5997,41 @@ cookie headers, cookie creation, cookie jar creati= on and more.") cookie headers, cookie creation, cookie jar creation and more.") (license license:bsd-2)))) =20 +(define-public sbcl-series + (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a") + (revision "1")) + (package + (name "sbcl-series") + (version (git-version "2.2.11" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "git://git.code.sf.net/p/series/series") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw")))) + (build-system asdf-build-system/sbcl) + (arguments + ;; Disable the tests, they are apparently buggy and I didn't find + ;; a simple way to make them run and pass. + '(#:tests? #f)) + (synopsis "Series data structure for Common Lisp") + (description + "This Common Lisp library provides a series data structure much l= ike +a sequence, with similar kinds of operations. The difference is that in= many +situations, operations on series may be composed functionally and yet ex= ecute +iteratively, without the need to construct intermediate series values +explicitly. In this manner, series provide both the clarity of a functi= onal +programming style and the efficiency of an iterative programming style."= ) + (home-page "http://series.sourceforge.net/") + (license license:expat)))) + +(define-public cl-series + (sbcl-package->cl-source-package sbcl-series)) + (define-public sbcl-fprog (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") (revision "1")) --=20 2.22.0