From debbugs-submit-bounces@debbugs.gnu.org Thu May 19 07:16:02 2022 Received: (at submit) by debbugs.gnu.org; 19 May 2022 11:16:02 +0000 Received: from localhost ([127.0.0.1]:34650 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nre8P-0001Py-Od for submit@debbugs.gnu.org; Thu, 19 May 2022 07:16:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:43540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nre8O-0001Pe-Bu for submit@debbugs.gnu.org; Thu, 19 May 2022 07:16:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39254) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nre8M-0004ex-Nw for guix-patches@gnu.org; Thu, 19 May 2022 07:15:59 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:37876) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nre8I-0000X3-It for guix-patches@gnu.org; Thu, 19 May 2022 07:15:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=llP4oAneuasRGROiZ9pN21i6EImlxaShEtEA41XUwqA=; b=j1MBZR0m2dSNfwbFDNoCS1HOZG L4x3kGcXePKECXhntiXstCSWxdxviC8Wx8i2SmtAjUFB6UntMuiYC5TXnCt3uMKA8Q+WvDkpy3Now GugkdiTmb2+gXt9XPJ/Vqik2VLbTw5zFfUqM5RKwuRKMRw8pp+n0TL5NTytpFwQaJoUTKadvQbktx zYsFxthXvwVYoJPtcUIYu7sRNgrQdw5a4s5fg2rWOI8Zk4TOQTIAv+gve3MyZ2lh2CkcCBN7RFDpv t5K6vU9Qr1UaBqbgQ0L/lazauGaZP6XkO9LT+bBs8cBwcxceP5l7wgF/c78GSXMvTGghyjgpvGuUn 0XYbHI8A==; Received: from [192.168.2.1] (port=8466 helo=localhost.localdomain) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1nre8A-0001wi-Ij; Thu, 19 May 2022 16:45:46 +0530 From: Arun Isaac To: guix-patches@gnu.org Subject: [PATCH] gnu: Add cl-listopia. Date: Thu, 19 May 2022 16:45:44 +0530 Message-Id: <20220519111544.27207-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.36.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=139.59.75.54; envelope-from=arunisaac@systemreboot.net; helo=mugam.systemreboot.net 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, 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: Arun Isaac 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 (sbcl-listopia, cl-listopia, ecl-listopia): 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 fa234af3c3..7fa0db59f9 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -21322,3 +21322,31 @@ (define-public sbcl-lmdb (define-public cl-lmdb (sbcl-package->cl-source-package sbcl-lmdb)) + +(define-public sbcl-listopia + (package + (name "sbcl-listopia") + (version "0.12.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Dimercel/listopia") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "07xa2s2s60h9f40az3zdacybl5pk1x8bhvga9phsra0czbv44lx2")))) + (build-system asdf-build-system/sbcl) + (native-inputs + (list sbcl-prove)) + (home-page "https://github.com/Dimercel/listopia") + (synopsis "List manipulation library for Common Lisp") + (description "This package is a list manipulation library for Common Lisp +inspired by Haskell package @code{Data.List}.") + (license license:llgpl))) + +(define-public cl-listopia + (sbcl-package->cl-source-package sbcl-listopia)) + +(define-public ecl-listopia + (sbcl-package->ecl-package sbcl-listopia)) -- 2.36.0 From debbugs-submit-bounces@debbugs.gnu.org Fri May 20 05:09:45 2022 Received: (at 55520) by debbugs.gnu.org; 20 May 2022 09:09:45 +0000 Received: from localhost ([127.0.0.1]:37573 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nrydk-0005XW-Rb for submit@debbugs.gnu.org; Fri, 20 May 2022 05:09:45 -0400 Received: from mout01.posteo.de ([185.67.36.65]:60423) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nrydi-0005XF-Tz for 55520@debbugs.gnu.org; Fri, 20 May 2022 05:09:44 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id E2D10240029 for <55520@debbugs.gnu.org>; Fri, 20 May 2022 11:09:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1653037776; bh=q2976uDzZfAsmrR/bbS+poxy14PZmA1EbDQg3llTrvg=; h=From:To:Cc:Subject:Date:From; b=q0+x1DuJ8FEmj48+z564Sl6ftL4k2SwAN/CV2w1+fxnPkQl++0DXJKEzoVPIkqB0V whOKF65FAmnfk37KrdpKXE+sTDRmeE+S7+u1XsYh1jCz6Q4S7yQJud8/oiX/zyh42Q jHBzFA4/Om1jalGYp9/QvY2JtZLhs0L9dO+0Yv0T64jk+tvCRBX59QUDiYigmG805A 4k0zhJ0KEw/OVWI/g7sKfO7khGKVCJ+fxa0iFANtNz3GMmhpwEG9yEAVNmHBfB0QPJ zt+dY6ADJNxJ4buQxLO+amYAYDTtapeiLoalY9T5g44e76HrwO4CdHdSYDU0GefamQ oI+q00c6x6IWw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4L4LWz2HXTz9rxF; Fri, 20 May 2022 11:09:34 +0200 (CEST) References: <20220519111544.27207-1-arunisaac@systemreboot.net> From: Guillaume Le Vaillant To: Arun Isaac Subject: Re: [bug#55520] [PATCH] gnu: Add cl-listopia. Date: Fri, 20 May 2022 09:08:48 +0000 In-reply-to: <20220519111544.27207-1-arunisaac@systemreboot.net> Message-ID: <87ee0omuy9.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: 55520 Cc: 55520@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 Arun Isaac skribis: > * gnu/packages/lisp-xyz.scm (sbcl-listopia, cl-listopia, ecl-listopia): New > variables. LGTM. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYodazg8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j97NAEAgO8rkxkNYlXPXHxtHZJkddt9fPVpLRIy8H4l C2amfN0A/iINCwgAEmlPALwDTNcrL09u6vndXjEhCszDeot/3bc7 =Js8V -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri May 20 14:04:12 2022 Received: (at 55520-done) by debbugs.gnu.org; 20 May 2022 18:04:12 +0000 Received: from localhost ([127.0.0.1]:40033 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ns6yy-00047o-MV for submit@debbugs.gnu.org; Fri, 20 May 2022 14:04:12 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:33260) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ns6yx-00047e-AL for 55520-done@debbugs.gnu.org; Fri, 20 May 2022 14:04:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: References:In-Reply-To:Subject:Cc:To:From:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=2KTQT9Ih8mabdfaa7qYfRfoGfIHHFcxm9n15+pLG4vk=; b=UNnDK4Uk5GlKYq/P5EPXQ+8Ueg /TH1sFt1vEmK9cnW+b5ICKafTM+6B0Xn3lu4NsKP7A7UQfjtlPt3iDObKmEZZStvkgsgPMlOCVjz8 rZREKbNJT7E+Hm5Fw0Wm7dXbbzu2Z3HAWuotu6fZO+pWDCEdpUJA/sHAaDzc6G/Odt3C1kZ0ueFti dFm3q87SOWd34APDAiSiMFlDxgXo9TNGvCDx0Q2+Xk5uNGtmiEPM2Gem8OCFbWCh7MQKQNGfmPxQt HdGD5uOPpRmYBF0P/0eT6a1/J23Lwd7Pf+PGRqL+GuYmVf6xAe1MR+jdL5n/veHjSi6ZB4i79RzHq iTS6mR9g==; Received: from [192.168.2.1] (port=8026 helo=steel) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1ns25a-0004Io-RY; Fri, 20 May 2022 18:20:42 +0530 From: Arun Isaac To: Guillaume Le Vaillant Subject: Re: [bug#55520] [PATCH] gnu: Add cl-listopia. In-Reply-To: <87ee0omuy9.fsf@kitej> References: <20220519111544.27207-1-arunisaac@systemreboot.net> <87ee0omuy9.fsf@kitej> Date: Fri, 20 May 2022 18:20:27 +0530 Message-ID: <875ym0tlkc.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55520-done Cc: 55520-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: -1.0 (-) Pushed, thanks! From unknown Fri Jun 20 07:26:45 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, 18 Jun 2022 11:24:06 +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