From unknown Tue Jun 17 01:27:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Resent-From: Aurora Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 09 Mar 2022 20:29:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 54312 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54312@debbugs.gnu.org Cc: Aurora X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164685769231184 (code B ref -1); Wed, 09 Mar 2022 20:29:01 +0000 Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:12 +0000 Received: from localhost ([127.0.0.1]:60781 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uq-00086u-CX for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:52662) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uo-00086m-OF for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:11 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33606) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2uo-0006Mw-Id for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:10 -0500 Received: from knopi.disroot.org ([178.21.23.139]:36562) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2um-0007zs-8L for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:10 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id CA80C400BE; Wed, 9 Mar 2022 21:28:05 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id yYJ_QkH9zzZb; Wed, 9 Mar 2022 21:28:04 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857679; bh=il/MTU9JExaMpcDcHMPEuLzASn4Gz8nPKPw8xHtZxLg=; h=From:To:Cc:Subject:Date; b=YBhIihiAoSW15aHKROMxo34PgX0/S0LI9RkZp2RXlBUq+NMpr4p1qqRaLEjPYLnLL awU9aSNpM7CxixJHqH90p7dzCVL2hgX8qTkKW+OT2i1170fkOf4APEzgG7LOW5zfxB J8EQkTjNQqzW6Z+kaT8/52Tzhqd5fwxE84weS1Kz7e8oiF0idjFHCwC2wniXublf8G H7gioQ76NQ3TsKeTg7Z1vdRsFI36h8Tog+XEwHkCMS5rDHbpQ9X42nRfgIFJldpLYo Z7kQKdb2Q26N59xo4yRojEQjQj9lTQReWCb4G3izj/ukVksSMmGstZ5UuXqcRwF4EG m6Hs6k08Vb2Mw== Date: Wed, 9 Mar 2022 20:27:39 +0000 Message-Id: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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-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 (--) For a number of Fukamachi's packages, all that is required to get the tests working is to ensure the test package is loaded before the base package. All of these patches are technically independent of eachother, but the rationale (and method) for the fixes being the exact same for every single one, it felt more reasonable to group them together than keep repeating it. A few packages untouched by these patches remain unfixed as they seem to exhibit circular dependencies that I'm yet unsure how to fix. Aurora (10): gnu: Fix sbcl-proc-parse tests gnu: Fix sbcl-myway tests gnu: Fix sbcl-xsubseq tests gnu: Fix sbcl-smart-buffer tests gnu: Fix sbcl-fast-http tests gnu: Fix sbcl-http-body tests gnu: Fix sbcl-cl-cookie tests gnu: Fix sbcl-mito tests gnu: Fix sbcl-cl-locale tests gnu: Fix sbcl-assoc-utils tests gnu/packages/lisp-xyz.scm | 58 ++++++++++----------------------------- 1 file changed, 14 insertions(+), 44 deletions(-) base-commit: 723ec40936617554097ab30ac3abbc3507ba9dad -- 2.30.2 From unknown Tue Jun 17 01:27:27 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) References: <20220309202749.2196-1-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> Resent-From: Aurora Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 09 Mar 2022 23:17:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54312 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54312@debbugs.gnu.org Received: via spool by 54312-submit@debbugs.gnu.org id=B54312.164686780125383 (code B ref 54312); Wed, 09 Mar 2022 23:17:02 +0000 Received: (at 54312) by debbugs.gnu.org; 9 Mar 2022 23:16:41 +0000 Received: from localhost ([127.0.0.1]:32822 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS5Xt-0006bL-Ef for submit@debbugs.gnu.org; Wed, 09 Mar 2022 18:16:41 -0500 Received: from knopi.disroot.org ([178.21.23.139]:52510) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS5Xr-0006bA-M4 for 54312@debbugs.gnu.org; Wed, 09 Mar 2022 18:16:40 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 043E1400AF for <54312@debbugs.gnu.org>; Thu, 10 Mar 2022 00:16:38 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wlL3K8p2RdIN for <54312@debbugs.gnu.org>; Thu, 10 Mar 2022 00:16:37 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646867796; bh=xLU7GoeyZ4sg71HfhxNOeEqwKPP1XlEdNo1npQLCt/4=; h=From:To:Subject:Date; b=fnZmzzG5+bsNTdX16mCJvIUAOJWZbjC7G0udcbauN2b6B5ppZO6sZqnTj2UuLhEyC gsTrsB404z2YbC8yMaHDxIweCV0ZLmwZEXzEF4H6m1NDeuQHhYCON2sloRDToAppG5 PlH6CnZcojShuskdh/2a8zlGCQ+GME73mSJutAhdCKjxPKxOrTv/WboKn2hl2rTqv5 X3lK1V/9P3tD4NdwaWCCQYgc3nTzBJjHQaf3nfQVeWG7GjcHbBqTRu/0I8jufGFhdO ARfs/MW643+s5qKN2bmlcwYtgMAjiXKWAFDCDRKCYwApo4U6dahYahFOnMMdv1andD +6upfBJn0Oe6g== Date: Wed, 09 Mar 2022 23:16:33 +0000 Message-ID: <878rtiemy6.fsf@disp3269> Mime-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) 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 (-) Apologies regarding the multiple patches sent. I had misunderstood part of the email submission infrastructure and assumed that debbugs cared about the in-reply-to headers. I have been informed in irc that it *does not* and that a split sending procedure using the thread comments to submit the rest of the patches is necessary. From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 10 01:57:55 2022 Received: (at control) by debbugs.gnu.org; 10 Mar 2022 06:57:55 +0000 Received: from localhost ([127.0.0.1]:33042 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSCkF-0004S3-B8 for submit@debbugs.gnu.org; Thu, 10 Mar 2022 01:57:55 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:19214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSCkD-0004Rt-KE for control@debbugs.gnu.org; Thu, 10 Mar 2022 01:57:54 -0500 Received: from lprikler-laptop.ist.intra (gw.ist.tugraz.at [129.27.202.101]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4KDfyc2Hzlz3xWr for ; Thu, 10 Mar 2022 07:57:44 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1646895464; bh=SLrNiIbniujID2txT45lz38cFX8tCSXOvonuH+VZBw4=; h=Subject:From:To:Date; b=kwD1HsDM3mUVz+rIIX5u3Rk0wtAdJpPZjTIXvgM5evB6CDycdiOUZOaTL5TInP6Lm Y3Mkg7polwAu+aQxA/8QELYC6zTLc90oSDK4hlme8mbvBUR0MUBLe3o0FDRwp2BmO9 n4kE/yzjatPhZ5R7yNHzgkMpMIWiMYRNh8YE2sFk= Message-ID: <111d686dcfe260872f177f5ce2d2bc9d5c063f28.camel@ist.tugraz.at> Subject: From: Liliana Marie Prikler To: control@debbugs.gnu.org Date: Thu, 10 Mar 2022 07:57:43 +0100 Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.42.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-TUG-Backscatter-control: waObeELIUl4ypBWmcn/8wQ X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 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: merge 54312 54313 54314 54315 54316 54317 54318 54319 54320 54321 54322 thanks Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [129.27.2.202 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [129.27.2.202 listed in wl.mailspike.net] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 2.0 BLANK_SUBJECT Subject is present but empty -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: 0.4 (/) merge 54312 54313 54314 54315 54316 54317 54318 54319 54320 54321 54322 thanks From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54312: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-1-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54312 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54312@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923741-19308-1" This is a multi-part message in MIME format... ------------=_1646923741-19308-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 00/10] Fix tests for a number of Fukamachi CL packages which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54312@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923741-19308-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923741-19308-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:12 +0000 Received: from localhost ([127.0.0.1]:60781 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uq-00086u-CX for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:52662) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uo-00086m-OF for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:11 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33606) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2uo-0006Mw-Id for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:10 -0500 Received: from knopi.disroot.org ([178.21.23.139]:36562) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2um-0007zs-8L for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:10 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id CA80C400BE; Wed, 9 Mar 2022 21:28:05 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id yYJ_QkH9zzZb; Wed, 9 Mar 2022 21:28:04 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857679; bh=il/MTU9JExaMpcDcHMPEuLzASn4Gz8nPKPw8xHtZxLg=; h=From:To:Cc:Subject:Date; b=YBhIihiAoSW15aHKROMxo34PgX0/S0LI9RkZp2RXlBUq+NMpr4p1qqRaLEjPYLnLL awU9aSNpM7CxixJHqH90p7dzCVL2hgX8qTkKW+OT2i1170fkOf4APEzgG7LOW5zfxB J8EQkTjNQqzW6Z+kaT8/52Tzhqd5fwxE84weS1Kz7e8oiF0idjFHCwC2wniXublf8G H7gioQ76NQ3TsKeTg7Z1vdRsFI36h8Tog+XEwHkCMS5rDHbpQ9X42nRfgIFJldpLYo Z7kQKdb2Q26N59xo4yRojEQjQj9lTQReWCb4G3izj/ukVksSMmGstZ5UuXqcRwF4EG m6Hs6k08Vb2Mw== To: guix-patches@gnu.org Subject: [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Wed, 9 Mar 2022 20:27:39 +0000 Message-Id: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 (--) For a number of Fukamachi's packages, all that is required to get the tests working is to ensure the test package is loaded before the base package. All of these patches are technically independent of eachother, but the rationale (and method) for the fixes being the exact same for every single one, it felt more reasonable to group them together than keep repeating it. A few packages untouched by these patches remain unfixed as they seem to exhibit circular dependencies that I'm yet unsure how to fix. Aurora (10): gnu: Fix sbcl-proc-parse tests gnu: Fix sbcl-myway tests gnu: Fix sbcl-xsubseq tests gnu: Fix sbcl-smart-buffer tests gnu: Fix sbcl-fast-http tests gnu: Fix sbcl-http-body tests gnu: Fix sbcl-cl-cookie tests gnu: Fix sbcl-mito tests gnu: Fix sbcl-cl-locale tests gnu: Fix sbcl-assoc-utils tests gnu/packages/lisp-xyz.scm | 58 ++++++++++----------------------------- 1 file changed, 14 insertions(+), 44 deletions(-) base-commit: 723ec40936617554097ab30ac3abbc3507ba9dad -- 2.30.2 ------------=_1646923741-19308-1-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54313: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-2-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54313 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54313@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923742-19308-3" This is a multi-part message in MIME format... ------------=_1646923742-19308-3 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 01/10] gnu: Fix sbcl-proc-parse tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54313@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923742-19308-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923742-19308-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:17 +0000 Received: from localhost ([127.0.0.1]:60784 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uv-00087C-K4 for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:52664) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uu-000874-1Y for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:16 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33660) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2ut-0006N2-Ri for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:15 -0500 Received: from knopi.disroot.org ([178.21.23.139]:38186) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2ur-00080T-Lv for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:14 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 31269400B7; Wed, 9 Mar 2022 21:28:12 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id Xvpvdq1g4EvS; Wed, 9 Mar 2022 21:28:11 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857684; bh=XoFnwidPemV+piRdWqUG9NpVlUVpHLtU+o34AANddd8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=gAaQVyKIbc9nLonIrwZiDXmjzfTzy+wa9Rx8Cy8hHb85dYyzPn6ARjfB1yc1LRQ1i CMjggBzKmQwTjkl3sWbt0WHLy9NXCmHaEtK/p87ZZF+1XseybFD5wQY+f+GY3PscFg 06sU+bWqqxVZKmbrI/8Jy/VVI8Tt1YocC2y4G6SIz6BRvjXen0Z/ivvKebU+bXewQ1 xrJEvepbKh4B8/m8/UMHGhrsU1GEKwzqv3cImdmMrYZGnQ6oZQ5K3xA+H7nlDLX5iR Dvnw7tJk+dm2HXHw6Dv5cbW1vuu24LmzIBcuP75TCfl4PvF+jEhRuIv8qtD1mBOqJV KlVRCBaPbNh/g== To: guix-patches@gnu.org Subject: [PATCH 01/10] gnu: Fix sbcl-proc-parse tests Date: Wed, 9 Mar 2022 20:27:40 +0000 Message-Id: <20220309202749.2196-2-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 7f5d3ed..88a8669 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -2410,8 +2410,8 @@ named color.") (native-inputs (list sbcl-prove)) (arguments - ;; TODO: Tests don't find "proc-parse-test", why? - `(#:tests? #f)) + '(#:asd-systems '("proc-parse-test" + "proc-parse"))) (synopsis "Procedural vector parser") (description "This is a string/octets parser library for Common Lisp with speed and -- 2.30.2 ------------=_1646923742-19308-3-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54314: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-3-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54314 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54314@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923742-19308-5" This is a multi-part message in MIME format... ------------=_1646923742-19308-5 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 02/10] gnu: Fix sbcl-myway tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54314@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923742-19308-5 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923742-19308-5 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:22 +0000 Received: from localhost ([127.0.0.1]:60787 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uz-00087W-QN for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:21 -0500 Received: from lists.gnu.org ([209.51.188.17]:52666) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2uy-00087L-2o for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:20 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33720) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2ux-0006N9-Tt for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:19 -0500 Received: from knopi.disroot.org ([178.21.23.139]:39356) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2uw-000819-Fu for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:19 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 06C0A400C1; Wed, 9 Mar 2022 21:28:17 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id KnN95l0f1NCt; Wed, 9 Mar 2022 21:28:15 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857690; bh=ZJidjr4nrmhzPSje1QlvOgsGUuKYiuRjZzS0iGGJFGI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Jehm0wVfkBYC9w4KLcpYx/HiJGzv5nB8kkhucgt7+RtCowwp7JQnQlEDkjlMK4mk2 Hw7q4EMGZZ9gKgopcjFK0xmQQjp31nyVk7YNUxjUH8MxeWRbE72VGSb9pyHcX5d3Sl cAGoX71N38UaNGTzOb2aLsYvI+H1wqDD+qXj5O+3LbaikcVJAjBEdRaedG84Q/MCIC CdN0ULOG0tQ6a9WTQ99K6MlfZy+t+cbs6CpGs6guGOM2SrfmrnuIGe092mMqAl8ekJ P5dp98FBLh6FTE2Lps6up7dAj5niR5NI1tonbay4HmUWLOR4CFOz0rr8SU/wWdzPRg AXyJMmMGtXNOA== To: guix-patches@gnu.org Subject: [PATCH 02/10] gnu: Fix sbcl-myway tests Date: Wed, 9 Mar 2022 20:27:41 +0000 Message-Id: <20220309202749.2196-3-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 88a8669..196e083 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -4333,9 +4333,7 @@ Lisp. It is intended to be a replacement of PURI.") (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90")))) (build-system asdf-build-system/sbcl) (arguments - ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required - ;; by #. Why? - '(#:tests? #f)) + '(#:asd-systems '("myway-test" "myway"))) (native-inputs (list sbcl-prove)) (inputs -- 2.30.2 ------------=_1646923742-19308-5-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54315: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-4-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54315 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54315@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923742-19308-7" This is a multi-part message in MIME format... ------------=_1646923742-19308-7 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 03/10] gnu: Fix sbcl-xsubseq tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54315@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923742-19308-7 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923742-19308-7 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:25 +0000 Received: from localhost ([127.0.0.1]:60790 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2v3-00087l-0s for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:25 -0500 Received: from lists.gnu.org ([209.51.188.17]:52668) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2v2-00087f-EL for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:24 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33778) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2v2-0006NH-9M for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:24 -0500 Received: from knopi.disroot.org ([178.21.23.139]:40630) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2v0-00081t-Mp for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:24 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 5DA62400BC; Wed, 9 Mar 2022 21:28:21 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id 6n6Wch3PepBY; Wed, 9 Mar 2022 21:28:20 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857693; bh=VwnqA8qXUllHk+P09uvHecNNEetUqXXJMw+QfCU4lrc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=E8vp5WriIxpyFNvsiFOHXQDWtxz+vU0L+o0mLDjFdystoVMaF73XZrG9UwKGZeeQ4 ewSj82222JotsDdqji8bo3vvOhZ05EiuybiGBIHdqt95+rMdxbf2CXEPcpUQ9O/2g+ qMS3PCIfk3r8Yu6AcgJv++cMvcgmmX6wAjmxSLY2ux9zHen0Vb9fdCA1/X+yu6GN21 20mxtdXq3BmwWb2F8iJ8htmDnq5KqqXgzdx0NEWDE7qA/MlCH6JQvPVo4nqDBqwicW pS3iVL/kXqJgsTLnBjORwY5DO/hIz5/B/NHWV96wnakGXsySJPBcAvCAPWNDYFbmAb 3cMrr/QXD9kbA== To: guix-patches@gnu.org Subject: [PATCH 03/10] gnu: Fix sbcl-xsubseq tests Date: Wed, 9 Mar 2022 20:27:42 +0000 Message-Id: <20220309202749.2196-4-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 196e083..37a6e5a 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -4366,9 +4366,7 @@ Lisp. It is intended to be a replacement of PURI.") (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px")))) (build-system asdf-build-system/sbcl) (arguments - ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found, - ;; required by #. Why? - '(#:tests? #f)) + '(#:asd-systems '("xsubseq-test" "xsubseq"))) (native-inputs (list sbcl-prove)) (home-page "https://github.com/fukamachi/xsubseq") -- 2.30.2 ------------=_1646923742-19308-7-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54316: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-5-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54316 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54316@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923742-19308-9" This is a multi-part message in MIME format... ------------=_1646923742-19308-9 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 04/10] gnu: Fix sbcl-smart-buffer tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54316@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923742-19308-9 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923742-19308-9 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:28 +0000 Received: from localhost ([127.0.0.1]:60793 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2v6-000881-8R for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:52670) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2v5-00087u-6r for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:27 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33808) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2v4-0006NQ-NR for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:27 -0500 Received: from knopi.disroot.org ([178.21.23.139]:41246) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2v3-00082G-3L for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:26 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id B46D7400BD; Wed, 9 Mar 2022 21:28:23 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id szQu_oVT1bZq; Wed, 9 Mar 2022 21:28:22 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857696; bh=Mln3G00sEr6cl6KFthLNqmkxTdMvsZFRd9jSeHDU4zA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=M1uJYyes22j2oTRBNIAS4vP6MQbDLHAQNXNle6SH2fiMFo3kPXUhL9BbpkifzVuUz N3azydqJLXiTudPu4KaSvrNVU13cchba4VkE/JuzdBVdi9YJ/PHphd/RIp0aAu2VZz SWvdgF1BQOdfKXDMRrRMy7eR0b0NZjbpxLHAktoXiWoLO+adDxoafAhGll27S1A6oC ZxT+17yiDrTZRZFTU1Tg53x7wjpQtJdka9tfXwUtiCtAl3H++cV6wRNTxa3TZbmYqA Md7krPt01TwTb8J1qpdDTp1SKhQORlCXqRhXnwXeH38rgAtTD5vcosD/gFBaw4IFMT dCQlFH4/jumiQ== To: guix-patches@gnu.org Subject: [PATCH 04/10] gnu: Fix sbcl-smart-buffer tests Date: Wed, 9 Mar 2022 20:27:43 +0000 Message-Id: <20220309202749.2196-5-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 37a6e5a..73ed1bc 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -4399,11 +4399,10 @@ effieiently.") (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7")))) (build-system asdf-build-system/sbcl) (arguments - ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not - ;; found, required by #. Why? - `(#:tests? #f)) + '(#:asd-systems '("smart-buffer-test" "smart-buffer"))) (native-inputs - (list sbcl-prove)) + (list sbcl-prove + sbcl-babel)) (inputs (list sbcl-xsubseq sbcl-flexi-streams)) (home-page "https://github.com/fukamachi/smart-buffer") -- 2.30.2 ------------=_1646923742-19308-9-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54317: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-6-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54317 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54317@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923743-19308-11" This is a multi-part message in MIME format... ------------=_1646923743-19308-11 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 05/10] gnu: Fix sbcl-fast-http tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54317@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923743-19308-11 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923743-19308-11 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:32 +0000 Received: from localhost ([127.0.0.1]:60796 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vA-00088I-Ez for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:32 -0500 Received: from lists.gnu.org ([209.51.188.17]:52672) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2v9-00088B-Ci for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:31 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33846) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2v9-0006NX-7U for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:31 -0500 Received: from knopi.disroot.org ([178.21.23.139]:42798) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2v7-00082p-S9 for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:30 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id CB010400B7; Wed, 9 Mar 2022 21:28:28 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id 49ZOph4XtZZ2; Wed, 9 Mar 2022 21:28:27 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857699; bh=Ybq9NkBjnbQQ8wHtDKjMfCzHSv9MQJkdjc5LvQeacOc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=JkTuMPO6LV++/xXIyNebJbyEwXYVDn7bNM+VF8Cq2kOt25AX/hIJQQzfzNvv2+yM0 vPWWy1x7K9W74tlJTcyzqRGZabrysbfznoGIeKB04tX/sb+u/4H8jNFXBMTYq164ye mTcePGZD2vm28wGZseX5vdbmCFkXsrqL37KrRwBxEDfx/7KcatTBFeT7742nQLY+Lz U9I/TCWMVecvhkyAE2u6bfqzOufOFrN6E+SN83hr5hfVrXs4riiX7RvGxpyfCSkKua rFrfjXAdM0B8gKvvZ+b5DhpAlpv7hg840cNKpJTtivZ0ijDxRuD27QIyYR6e4r7O25 UgCJqYr7mYhlg== To: guix-patches@gnu.org Subject: [PATCH 05/10] gnu: Fix sbcl-fast-http tests Date: Wed, 9 Mar 2022 20:27:44 +0000 Message-Id: <20220309202749.2196-6-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 73ed1bc..560937d 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -4435,9 +4435,7 @@ depending on content size.") (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi")))) (build-system asdf-build-system/sbcl) (arguments - ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found, - ;; required by #. Why? - `(#:tests? #f)) + '(#:asd-systems '("fast-http-test" "fast-http"))) (native-inputs `(("sbcl-prove" ,sbcl-prove) ("cl-syntax" ,sbcl-cl-syntax))) -- 2.30.2 ------------=_1646923743-19308-11-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54318: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-7-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54318 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54318@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923743-19308-13" This is a multi-part message in MIME format... ------------=_1646923743-19308-13 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 06/10] gnu: Fix sbcl-http-body tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54318@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923743-19308-13 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923743-19308-13 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:36 +0000 Received: from localhost ([127.0.0.1]:60799 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vE-00088c-Lf for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:36 -0500 Received: from lists.gnu.org ([209.51.188.17]:52674) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vD-00088V-DX for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:35 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33882) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vD-0006Nf-7h for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:35 -0500 Received: from knopi.disroot.org ([178.21.23.139]:43714) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vB-00083U-Pb for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:34 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id A62CA400BE; Wed, 9 Mar 2022 21:28:32 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id jFnfdqnUK2GG; Wed, 9 Mar 2022 21:28:31 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857702; bh=WxAAcJJ1GW+gGtyWpdhmnUVxkyiXeX/KWzMQPCDKFCU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DMNEo3PO62OZSwsjdEFOVK02nviKghE8M+F+jdkz8n/vLJmDGbayxscUoV5mk0/dh 411Uwi7ksNDWIzVVjqNq7svgRr3a0vJL4n8z0oG3vi0PT8FD1ghkeKfZQFf5TRGO0n xzt0R18hgGJwIgfFRb7/IfVZQozf6sTgcKX1yKXRoiDH9ATiO9K+J2zB1r5yqmPIun sOiuy11wW3y90Wl8HStt1Rqhnot7wtdn1TxW/b46vIRi4+F4ouPk78YYjEgBjTJAi1 3mIaZh3CgAOmVJDbi7URMc231+irjNxKfd/Ul6abJ9a57htJ0BNFXKlAXzrKwF0Ry9 phqeZAurSA6uw== To: guix-patches@gnu.org Subject: [PATCH 06/10] gnu: Fix sbcl-http-body tests Date: Wed, 9 Mar 2022 20:27:45 +0000 Message-Id: <20220309202749.2196-7-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 560937d..445456a 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -4612,11 +4612,9 @@ CCL.") (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0")))) (build-system asdf-build-system/sbcl) (arguments - ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not - ;; found, required by #. Why? - `(#:tests? #f)) + '(#:asd-systems '("http-body-test" "http-body"))) (native-inputs - (list sbcl-prove)) + (list sbcl-prove sbcl-trivial-utf-8)) (inputs (list sbcl-fast-http sbcl-jonathan sbcl-quri)) (home-page "https://github.com/fukamachi/http-body") -- 2.30.2 ------------=_1646923743-19308-13-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54319: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-8-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54319 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54319@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923743-19308-15" This is a multi-part message in MIME format... ------------=_1646923743-19308-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 07/10] gnu: Fix sbcl-cl-cookie tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54319@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923743-19308-15 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923743-19308-15 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:40 +0000 Received: from localhost ([127.0.0.1]:60804 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vH-000894-TX for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:40 -0500 Received: from lists.gnu.org ([209.51.188.17]:52676) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vF-00088k-PL for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:38 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33912) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vF-0006Nw-Jc for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:37 -0500 Received: from knopi.disroot.org ([178.21.23.139]:44354) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vE-00083k-6i for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:37 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 429AF40060; Wed, 9 Mar 2022 21:28:35 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id E9_6vVay9Nyp; Wed, 9 Mar 2022 21:28:34 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857705; bh=JaU3N9adQUsk4jGudvupylwxLlr/N/B2tHu4a3oG4BY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=gdp8QhqYMSG+pbZBPu+rryL35GlGc2Ipmg7wTYUzlN7qQPjXgwFSWdlSimx2PdInW Dc8IpEeBqpzYafCNtqQ6h2NrHBpU0kEbKeeXjE6IUtQVe55m7JF22wQMa1PQdq5WwG k/N8MhtPjuGmmenXeEyMwovP3xZpZxBNKhS9FcHqDawoHBAAuxuNHiAtgfNr6TJ81h 8Vej8dI8j1nFdeSw7EWoL0Tr2E+1UlTWd5WPGWpdwSvCK5WLtnJLxDyeb4R7UCvI7o TFxxXXE2M7eKJ6rnXDiUAHgEOs+3UA8n3yJHuEhurHdogNjMzsoS4I/jYg/G5rRUIM LbqkRSksVIdUg== To: guix-patches@gnu.org Subject: [PATCH 07/10] gnu: Fix sbcl-cl-cookie tests Date: Wed, 9 Mar 2022 20:27:46 +0000 Message-Id: <20220309202749.2196-8-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 445456a..e3fac90 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -5841,8 +5841,7 @@ cookie headers, cookie creation, cookie jar creation and more.") (native-inputs (list sbcl-prove)) (arguments - ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test. - `(#:tests? #f)) + '(#:asd-systems '("cl-cookie-test" "cl-cookie"))) (synopsis "HTTP cookie manager for Common Lisp") (description "cl-cookie is a Common Lisp library featuring parsing of cookie headers, cookie creation, cookie jar creation and more.") -- 2.30.2 ------------=_1646923743-19308-15-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54320: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-9-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54320 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54320@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923743-19308-17" This is a multi-part message in MIME format... ------------=_1646923743-19308-17 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 08/10] gnu: Fix sbcl-mito tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54320@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923743-19308-17 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923743-19308-17 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:41 +0000 Received: from localhost ([127.0.0.1]:60807 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vJ-00089I-3d for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:41 -0500 Received: from lists.gnu.org ([209.51.188.17]:52680) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vG-00088r-TL for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:39 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33942) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vG-0006O3-O6 for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:38 -0500 Received: from knopi.disroot.org ([178.21.23.139]:44712) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vF-00083p-DT for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:38 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 592CC400AE; Wed, 9 Mar 2022 21:28:36 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id z5ZergHQ2H9D; Wed, 9 Mar 2022 21:28:35 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857708; bh=dQwx4UErL6RIEmnaW6QHZLWvJ+vWNrDO7gdG95RsYT8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=MCtY/7gBsy8u+Pit9cEu5mtbzQU3U0Rg4TJ5aAD2Gk/yCqFp1FoBPYFp2/EluIJZH DPg8/NCgLk1Y5q1/1V1bChBvVFaTbZ9ytIQM/X6yPyPel74OjBhTz3znc+sQs5MSdN PRCyEyEJ0skk3Z5Ga9kv5bEVDYSuKMTCBSPC+1kj6gWYmLHJ3UsMKtSwzEIr9H1CbV pRvh+h7wJ9d5QKyMIJL+OaqjrtP1zTp315Q7Kvedhky7lhqa8PzxOgOqxQHyIrGdDC TCER6GMcNwozJSMltUxDSuO+nKWz61thoiwxoIticK4OrfJwZowk6/PdXnSaBfj2B/ 9SNJXUieefF0g== To: guix-patches@gnu.org Subject: [PATCH 08/10] gnu: Fix sbcl-mito tests Date: Wed, 9 Mar 2022 20:27:47 +0000 Message-Id: <20220309202749.2196-9-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index e3fac90..af8ea66 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -12226,9 +12226,7 @@ can separate configuration system from an implementation.") (("\\(:test-file \"postgres-types\"\\)") "") (("\\(:test-file \"mixin\"\\)") "")) #t))) - ;; TODO: While all enabled tests pass, the phase fails with: - ;; Component MITO-ASD::MITO-TEST not found, required by # - #:tests? #f)) + #:asd-systems '("mito-test" "mito"))) (synopsis "ORM for Common Lisp with migrations and relationships support") (description "Mito is yet another object relational mapper, and it aims to be a successor of Integral. -- 2.30.2 ------------=_1646923743-19308-17-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54321: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-10-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54321 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54321@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:04 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923744-19308-19" This is a multi-part message in MIME format... ------------=_1646923744-19308-19 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 09/10] gnu: Fix sbcl-cl-locale tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54321@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923744-19308-19 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923744-19308-19 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:41 +0000 Received: from localhost ([127.0.0.1]:60809 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vJ-00089K-BN for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:41 -0500 Received: from lists.gnu.org ([209.51.188.17]:52682) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vH-00088x-B6 for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:39 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33954) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vH-0006OF-5q for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:39 -0500 Received: from knopi.disroot.org ([178.21.23.139]:44900) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vF-00083w-Si for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:38 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id DD3EF400B6; Wed, 9 Mar 2022 21:28:36 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id N7sLeOdBW20I; Wed, 9 Mar 2022 21:28:35 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857712; bh=rqvQPv0/ipVIkzD8Z5zaWNyeqnqbVvdwsOIq6TdIysE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=aCzKmyAkBhBmvdhIdHqhuEcXFLKO3gLcatqlWTghJySTadH4bqR2Nndu2fy/t7WI+ nbDJWLekEueziT07tIpUa1u2rjskO8cb6jxRv1wWD8LWcFNkxvFmKESWRLvcomI59x p7X85dmHJUchwQWZ0OW7mKpWMCbUfNy8zIi0EaN/zwU4sVTkbbTl589LAS72Q3FKPV 7dLkGeT+QONLXeF9TxJS+5wvXXTiq0qpgINYPgndYF35Ck7HT0ZYIIlBv6d6LhCj14 QztQyLx4I7sMAnGoMk4wHVQBSfZbMJYCAF4aHm5y0CCrATjIWdCcxgVQh2tv9lyhsu td4MSHfkYRumw== To: guix-patches@gnu.org Subject: [PATCH 09/10] gnu: Fix sbcl-cl-locale tests Date: Wed, 9 Mar 2022 20:27:48 +0000 Message-Id: <20220309202749.2196-10-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index af8ea66..6ff7606 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -16581,17 +16581,7 @@ combinators in Common Lisp, similar in concept to Haskell Parsec system.") (base32 "1rhannhpsw1yg1fpflam483a3w9qb1izgyvmnmiddv3dn4qsmn9p")))) (build-system asdf-build-system/sbcl) (arguments - ;; FIXME: (Sharlatan-20210523T190658+0100): All tests passed ok but - ;; successfully failed in the end: - ;; - ;; Summary: - ;; All 1 file passed. - ;; Unhandled ASDF/FIND-COMPONENT:MISSING-DEPENDENCY - ;; in thread #: - ;; Component CL-LOCALE-ASD::CL-LOCALE-TEST not found, required by - ;; # - ;; - `(#:tests? #f)) + '(#:asd-systems '("cl-locale-test" "cl-locale"))) (native-inputs `(("prove" ,sbcl-prove) ("flexi-streams" ,sbcl-flexi-streams))) -- 2.30.2 ------------=_1646923744-19308-19-- From unknown Tue Jun 17 01:27:27 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Aurora Subject: bug#54322: closed (Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages) Message-ID: References: <877d91vp7q.fsf@kitej> <20220309202749.2196-11-rind38@disroot.org> X-Gnu-PR-Message: they-closed 54322 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54322@debbugs.gnu.org Date: Thu, 10 Mar 2022 14:49:04 +0000 Content-Type: multipart/mixed; boundary="----------=_1646923744-19308-21" This is a multi-part message in MIME format... ------------=_1646923744-19308-21 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54312: [PATCH 10/10] gnu: Fix sbcl-assoc-utils tests which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54322@debbugs.gnu.org. --=20 54312: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54312 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646923744-19308-21 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54312-done) by debbugs.gnu.org; 10 Mar 2022 14:48:05 +0000 Received: from localhost ([127.0.0.1]:33607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5E-000504-Vb for submit@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:05 -0500 Received: from mout01.posteo.de ([185.67.36.65]:59377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nSK5C-0004zX-A9 for 54312-done@debbugs.gnu.org; Thu, 10 Mar 2022 09:48:03 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF5F3240028 for <54312-done@debbugs.gnu.org>; Thu, 10 Mar 2022 15:47:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1646923675; bh=b5R1RvC0nxsJ3Av3dkI7VZuyUkFnOcLdw79BigixBhQ=; h=From:To:Cc:Subject:Date:From; b=oT5PQk/d22AUivsQjxVWuro13CHqPavobeA08BK3fSKtdnbAIaBDNhL3hnJgr2/hS /LB7q4U64YOheyMTZ037eeF0N0WJcfjxb1jyHg1leka7uRvG6Og1EIJhHH1eb34RBg NgR1RcbBUd44pWf44paKU65bGyZSyXqkA80uGrjsQ4cs+bR2h+Mt9hodXYRDXWFiEi EWQ1SXEGxv5JvQYG+48jNZD83EvTkIay+YY3gjJjxI+E/YDIVyLti6EWrq7KLixD+P zAJA336mJfSu+ns1tIQ+m4eT3WhZeQzrMBpLY2LEjBhF2Niscby+DXT5FDtmTAS1ai j7Qs3l8axN3lQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KDsP65YMlz9rwn; Thu, 10 Mar 2022 15:47:54 +0100 (CET) References: <20220309202749.2196-1-rind38@disroot.org> <878rtiemy6.fsf@disp3269> From: Guillaume Le Vaillant To: Aurora Subject: Re: [bug#54312] [PATCH 00/10] Fix tests for a number of Fukamachi CL packages Date: Thu, 10 Mar 2022 14:46:23 +0000 In-reply-to: <878rtiemy6.fsf@disp3269> Message-ID: <877d91vp7q.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: 54312-done Cc: 54312-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 I modified the commit messages to use our standard format, and pushed the patch series as bbd1d7f975039589668554e2ec7d5bead72c85b1 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYioPmQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+7twD+JDaCWsg7ig2ARiYqcOG6LwqS/OiF+L6yBJcM t/LvCn8BAKEEM8qpvoqNZBejATyhWPK+6BthGioGcNws95aXfnwV =2WD0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1646923744-19308-21 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Mar 2022 20:28:44 +0000 Received: from localhost ([127.0.0.1]:60811 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vL-00089Y-Ks for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:52684) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nS2vI-00089B-Ga for submit@debbugs.gnu.org; Wed, 09 Mar 2022 15:28:40 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33978) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vI-0006Pf-BY for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:40 -0500 Received: from knopi.disroot.org ([178.21.23.139]:45128) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nS2vG-00084H-ND for guix-patches@gnu.org; Wed, 09 Mar 2022 15:28:40 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id A3FC640060; Wed, 9 Mar 2022 21:28:37 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id Lq_CsXw50Q8m; Wed, 9 Mar 2022 21:28:36 +0100 (CET) From: Aurora DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1646857715; bh=9UCsH3LIY0/8qPDVvFzeoqciBkHACj92JsFNYGFWKqA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=hT8YfUX95Oho/AJJKGzmRsLd6hWiiYDwVFTFUtj6fapi/AAU+3OWJcv1U0zr28BuY bLrvwBGbqfqU/y0rHxNjNJjhjqSvICWJzrineVAZARfUzmds+r6JDJA4cxghKgaQfM Gc5/wyt+n8ruUWV8FYwLkmuXhaPA2gyX9YVDodb3AAPWHuNm7JIeuZntCm0d832z3R bJIislyQxgHPLwEG5hScDABOx0X2YNhtpmFw7po3c57DzhKUkirbD/cXz2p7FJEldn 8+Xe9nTME41UUTqXingBkLSbfnMbro1+GMGLnXN6hwecca6jfax8Dcm7+K6zKr/Sdk e7lihlUm8m/KA== To: guix-patches@gnu.org Subject: [PATCH 10/10] gnu: Fix sbcl-assoc-utils tests Date: Wed, 9 Mar 2022 20:27:49 +0000 Message-Id: <20220309202749.2196-11-rind38@disroot.org> In-Reply-To: <20220309202749.2196-1-rind38@disroot.org> References: <20220309202749.2196-1-rind38@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=rind38@disroot.org; helo=knopi.disroot.org 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: Aurora 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 | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 6ff7606..8c27339 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -17255,15 +17255,7 @@ computing and event based message handling.") (base32 "1yac1v7zmdxj0p6rvwrrhyqvy7yjfhmqbchkwqhhr89gpjvvaick")))) (build-system asdf-build-system/sbcl) (arguments - ;; All test cases pass, but tests successfully fail at the end: - ;; - ;; Summary: - ;; All 1 file passed. - ;; Unhandled ASDF/FIND-COMPONENT:MISSING-DEPENDENCY in thread - ;; #: - ;; Component ASSOC-UTILS-ASD::ASSOC-UTILS-TEST not found, required by - ;; # - `(#:tests? #f)) + '(#:asd-systems '("assoc-utils-test" "assoc-utils"))) (native-inputs (list sbcl-prove)) (home-page "https://github.com/fukamachi/assoc-utils") -- 2.30.2 ------------=_1646923744-19308-21--