From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 24 20:43:21 2022 Received: (at submit) by debbugs.gnu.org; 25 Nov 2022 01:43:22 +0000 Received: from localhost ([127.0.0.1]:32773 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oyNkP-0003Jn-GY for submit@debbugs.gnu.org; Thu, 24 Nov 2022 20:43:21 -0500 Received: from lists.gnu.org ([209.51.188.17]:37360) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oyNkN-0003Jf-SL for submit@debbugs.gnu.org; Thu, 24 Nov 2022 20:43:20 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oyNkN-0006GY-Mm for guix-patches@gnu.org; Thu, 24 Nov 2022 20:43:19 -0500 Received: from mail-4018.proton.ch ([185.70.40.18]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oyNkK-0007il-7S for guix-patches@gnu.org; Thu, 24 Nov 2022 20:43:19 -0500 Date: Fri, 25 Nov 2022 01:42:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail3; t=1669340585; x=1669599785; bh=JdMy6JEGcwU1ArkuNH87Ci1CvZh86TyeE56ciD0KU1w=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=N1xzkKo4a72aauY6K1ShC5y+ple0dnnaDXoW3pTM04IoKdXtuvbcBhL26V27WnaSq cstPOudl5bzrtSMe4tb/oCOeMBRf1Wx2OyzpXlK3SYZbNL/J+bTvn59Lja26beUHSr XcPyrebcHSWL2xnuw6o4san0YIzyyfT/15K5Gabe62Sxam6PCxDMV/UNB9yF2x0wxy MHR+OEZvvzCukKmSPskPi63YsO9PJHP1C9tLUKy4s6WsaxlbdaKLckBmwyNdbPRLQY q6dCYT+vyT8a4UixvMqi4qIvx3MQgg7cKVFciOumoR9qMMUShsqj6/dzaE5+aOlWfn yyvLKZJ5QKyZw== To: guix-patches@gnu.org From: "Paul A. Patience" Subject: [PATCH] gnu: Add cl-concurrent-hash-tables. Message-ID: <20221125014244.136801-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.40.18; envelope-from=paul@apatience.com; helo=mail-4018.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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=0.001 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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/lisp-xyz.scm (sbcl-concurrent-hash-tables, cl-concurrent-hash-tables, ecl-concurrent-hash-tables): New variables. --- gnu/packages/lisp-xyz.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 55cc90b08a..005364a5ac 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -14031,6 +14031,39 @@ (define-public cl-custom-hash-table (define-public ecl-custom-hash-table (sbcl-package->ecl-package sbcl-custom-hash-table)) +(define-public sbcl-concurrent-hash-tables + (let ((commit "1b9f0b5da54fece4f42296e1bdacfcec0c370a5a") + (revision "0")) + (package + (name "sbcl-concurrent-hash-tables") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/no-defun-allowed/concurrent-hash-t= ables") + (commit commit))) + (file-name (git-file-name "cl-concurrent-hash-tables" version)) + (sha256 + (base32 "03g24ycr1ngzg8bv10iwp1bmnldz5bxbfdqrzhfxhicpibh49r96"))= )) + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-atomics sbcl-bordeaux-threads)) + (home-page "https://github.com/no-defun-allowed/concurrent-hash-tabl= es") + (synopsis "Portability library for concurrent hash tables in Common = Lisp") + (description "@code{concurrent-hash-tables} is a Common Lisp portabi= lity +library wrapping some implementations of concurrent hash tables which do n= ot +have to be entirely locked in their operation, including +@code{42nd-at-threadmill}, @code{luckless}, and a fallback, segmented hash +table.") + (license license:bsd-2)))) + +(define-public cl-concurrent-hash-tables + (sbcl-package->cl-source-package sbcl-concurrent-hash-tables)) + +(define-public ecl-concurrent-hash-tables + (sbcl-package->ecl-package sbcl-concurrent-hash-tables)) + (define-public sbcl-collectors (let ((commit "13acef25d8422d1d82e067b1861e513587c166ee")) (package -- 2.38.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 25 04:33:34 2022 Received: (at 59557-done) by debbugs.gnu.org; 25 Nov 2022 09:33:34 +0000 Received: from localhost ([127.0.0.1]:33501 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oyV5S-0003Ii-5A for submit@debbugs.gnu.org; Fri, 25 Nov 2022 04:33:34 -0500 Received: from mout02.posteo.de ([185.67.36.66]:47099) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oyV5P-0003IV-J7 for 59557-done@debbugs.gnu.org; Fri, 25 Nov 2022 04:33:32 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 828B024010C for <59557-done@debbugs.gnu.org>; Fri, 25 Nov 2022 10:33:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1669368805; bh=rBrqJ3dT82R7sYDguvx9LPtID3A4PqrV8C3dzNXLbOI=; h=From:To:Cc:Subject:Date:From; b=IpZjb58ZRpH5Dm5rZ1+ermw+bgfTO0l7aSP9lNSeDd2chN4smFzRtq58nrUJleHTP cNWx9eIF2MAm9EqwiCyYV7ahG4+IpFDymspL4Lz5Btinun9Iv3L078QuxOWN+RxnKO FZBUh2Q84xdzAVFnTdc8IifZSiC1DbJq7hK4U0rAmhtMQgvfAm70mMpQlJDL+GcYoJ iZnbcMUVFye0Fl/TSRHJiilI+MMLqmZaV/eK1XEvei9tHdoZrG+YnnJWWG5hyb9Znb KEp2AuhoSRXEJfv23cnVBAEUL305dGS9EqlawRQaN8/qeRpIAho+9ShtEkhIVOo/qJ OWe35Iozta+cQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4NJV6B35z6z6tn5; Fri, 25 Nov 2022 10:33:22 +0100 (CET) References: <20221125014244.136801-1-paul@apatience.com> From: Guillaume Le Vaillant To: "Paul A. Patience" Subject: Re: [bug#59557] [PATCH] gnu: Add cl-concurrent-hash-tables. Date: Fri, 25 Nov 2022 09:32:53 +0000 In-reply-to: <20221125014244.136801-1-paul@apatience.com> Message-ID: <87ilj3gyzi.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: 59557-done Cc: 59557-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 63374ef9b9c7ebd374bed6630783b020e45e576f. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCY4CL4Q8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j9NDgEAibp82d+b5Na9tvQNI73oa6DPNXpqQnHr0FsG +xD0FNgA/jSw7OasSxqR4OEgNf7cJVSzV74hPqbCVJ/23U9vXmaN =arQb -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Aug 19 03:05:14 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 23 Dec 2022 12:24:16 +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