From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34721) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4tU-0005xN-LG for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4tI-0003Hx-JE for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:26 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37429) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4t5-00037R-IN 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 1hi4t5-0002NV-Bq for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:03 -0400 Subject: [bug#36467] [PATCH 05/12] gnu: Add metatilities-base Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34559) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4ss-0005pd-9p for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4sl-0002yc-R6 for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:46 -0400 Received: from mout02.posteo.de ([185.67.36.66]:45263) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4si-0001Kj-Pp for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:42 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 7B90B2400E6 for ; Tue, 2 Jul 2019 00:32:54 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:20 +0200 Message-Id: <20190701223127.32222-5-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-metatilities-base, cl-metatilities-base): N= ew variables. --- gnu/packages/lisp.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 42aa30bbf3..770c8030ad 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6079,6 +6079,35 @@ providing functions compatible with the series Com= mon Lisp library."))) (define-public cl-periods-series (sbcl-package->cl-source-package sbcl-periods-series)) =20 +(define-public sbcl-metatilities-base + (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5") + (revision "1")) + (package + (name "sbcl-metatilities-base") + (version (git-version "0.6.6" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gwkkwg/metatilities-base.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("lift" ,sbcl-lift))) + (synopsis "Core of the metatilities Common Lisp library") + (description + "Metatilities-base is the core of the metatilities Common Lisp li= brary +which implements a set of utilities.") + (home-page "https://common-lisp.net/project/metatilities-base/") + (license license:expat)))) + +(define-public cl-metatilities-base + (sbcl-package->cl-source-package sbcl-metatilities-base)) + (define-public sbcl-fprog (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") (revision "1")) --=20 2.22.0