From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 06 08:41:35 2022 Received: (at 53765) by debbugs.gnu.org; 6 Apr 2022 12:41:35 +0000 Received: from localhost ([127.0.0.1]:57283 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nc4yc-0000Ia-Nf for submit@debbugs.gnu.org; Wed, 06 Apr 2022 08:41:34 -0400 Received: from mout-p-202.mailbox.org ([80.241.56.172]:52203) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nc4yV-0000Hn-HG for 53765@debbugs.gnu.org; Wed, 06 Apr 2022 08:41:28 -0400 Received: from smtp1.mailbox.org (smtp1.mailbox.org [IPv6:2001:67c:2050:105:465:1:1:0]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-202.mailbox.org (Postfix) with ESMTPS id 4KYPJd1ccVz9sQd; Wed, 6 Apr 2022 14:41:21 +0200 (CEST) From: Reily Siegel DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=reilysiegel.com; s=MBO0001; t=1649248878; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to; bh=R72bzjUjV1TU5iOzjO7ei6xeYfUgYRhl6IjazkJxRQY=; b=et/T3HrbgnAeHu/HJGjWWEjd7kG4WEqpFtmqB6W/rkr6fe8YwdyJiXC2FaU0XDdgAxVE08 R31iXXuyQdqcoZ040fhn2r8j0PfrGHCnqt39fjkLouI/oJnzhsdEcA/zqBu/5eU5t9yxpM 8Ykx/xsUXGyhu9C48d1Y4NKp0psCBeFWhKiniBvmNv4xm5E5BROnN7SP29R+thm+LjjeBs a/TnbShGv8KZUnnKa8Sa5w2zYMAOjUO7+NjR1JjNJeoFDymc6hR6J3UA/1Ehb4y/Yj6WcH q7gK0cONpEm8tWpSU77yuzVTxYDz2Too7TGU8aN3s9VX9UP8/hgd7aIn8HRmnQ== To: 53765@debbugs.gnu.org Subject: [PATCH v3 11/17] gnu: Add clojure-core-async. In-Reply-To: Date: Fri, 21 Jan 2022 19:19:29 -0500 Message-Id: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 1.4 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: --- gnu/packages/clojure.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index edc6e4be9a..7b2af9464d 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -259,6 +259,36 @@ (define-public c [...] Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [80.241.56.172 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 2.1 DATE_IN_PAST_96_XX Date: is 96 hours or more before Received: date 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: 53765 Cc: Maxime Devos 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: 0.4 (/) --- gnu/packages/clojure.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index edc6e4be9a..7b2af9464d 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -259,6 +259,36 @@ (define-public clojure-algo-monads (home-page "https://github.com/clojure/algo.monads") (license license:epl1.0))) +(define-public clojure-core-async + (package + (name "clojure-core-async") + (version "1.5.648") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/clojure/core.async") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1any7bh5zsn6agia6y7al1gxnqa6s5g0y45gzy51rfjjccq33xq4")))) + (build-system clojure-build-system) + (arguments + '(#:source-dirs '("src/main/clojure") + #:test-dirs '("src/test/clojure") + #:doc-dirs '("doc") + #:aot-exclude '(cljs.core.async + cljs.core.async.macros + cljs.core.async.impl.ioc-macros))) + (propagated-inputs (list clojure-tools-analyzer-jvm)) + (home-page "https://github.com/clojure/core.async") + (synopsis "Facilities for async programming and communication in Clojure") + (description "@{core.async} is a Clojure library providing facilities for +async programming and communication in Clojure using communicating sequential +processes. @{core.async} supports both multi-threaded and single-threaded +environments.") + (license license:epl1.0))) + (define-public clojure-core-cache (package (name "clojure-core-cache") -- 2.35.1