From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 22:51:50 2022 Received: (at submit) by debbugs.gnu.org; 8 Sep 2022 02:51:50 +0000 Received: from localhost ([127.0.0.1]:56811 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7du-0001gj-CD for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:51:50 -0400 Received: from lists.gnu.org ([209.51.188.17]:43080) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7ds-0001gb-Hj for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:51:49 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39152) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oW7dp-0003Gs-Qm for guix-patches@gnu.org; Wed, 07 Sep 2022 22:51:46 -0400 Received: from mx1.dismail.de ([78.46.223.134]:15126) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oW7dn-0002ur-0j for guix-patches@gnu.org; Wed, 07 Sep 2022 22:51:45 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id e0bdf2f5 for ; Thu, 8 Sep 2022 04:51:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=woCrESjYl2oJasKJmd5JAimaMDwQyPpEUuyRJ2S5zZo=; b= QDHRPF2QnrzdfTIaVRIM0qAksizPVXbubKDsR1G53hzZvEqzGbgLERDGhbIg1OVj XZsT4tOABAK24pE8jCiwVMUvyW1lEGEJTw3rVgvVEL9+aE+SqlGQWEnoH7yF0iN0 NpNSZlQLnCmYeeedbZ9tYMd8J2kJ/xNId6JgUGcCO675r4NeK5S71RyzPzPX1b8R lsqMSG03sdreR6HuW+Bjzq6/DtSU2xEHF5nXOcvSI3hx6nzVPCnqCeWUyBKqDxP/ 6W+oa42yp1JUb2gZBLCEH7Cp6iob3fuApKj76bjBwObxZxDsVTiLiA/k+vJk/c+f oXkQYXmeStVcBtQuxEi9EQ== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 8e2337b6 for ; Thu, 8 Sep 2022 04:51:40 +0200 (CEST) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 41d318ac for ; Thu, 8 Sep 2022 04:51:39 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id aa1cdec0 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Thu, 8 Sep 2022 04:51:39 +0200 (CEST) From: jgart To: guix-patches@gnu.org Subject: [PATCH] gnu: Add cl-doplus. Date: Wed, 7 Sep 2022 21:51:36 -0500 Message-Id: <20220908025136.18463-1-jgart@dismail.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_DNSWL_LOW=-0.7, 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.4 (-) X-Debbugs-Envelope-To: submit Cc: jgart 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.4 (--) * gnu/packages/lisp-xyz.scm (cl-doplus, ecl-doplus, sbcl-doplus): New variables. --- gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index a856a75966..c142db2b73 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -22852,6 +22852,34 @@ (define-public cl-glkit (define-public ecl-glkit (sbcl-package->ecl-package sbcl-glkit)) +(define-public sbcl-doplus + (package + (name "sbcl-doplus") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alessiostalla/doplus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yvda9psw9m08d3bzdb8a2drvhrnr07a0rhza5ibk30v1dkwfw7c")))) + (build-system asdf-build-system/sbcl) + (native-inputs (list sbcl-fiveam)) + (inputs + (list sbcl-parse-declarations sbcl-fset)) + (synopsis "Iteration macro for Common Lisp") + (description "@code{doplus} is an iteration macro for Common Lisp.") + (home-page "https://github.com/alessiostalla/doplus") + (license license:expat))) + +(define-public cl-doplus + (sbcl-package->cl-source-package sbcl-doplus)) + +(define-public ecl-doplus + (sbcl-package->ecl-package sbcl-doplus)) + (define-public sbcl-trees (let ((commit "7b06048af0248c4302088c758208276f9faf2beb")) (package -- 2.37.3 From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 09 08:43:50 2022 Received: (at 57663-done) by debbugs.gnu.org; 9 Sep 2022 12:43:50 +0000 Received: from localhost ([127.0.0.1]:32813 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oWdMM-0007JN-5u for submit@debbugs.gnu.org; Fri, 09 Sep 2022 08:43:50 -0400 Received: from mout01.posteo.de ([185.67.36.65]:55333) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oWdMJ-0007J7-1l for 57663-done@debbugs.gnu.org; Fri, 09 Sep 2022 08:43:48 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 7F5D0240027 for <57663-done@debbugs.gnu.org>; Fri, 9 Sep 2022 14:43:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1662727420; bh=gMgsZYAWu5KgWwvGJ30NneWjNHs5d4ZQBZ9voP/NsZA=; h=From:To:Cc:Subject:Date:From; b=cfkOW5iO1O4Y35JBlczrI1XKVVl9654oJ4UPpPhxr60jKEqaVo3Wof7XH3mHIkj0g 2IdYPKizuGkt2kOZPDVE5xxqhVhC8c2F6eqR34U+vqZiUG5aTNkRrcs+vbcbtyj/Wh gUwV4r6w3DSX3lI7B5zQWxHGozRsWOUgveszUPaRP+TVDyiWlB9g2sZtlI8V/+Yrim jLgRudbH0cwqljmHaWOtFKMfuafIW9WGHN/5dz0VBnxJALoPVmGcamnFVEdExNULJD vCj1c7jChUDqL2vbV794mRCsU0K+GDllXDG6NyfnoxB2dlx0YWoKk6DTCcT34kfYOI D2l11AfaQV0Yg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4MPFzG4j0xz9rxb; Fri, 9 Sep 2022 14:43:38 +0200 (CEST) References: <20220908025136.18463-1-jgart@dismail.de> From: Guillaume Le Vaillant To: jgart Subject: Re: [bug#57663] [PATCH] gnu: Add cl-doplus. Date: Fri, 09 Sep 2022 12:40:33 +0000 In-reply-to: <20220908025136.18463-1-jgart@dismail.de> Message-ID: <87illwlnuu.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: 57663-done Cc: 57663-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 Path pushed as a4f96f2aa87f79ef3f1887aa13b73ad231fbcdd0 with the license field fixed (gpl3+ instead of expat). I also added doplus-fset to the list of systems to compile. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYxs0+Q8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j9UggD8Ck+gUmow8+jnELb24NY4jEaQDqrRnhcrTb0w 0qz7o7IA/A1Z9Ef2J3PTB3AcuTHNv3SOAQNoYhdFCI/GapzLAjhK =/Att -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 18:43:05 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, 08 Oct 2022 11:24:12 +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