From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:44357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVyfd-0004ZV-KT for guix-patches@gnu.org; Wed, 29 May 2019 09:31:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVyfc-000821-IZ for guix-patches@gnu.org; Wed, 29 May 2019 09:31:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44821) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVyfc-00081j-Fk for guix-patches@gnu.org; Wed, 29 May 2019 09:31:08 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hVyfc-0002gJ-By for guix-patches@gnu.org; Wed, 29 May 2019 09:31:08 -0400 Subject: [bug#35989] [PATCH 3/9] gnu: Add sbcl-iolib.asdf. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:44085) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVyeh-00046q-48 for guix-patches@gnu.org; Wed, 29 May 2019 09:30:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVyeg-0006mV-1t for guix-patches@gnu.org; Wed, 29 May 2019 09:30:11 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:47227) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVyef-0006aQ-Sc for guix-patches@gnu.org; Wed, 29 May 2019 09:30:09 -0400 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 1FF22100016 for ; Wed, 29 May 2019 13:29:57 +0000 (UTC) From: Pierre Neidhardt Date: Wed, 29 May 2019 15:29:50 +0200 Message-Id: <20190529132956.7454-3-mail@ambrevar.xyz> In-Reply-To: <20190529132956.7454-1-mail@ambrevar.xyz> References: <20190529132917.7142-1-mail@ambrevar.xyz> <20190529132956.7454-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 35989@debbugs.gnu.org * gnu/packages/lisp.scm (sbcl-iolib.asdf): New variable. --- gnu/packages/lisp.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 537150dd61..697bdbd257 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5386,3 +5386,33 @@ formats.") (define-public ecl-swap-bytes (sbcl-package->ecl-package sbcl-swap-bytes)) + +(define-public sbcl-iolib.asdf + ;; Latest release is from June 2017. + (let ((commit "81e20614c0d27f9605bf9766214e236fd31b99b4") + (revision "1")) + (package + (name "sbcl-iolib.asdf") + (build-system asdf-build-system/sbcl) + (version "0.8.3") + (home-page "https://github.com/sionescu/iolib") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1j81r0wm7nfbwl991f26s4npcy7kybzybd3m47rbxy31h0cfcmdm")))) + (inputs + `(("alexandria" ,sbcl-alexandria))) + (arguments + '(#:asd-file "iolib.asdf.asd")) + (synopsis "ASDF component classes for IOLib, a Common Lisp I/O library") + (description "IOlib is to be a better and more modern I/O library than +the standard Common Lisp library. It contains a socket library, a DNS +resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)} +and @code{kqueue(2)}), a pathname library and file-system utilities.") + (license license:expat)))) -- 2.21.0