From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 21 00:18:53 2022 Received: (at submit) by debbugs.gnu.org; 21 Apr 2022 04:18:53 +0000 Received: from localhost ([127.0.0.1]:48069 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nhOHN-00038N-G5 for submit@debbugs.gnu.org; Thu, 21 Apr 2022 00:18:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:59204) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nhOHL-00038E-BN for submit@debbugs.gnu.org; Thu, 21 Apr 2022 00:18:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34882) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nhOHL-0004S9-5s for guix-patches@gnu.org; Thu, 21 Apr 2022 00:18:51 -0400 Received: from mail-4317.proton.ch ([185.70.43.17]:39303) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nhOHH-0004rl-MO for guix-patches@gnu.org; Thu, 21 Apr 2022 00:18:50 -0400 Date: Thu, 21 Apr 2022 04:18:41 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1650514724; bh=ICSphMMkQrYUbPLMcA2aR6dJy1AoS66fX+0pB5ZOmdw=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=BJG4YqIod+ar4VStagvrqXtUIQ6PbwiVjtbaZXZ1jnFDpyrBXdAWCcjNf/AnbLJ/a IlUr2/59Ss2ZGwYa47/JL9TDMTwHaAuYQPCt9kyoOjdyS8/rci3/Tg/seowLll+ECu NcuDqewl41fa/lFehmgQviBK5gPkuCaKYzl42MzaDMJ2E7S/UsKu/cPG5Z8NdrGEdl BzTrj59g0JdaYeB/BqadnDJsTo/JzSXsfLEF+5zWXC3/OwBfVDbDugOFwmT0Vh+Ovq p4++dOyZ7HUpqd1g0k0hj1DIiA2bqXjOar7W/tJD0VqfDZvO+BXfqPsCJW6urWHnbH 9IlRy20MZEkiw== To: guix-patches@gnu.org From: "Paul A. Patience" Subject: [PATCH] gnu: Add cl-bobbin. Message-ID: <20220421041831.275758-1-paul@apatience.com> Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.17; envelope-from=paul@apatience.com; helo=mail-4317.proton.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: "Paul A. Patience" 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: , Reply-To: "Paul A. Patience" Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/lisp-xyz.scm (sbcl-bobbin, cl-bobbin, ecl-bobbin): New variables. --- gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 2e8b957c53..12b6fa363c 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -1528,6 +1528,41 @@ (define-public ecl-piping (define-public cl-piping (sbcl-package->cl-source-package sbcl-piping)) +(define-public sbcl-bobbin + (let ((commit "b454e8241b24ceab674eeeae464c8082b1b6d8ce") + (revision "0")) + (package + (name "sbcl-bobbin") + (version (git-version "1.0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sjl/bobbin") + (commit commit))) + (file-name (git-file-name "cl-bobbin" version)) + (sha256 + (base32 "02lw7w8cbvnxw5acbz405rb5lcqsf4fx7dvj5ldr0lhgbyv1mjnm"))= )) + (build-system asdf-build-system/sbcl) + (native-inputs + (list sbcl-1am)) + (inputs + (list sbcl-split-sequence)) + (home-page "https://docs.stevelosh.com/bobbin/") + (synopsis "Simple (word) wrapping utilities for strings") + (description + "Bobbin is a simple word-wrapping library for strings in Common Lis= p. +It aims to be simple, work nicely for the majority of cases, and degrade +gracefully for edge cases. It is not particularly concerned with speed = =E2=80=94 if +you need very high-performance word wrapping, Bobbin is not for you.") + (license license:expat)))) + +(define-public cl-bobbin + (sbcl-package->cl-source-package sbcl-bobbin)) + +(define-public ecl-bobbin + (sbcl-package->ecl-package sbcl-bobbin)) + (define-public sbcl-cl-pcg (let ((commit "8263d85ab0ca17fb05637a4430c2d564456bce8f") (revision "1")) -- 2.35.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 23 04:58:50 2022 Received: (at 55053-done) by debbugs.gnu.org; 23 Apr 2022 08:58:50 +0000 Received: from localhost ([127.0.0.1]:55184 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1niBbO-0005Uk-8i for submit@debbugs.gnu.org; Sat, 23 Apr 2022 04:58:50 -0400 Received: from mout01.posteo.de ([185.67.36.65]:59191) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1niBbM-0005UU-PS for 55053-done@debbugs.gnu.org; Sat, 23 Apr 2022 04:58:49 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 27F8A240027 for <55053-done@debbugs.gnu.org>; Sat, 23 Apr 2022 10:58:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1650704323; bh=aZTesyUNVz6EjF0ug4vphUTqF5d3Dsw2CTt1Pj+Z3lU=; h=From:To:Cc:Subject:Date:From; b=Q8uPA+PpZXAflyuAJLUv9WyeaNJBJfQwGnzIyYFRAARF5tmnQK7qd/PPFKTEkR0kv 1QzYgSsmTUBkayS3kWsuuhRlOBCScZYHKLbKkYWgNvIy/MdUfC2RCGiTl94Fbh3Biq bB8/0zmd2QCweE+bWxeQ4TtzEunTSfRKrGpTIsYXITbvcWLlGZs8pOP/wR8BvDToh/ 3Qnci6xQWW+7HRXAwHO8zXZh1oy0eW41zsN7/ECso6WfDQl6DRtqOf8b9MoPh5B3gK R+KVdjgYfH0+KdzlWEoDf9X5am5uEdtFt7WyjmKaezwtQM3y5Sm/TgszTMeztTgz+a mmdrY6qPzG+bg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KllYt2wkFz6tm4; Sat, 23 Apr 2022 10:58:41 +0200 (CEST) References: <20220421041831.275758-1-paul@apatience.com> From: Guillaume Le Vaillant To: "Paul A. Patience" Subject: Re: [bug#55053] [PATCH] gnu: Add cl-bobbin. Date: Sat, 23 Apr 2022 08:58:14 +0000 In-reply-to: <20220421041831.275758-1-paul@apatience.com> Message-ID: <87wnfgfa66.fsf@kitej> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 55053-done Cc: 55053-done@debbugs.gnu.org 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: -3.3 (---) --=-=-= Content-Type: text/plain Patch pushed as a58734e7fea0015ba113be068d0aebf67dd8afdb. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYmO/wQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j8k9QD8DErHyErQwAUBYQPmzwz/dtXKAHfzC/5hYnH1 KaUv3+YA/RrgkyaS1NdgkGiHtnnWGQXnV9uFIu7xLAYibZwcYXgh =ZyE1 -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Jun 17 21:50:04 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 21 May 2022 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