From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35095) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4vO-0006d5-TI for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4vD-0004VY-5G for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:18 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37454) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4v0-0004OP-7x for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:13 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4v0-0002SB-3r for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:02 -0400 Subject: [bug#36467] [PATCH 11/12] gnu: Add cl-octet-streams Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34826) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4u2-00068M-AR for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4ty-00040S-OW for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:00 -0400 Received: from mout02.posteo.de ([185.67.36.66]:40651) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4tl-0002tF-Ls for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:51 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 0DEEB2400FC for ; Tue, 2 Jul 2019 00:33:11 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:26 +0200 Message-Id: <20190701223127.32222-11-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-octet-streams, cl-octet-streams): 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 84663aebf0..94ebe813c5 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6314,3 +6314,33 @@ can contain any kind of values.") =20 (define-public cl-bst (sbcl-package->cl-source-package sbcl-bst)) + +(define-public sbcl-cl-octet-streams + (package + (name "sbcl-cl-octet-streams") + (version "1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/glv2/cl-octet-streams.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1d7mn6ydv0j2x4r7clpc9ijjwrnfpxmvhifv8n5j7jh7s744sf8d")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("fiveam" ,sbcl-fiveam))) + (inputs + `(("trivial-gray-streams" ,sbcl-trivial-gray-streams))) + (synopsis "In-memory octet streams for Common Lisp") + (description + "cl-octet-streams is a library implementing in-memory octet streams= for +Common Lisp. It was inspired by the trivial-octet-streams and cl-plumbi= ng +libraries.") + (home-page "https://github.com/glv2/cl-octet-streams") + (license license:gpl3+))) + +(define-public cl-octet-streams + (sbcl-package->cl-source-package sbcl-cl-octet-streams)) --=20 2.22.0