From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 06 08:41:34 2022 Received: (at 53765) by debbugs.gnu.org; 6 Apr 2022 12:41:34 +0000 Received: from localhost ([127.0.0.1]:57281 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nc4yc-0000IN-99 for submit@debbugs.gnu.org; Wed, 06 Apr 2022 08:41:34 -0400 Received: from mout-p-201.mailbox.org ([80.241.56.171]:49328) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nc4yV-0000Hp-HD for 53765@debbugs.gnu.org; Wed, 06 Apr 2022 08:41:28 -0400 Received: from smtp2.mailbox.org (smtp2.mailbox.org [80.241.60.241]) (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-201.mailbox.org (Postfix) with ESMTPS id 4KYPJd58jwz9sZW; 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=1649248879; 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=1VH5FPOD+mCvG5DTwry/7CVdM2zEuLmuWUpbwiK5ax4=; b=DeQ/PNrR8KLLzkT0mDaj3CpwM9ghxn3ytyNjotiH+6veYRXXSLeef0atvLY4WeF1qrHkIt bC634MUdh2CnL85dTQSu1JpfdtAoRGZzpYuAueRFxoFdvKKRAfeXgAfoynudLPtSCW+iT5 ZxaQ9jAqj9MZjdtMTtkuA1gL5LYEGovjV/h5A8YXSlOWA5UQCUlEhJkUNi7UTXCiKLKTFv /Sn0KSWKXJyPEC2OzhWJF9RxQM0jC0vhhPVfMlPxwahaJqmWz+nBeu9wl7vlvAbX31xSdf iU29V2FrsXOIfD8MxAWRV1Pwnt1vaf+mVTKZz1HMnmqqitXUjxvW0PY6rsdk3A== To: 53765@debbugs.gnu.org Subject: [PATCH v3 10/17] gnu: Add clojure-tools-logging. In-Reply-To: Date: Fri, 21 Jan 2022 18:43:31 -0500 Message-Id: <1034a76196ffdc143d72cddf11506c296df6ddd3.1649248640.git.mail@reilysiegel.com> 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 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 5b7189b997..edc6e4be9a 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -805,6 +805,40 @@ (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.171 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H5 RBL: Excellent reputation (+5) [80.241.56.171 listed in wl.mailspike.net] -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 RCVD_IN_MSPIKE_WL Mailspike good senders -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 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 5b7189b997..edc6e4be9a 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -805,6 +805,40 @@ (define-public clojure-tools-gitlibs keeps a cache of git directories and working trees that can be reused.") (license license:epl1.0))) +(define-public clojure-tools-logging + (package + (name "clojure-tools-logging") + (version "1.2.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/clojure/tools.logging") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1vcl1s75amazzdyirnpza8jizp85d5178p0qkqfk26vl7yajvz7a")))) + (build-system clojure-build-system) + (native-inputs (list clojure-test-check + java-slf4j-api + java-slf4j-simple + java-log4j-api + java-log4j-core + java-commons-logging-minimal)) + (arguments + '(#:source-dirs '("src/main/clojure") + #:test-dirs '("src/test/clojure") + #:doc-dirs '() + ;; Tests fail due to issues with clojure.pprint. This is an issue with + ;; how Guix AOT-compiles Clojure. + #:tests? #f)) + (home-page "https://github.com/clojure/tools.logging") + (synopsis "Clojure logging toolkit") + (description "Logging macros which delegate to a specific logging +implementation, selected at runtime when the @code{clojure.tools.logging} +namespace is first loaded.") + (license license:epl1.0))) + (define-public clojure-tools-reader (package (name "clojure-tools-reader") -- 2.35.1