From unknown Sat Sep 13 03:06:37 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#35989 <35989@debbugs.gnu.org> To: bug#35989 <35989@debbugs.gnu.org> Subject: Status: [PATCH 3/9] gnu: Add sbcl-iolib.asdf. Reply-To: bug#35989 <35989@debbugs.gnu.org> Date: Sat, 13 Sep 2025 10:06:37 +0000 retitle 35989 [PATCH 3/9] gnu: Add sbcl-iolib.asdf. reassign 35989 guix-patches submitter 35989 Pierre Neidhardt severity 35989 normal tag 35989 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 09:30:23 2019 Received: (at submit) by debbugs.gnu.org; 29 May 2019 13:30:23 +0000 Received: from localhost ([127.0.0.1]:58348 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVyes-0002dQ-Rl for submit@debbugs.gnu.org; Wed, 29 May 2019 09:30:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57949) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVyen-0002bp-Gw for submit@debbugs.gnu.org; Wed, 29 May 2019 09:30:17 -0400 Received: from lists.gnu.org ([209.51.188.17]:34364) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVyei-0006qV-CN for submit@debbugs.gnu.org; Wed, 29 May 2019 09:30:12 -0400 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 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 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 To: guix-patches@gnu.org Subject: [PATCH 3/9] gnu: Add sbcl-iolib.asdf. Date: Wed, 29 May 2019 15:29:50 +0200 Message-Id: <20190529132956.7454-3-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.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 From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 10:08:21 2019 Received: (at control) by debbugs.gnu.org; 29 May 2019 14:08:21 +0000 Received: from localhost ([127.0.0.1]:59457 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVzFd-0003yj-0C for submit@debbugs.gnu.org; Wed, 29 May 2019 10:08:21 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:52637) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVzFb-0003ya-Hz for control@debbugs.gnu.org; Wed, 29 May 2019 10:08:20 -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 relay6-d.mail.gandi.net (Postfix) with ESMTPSA id DBD34C000C for ; Wed, 29 May 2019 14:08:14 +0000 (UTC) From: Pierre Neidhardt To: control@debbugs.gnu.org Subject: control message for bug #35989 Date: Wed, 29 May 2019 16:08:13 +0200 Message-ID: <87woi9jquq.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -0.5 (/) 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.5 (-) --=-=-= Content-Type: text/plain close 35989 --=-=-= 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+LlsMPZAEJKvom9z0l6S7zH8FAlzukk0ACgkQm9z0l6S7 zH+q3gf9Ew1a2+uhCz5sF5YvYRneUy9s79mK1eLi6H1Hs4D+u6YiSnAwLRxTZnLq Rk9KS+dwyFCSOhIQaE8Z0LvYzJ8KKuyijOMkk7LyzE03YTd79QBgsAGwU/GG6Ua5 /Oi9KFwjbDa2O/8/jcj0qHwx78TNGQ+rbHrAK3BatINX8av3u2Qawqj/zeEuua7y Nbl5dQ798/hiJ4NCkW8Tf359ZHhkI/cU30hhKJyUmECDvEIqjEe0R++1xLWL29bF I3tyT3walNcpdoQ6LpVAbPpYLcS0+crcrj5JdfKg2iwLb6QPhmQkp3iwO8tPDSf/ O3mZq3PAvtnpyvL57Fh8TwqVDKeTOg== =gtfx -----END PGP SIGNATURE----- --==-=-=-- --=-=-=-- From unknown Sat Sep 13 03:06:37 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:08 +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