From unknown Mon Jun 23 11:26:18 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#53860 <53860@debbugs.gnu.org> To: bug#53860 <53860@debbugs.gnu.org> Subject: Status: [PATCH] gnu: clojure-data-xml: Fix build by removing tests. Reply-To: bug#53860 <53860@debbugs.gnu.org> Date: Mon, 23 Jun 2025 18:26:18 +0000 retitle 53860 [PATCH] gnu: clojure-data-xml: Fix build by removing tests. reassign 53860 guix-patches submitter 53860 Steve George severity 53860 normal tag 53860 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 07 14:36:17 2022 Received: (at submit) by debbugs.gnu.org; 7 Feb 2022 19:36:17 +0000 Received: from localhost ([127.0.0.1]:43815 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nH9o8-0007Ys-QO for submit@debbugs.gnu.org; Mon, 07 Feb 2022 14:36:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:56852) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nH9o6-0007Yk-Nw for submit@debbugs.gnu.org; Mon, 07 Feb 2022 14:36:15 -0500 Received: from eggs.gnu.org ([209.51.188.92]:49716) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nH9o6-0001hY-5O for guix-patches@gnu.org; Mon, 07 Feb 2022 14:36:14 -0500 Received: from mailtransmit05.runbox.com ([185.226.149.38]:36666) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nH9nl-0002jl-5V for guix-patches@gnu.org; Mon, 07 Feb 2022 14:36:04 -0500 Received: from mailtransmit02.runbox ([10.9.9.162] helo=aibo.runbox.com) by mailtransmit05.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1nH9na-00AH5O-Nb for guix-patches@gnu.org; Mon, 07 Feb 2022 20:35:42 +0100 Received: from [10.9.9.72] (helo=submission01.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1nH9na-0007A5-81 for guix-patches@gnu.org; Mon, 07 Feb 2022 20:35:42 +0100 Received: by submission01.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1nH9nR-0000uB-9m; Mon, 07 Feb 2022 20:35:33 +0100 From: Steve George To: guix-patches@gnu.org Subject: [PATCH] gnu: clojure-data-xml: Fix build by removing tests. Date: Mon, 7 Feb 2022 19:32:19 +0000 Message-Id: <20220207193219.4055890-2-steve@futurile.net> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20220207193219.4055890-1-steve@futurile.net> References: <20220207193219.4055890-1-steve@futurile.net> Received-SPF: pass client-ip=185.226.149.38; envelope-from=steve@futurile.net; helo=mailtransmit05.runbox.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, 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.3 (-) X-Debbugs-Envelope-To: submit Cc: Steve George 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/clojure.scm (clojure-data-xml): tests don't work with stable and recent versions of the JDK (https://clojure.atlassian.net/browse/DXML-67). Prevent test build stage running. --- gnu/packages/clojure.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 40a3d7708a..6f9dbd6bca 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -333,10 +333,13 @@ is on par with Java implementations, e.g., Apache commons-codec.") (arguments '(#:source-dirs '("src/main/clojure") #:test-dirs '("src/test/clojure") - #:doc-dirs '())) + #:doc-dirs '() + ;; FIXME: resolve when https://clojure.atlassian.net/browse/DXML-67 is closed + #:tests? #f)) (propagated-inputs (list clojure-data-codec)) (synopsis "Clojure library for reading and writing XML data") - (description "@code{data.xml} is a Clojure library for reading and writing + (description + "@code{data.xml} is a Clojure library for reading and writing XML data. @code{data.xml} has the following features: Parses XML documents into Clojure data structures base-commit: abb197dfe98095a9ea7527a3ca3f81bb0edd5813 -- 2.17.1 From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 08 05:51:59 2022 Received: (at control) by debbugs.gnu.org; 8 Feb 2022 10:51:59 +0000 Received: from localhost ([127.0.0.1]:45515 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nHO6J-0002tp-9q for submit@debbugs.gnu.org; Tue, 08 Feb 2022 05:51:59 -0500 Received: from mailtransmit04.runbox.com ([185.226.149.37]:53656) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nHO6G-0002tb-A4 for control@debbugs.gnu.org; Tue, 08 Feb 2022 05:51:57 -0500 Received: from mailtransmit03.runbox ([10.9.9.163] helo=aibo.runbox.com) by mailtransmit04.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1nHO69-00Bjki-IJ for control@debbugs.gnu.org; Tue, 08 Feb 2022 11:51:49 +0100 Received: from [10.9.9.73] (helo=submission02.runbox) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1nHO69-00069t-46 for control@debbugs.gnu.org; Tue, 08 Feb 2022 11:51:49 +0100 Received: by submission02.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1nHO5y-0006Ir-OL for control@debbugs.gnu.org; Tue, 08 Feb 2022 11:51:38 +0100 Message-ID: <92548a91-2d00-bfbd-7ab3-26c1b8d0cfec@futurile.net> Date: Tue, 8 Feb 2022 10:51:37 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US From: Steve George To: control@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 3.7 (+++) 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: merge 53859 53860 quit Content analysis details: (3.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject -0.0 T_SCC_BODY_TEXT_LINE No description available. 1.7 BODY_EMPTY No body text in message X-Debbugs-Envelope-To: control 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.7 (++) 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: merge 53859 53860 quit Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject -0.0 T_SCC_BODY_TEXT_LINE No description available. -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 1.7 BODY_EMPTY No body text in message merge 53859 53860 quit From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 08 05:55:58 2022 Received: (at 53860-close) by debbugs.gnu.org; 8 Feb 2022 10:55:58 +0000 Received: from localhost ([127.0.0.1]:45532 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nHOAA-00031X-6G for submit@debbugs.gnu.org; Tue, 08 Feb 2022 05:55:58 -0500 Received: from lepiller.eu ([89.234.186.109]:46976) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nHOA9-00031R-4m for 53860-close@debbugs.gnu.org; Tue, 08 Feb 2022 05:55:57 -0500 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 240796be; Tue, 8 Feb 2022 10:55:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=dkim; bh=LIzdiC0UGeR9 9xQYGCPmakJJVvJTDW5/wmsBfDvNp/k=; b=YzTg9+64CRgiqNi1DnUv3TFR0ArD NzqMbT8tkR2EFEmP4tzDw5+v6BmQQ7jg/8icu1HP0V1CEG68nwoRUZXu7zpJqIHh QT013+yVroB+kqqA+bMDHewwiG6FjLuzTf4YLNo6o1RGoG+nPa+y/82Bp5WOoHSZ /tWwech4zKCPFtYJKwPxJi6kNzhs551urPnnYOUTkMyyLub8YhOxm+ExSvJANtUG tOlppr3SgjUGfCBKf/Y5aKFDKUNZKBAZupLmlF++1P0zv5nOW6+2AGFzPN5dEUSM odvu2lC7ql98bnACdDX/PkbuLvEAB55CcCvNNumDC6HR5HpBM34lL1cQEQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id e6b78e6f (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Tue, 8 Feb 2022 10:55:55 +0000 (UTC) Date: Tue, 8 Feb 2022 11:55:49 +0100 From: Julien Lepiller To: Steve George Subject: Re: [bug#53860] [PATCH] gnu: clojure-data-xml: Fix build by removing tests. Message-ID: <20220208115549.71b1c7fa@tachikoma.lepiller.eu> In-Reply-To: <20220207193219.4055890-2-steve@futurile.net> References: <20220207193219.4055890-1-steve@futurile.net> <20220207193219.4055890-2-steve@futurile.net> X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.30; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 53860-close Cc: 53860-close@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 (-) Le Mon, 7 Feb 2022 19:32:19 +0000, Steve George a =C3=A9crit : > * gnu/packages/clojure.scm (clojure-data-xml): tests don't work with > stable and recent versions of the JDK > (https://clojure.atlassian.net/browse/DXML-67). Prevent test build > stage running. --- > gnu/packages/clojure.scm | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) >=20 > diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm > index 40a3d7708a..6f9dbd6bca 100644 > --- a/gnu/packages/clojure.scm > +++ b/gnu/packages/clojure.scm > @@ -333,10 +333,13 @@ is on par with Java implementations, e.g., > Apache commons-codec.") (arguments > '(#:source-dirs '("src/main/clojure") > #:test-dirs '("src/test/clojure") > - #:doc-dirs '())) > + #:doc-dirs '() > + ;; FIXME: resolve when > https://clojure.atlassian.net/browse/DXML-67 is closed > + #:tests? #f)) > (propagated-inputs (list clojure-data-codec)) > (synopsis "Clojure library for reading and writing XML data") > - (description "@code{data.xml} is a Clojure library for reading > and writing > + (description > + "@code{data.xml} is a Clojure library for reading and writing > XML data. @code{data.xml} has the following features: > =20 > Parses XML documents into Clojure data structures >=20 > base-commit: abb197dfe98095a9ea7527a3ca3f81bb0edd5813 Thanks for the patch! Ryan had a better approach in https://issues.guix.gnu.org/53868, so I pushed it instead. Disabling only the failing test is better that disabling all tests :). Closing this as the package is now fixed. Thanks! From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 08 06:03:18 2022 Received: (at 53860) by debbugs.gnu.org; 8 Feb 2022 11:03:18 +0000 Received: from localhost ([127.0.0.1]:45551 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nHOHG-0005VJ-BC for submit@debbugs.gnu.org; Tue, 08 Feb 2022 06:03:18 -0500 Received: from mailtransmit05.runbox.com ([185.226.149.38]:40676) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nHOHE-0005V6-Sw for 53860@debbugs.gnu.org; Tue, 08 Feb 2022 06:03:17 -0500 Received: from mailtransmit02.runbox ([10.9.9.162] helo=aibo.runbox.com) by mailtransmit05.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1nHOH8-00Bq4b-6Q for 53860@debbugs.gnu.org; Tue, 08 Feb 2022 12:03:10 +0100 Received: from [10.9.9.74] (helo=submission03.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1nHOH7-0006fL-I0 for 53860@debbugs.gnu.org; Tue, 08 Feb 2022 12:03:09 +0100 Received: by submission03.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1nHOH2-0001XU-O1 for 53860@debbugs.gnu.org; Tue, 08 Feb 2022 12:03:04 +0100 Message-ID: Date: Tue, 8 Feb 2022 11:03:03 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US From: Steve George To: 53860@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 3.7 (+++) 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: See #53868 which is better as it only stops cljs tests. (https://debbugs.gnu.org/cgi/bugreport.cgi?bug=53868) Content analysis details: (3.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject -0.0 T_SCC_BODY_TEXT_LINE No description available. 0.0 SCC_BODY_URI_ONLY No description available. 1.7 BODY_EMPTY No body text in message X-Debbugs-Envelope-To: 53860 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.7 (++) 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: See #53868 which is better as it only stops cljs tests. (https://debbugs.gnu.org/cgi/bugreport.cgi?bug=53868) Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject -0.0 T_SCC_BODY_TEXT_LINE No description available. -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 SCC_BODY_URI_ONLY No description available. 1.7 BODY_EMPTY No body text in message See #53868 which is better as it only stops cljs tests. (https://debbugs.gnu.org/cgi/bugreport.cgi?bug=53868) From unknown Mon Jun 23 11:26:18 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 08 Mar 2022 12:24:11 +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