From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34691) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4tT-0005x7-GH for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4t6-00037t-5o for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:16 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37428) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4t5-000378-14 for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4t4-0002NM-RA for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:02 -0400 Subject: [bug#36467] [PATCH 03/12] gnu: Add periods. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34521) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4sk-0005or-Ab for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4sY-0002t9-3c for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:37 -0400 Received: from mout02.posteo.de ([185.67.36.66]:34761) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4sP-0001Hw-J8 for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:22 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 7D1052400E5 for ; Tue, 2 Jul 2019 00:32:51 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:18 +0200 Message-Id: <20190701223127.32222-3-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-periods, cl-periods): New variables. --- gnu/packages/lisp.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 76dd7a43c8..f00e8b3a5b 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6032,6 +6032,36 @@ programming style and the efficiency of an iterati= ve programming style.") (define-public cl-series (sbcl-package->cl-source-package sbcl-series)) =20 +(define-public sbcl-periods + (let ((commit "983d4a57325db3c8def942f163133cec5391ec28") + (revision "1")) + (package + (name "sbcl-periods") + (version (git-version "0.0.2" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jwiegley/periods.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0z30jr3lxz3cmi019fsl4lgcgwf0yqpn95v9zkkkwgymdrkd4lga")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("local-time" ,sbcl-local-time))) + (synopsis "Common Lisp library for manipulating date/time objects"= ) + (description + "Periods is a Common Lisp library providing a set of utilities fo= r +manipulating times, distances between times, and both contiguous and +discontiguous ranges of time.") + (home-page "https://github.com/jwiegley/periods") + (license license:bsd-3)))) + +(define-public cl-periods + (sbcl-package->cl-source-package sbcl-periods)) + (define-public sbcl-fprog (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") (revision "1")) --=20 2.22.0