From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 09:30:09 2019 Received: (at submit) by debbugs.gnu.org; 29 May 2019 13:30:09 +0000 Received: from localhost ([127.0.0.1]:58329 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVyee-0002ax-RY for submit@debbugs.gnu.org; Wed, 29 May 2019 09:30:09 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57858) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVyed-0002aR-HO for submit@debbugs.gnu.org; Wed, 29 May 2019 09:30:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:51289) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVyeY-0006eE-Dp for submit@debbugs.gnu.org; Wed, 29 May 2019 09:30:02 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVyeX-00042v-8Q for guix-patches@gnu.org; Wed, 29 May 2019 09:30:02 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVyeW-0006cR-8N for guix-patches@gnu.org; Wed, 29 May 2019 09:30:01 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:57361) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVyeW-0006bJ-24 for guix-patches@gnu.org; Wed, 29 May 2019 09:30:00 -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 54EE3100019 for ; Wed, 29 May 2019 13:29:58 +0000 (UTC) From: Pierre Neidhardt To: guix-patches@gnu.org Subject: [PATCH 8/9] gnu: Add sbcl-iolib. Date: Wed, 29 May 2019 15:29:55 +0200 Message-Id: <20190529132956.7454-8-mail@ambrevar.xyz> X-Mailer: git-send-email 2.21.0 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 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.231 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.1 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) * gnu/packages/lisp.scm (sbcl-iolib): New variable. --- gnu/packages/lisp.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 34bd0ce0cd..31d2e8d550 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -45,6 +45,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages base) #:use-module (gnu packages bdw-gc) + #:use-module (gnu packages c) #:use-module (gnu packages compression) #:use-module (gnu packages ed) #:use-module (gnu packages fontutils) @@ -5471,3 +5472,36 @@ and @code{kqueue(2)}), a pathname library and file-system utilities.") (string-append (assoc-ref outputs "out") "/lib/sbcl"))))))) (synopsis "CFFI Groveller for IOLib, a Common Lisp I/O library"))) + +(define-public sbcl-iolib + (package + (inherit sbcl-iolib.asdf) + (name "sbcl-iolib") + (inputs + `(("iolib.asdf" ,sbcl-iolib.asdf) + ("iolib.conf" ,sbcl-iolib.conf) + ("iolib.grovel" ,sbcl-iolib.grovel) + ("iolib.base", sbcl-iolib.base) + ("bordeaux-threads", sbcl-bordeaux-threads) + ("idna", sbcl-idna) + ("swap-bytes", sbcl-swap-bytes) + ("libfixposix", libfixposix))) + (native-inputs + `(("fiveam" ,sbcl-fiveam))) + (arguments + '(#:asd-file "iolib.asd" + #:test-asd-file "iolib.tests.asd" + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/syscalls/ffi-functions-unix.lisp" + (("\\(:default \"libfixposix\"\\)") + (string-append + "(:default \"" + (assoc-ref inputs "libfixposix") "/lib/libfixposix\")"))) + ;; Socket tests need Internet access, disable them. + (substitute* "iolib.tests.asd" + (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)") + ""))))))) + (synopsis "Common Lisp I/O library"))) -- 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 10:08:56 2019 Received: (at control) by debbugs.gnu.org; 29 May 2019 14:08:56 +0000 Received: from localhost ([127.0.0.1]:59482 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVzGB-000417-Os for submit@debbugs.gnu.org; Wed, 29 May 2019 10:08:55 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:36007) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVzG9-00040w-8r for control@debbugs.gnu.org; Wed, 29 May 2019 10:08:54 -0400 X-Originating-IP: 92.169.116.19 Received: from bababa (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: pierre@atlas.engineer) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 94B47240015 for ; Wed, 29 May 2019 14:08:52 +0000 (UTC) From: Pierre Neidhardt To: control@debbugs.gnu.org Subject: control message for bug #35982 Date: Wed, 29 May 2019 16:08:51 +0200 Message-ID: <87d0k1jqto.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.2 (-) --=-=-= Content-Type: text/plain close 35982 --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" --==-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlzuknMACgkQm9z0l6S7 zH+OhQf9HK1FsPRZFFP9cpXbdVLRDAzNQtDoGtvMpcbMjBoMSE3Qx1u24NTjdTyS W8uLxPRhPGGmvllFwawD/2p7Rywjf0d+FGWGxB150nujlxiYLhjCoqs75eqlsrUK mjiQPAJ/EDL3/HX1kndT4GfV53vYuLtbmD3rWZjtux1qVlDAftYWT9B1bRwkF3Xg iQ/4guPwdck2dbV7Lo3FT2XIjgIpbuqF37ZTMJEGE6LOgfZ7t7BIzLhnvSDm6bC+ zPP83dzbyfESQ+nziYQjsmJgOq5beRhVNTh/WAefgI7isoIN50rC9ZHfy99vepuz shZD2P96WJtiKMouU6spPYLqhbONLg== =ifTP -----END PGP SIGNATURE----- --==-=-=-- --=-=-=-- From unknown Fri Sep 12 07:56:03 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 27 Jun 2019 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator