From unknown Sun Aug 10 16:48:20 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#64361 <64361@debbugs.gnu.org> To: bug#64361 <64361@debbugs.gnu.org> Subject: Status: [PATCH] gnu: python-wand: Fix build. Reply-To: bug#64361 <64361@debbugs.gnu.org> Date: Sun, 10 Aug 2025 23:48:20 +0000 retitle 64361 [PATCH] gnu: python-wand: Fix build. reassign 64361 guix-patches submitter 64361 Hilton Chain severity 64361 normal tag 64361 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 30 03:57:49 2023 Received: (at submit) by debbugs.gnu.org; 30 Jun 2023 07:57:49 +0000 Received: from localhost ([127.0.0.1]:54484 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qF90m-0001v1-O3 for submit@debbugs.gnu.org; Fri, 30 Jun 2023 03:57:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:50190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qF90i-0001up-Fg for submit@debbugs.gnu.org; Fri, 30 Jun 2023 03:57:47 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qF90i-0007Xx-6p for guix-patches@gnu.org; Fri, 30 Jun 2023 03:57:44 -0400 Received: from mail.boiledscript.com ([144.168.59.46]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qF90g-00075y-Jo for guix-patches@gnu.org; Fri, 30 Jun 2023 03:57:43 -0400 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1688111648; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=O420prIqbasTuppcrwT1vHds0POCz1/QLt09Jb72wp0=; b=g4QalqSMybhC6gCMebO7DgZpRzJSuLLLgJP441obFzteLtHGSNz/UjJfz9Xsn1r6RtBp8B KIheZm0q8NBdSVRZPY5QTJ7E5Z5b5/wqU4CjQ6PuLeXm8Qf1YlFL9nQR9rBmsfhQHGp/5P EuT1zFXCg5IWONw63oF9H3Pc8N6p/tJQSHU5S3DoIGiq8nOE8FzgNI2rZSiKmhpHlagX2w 9y5v7hFqxu6J7guEExxKQaUdmtN97q9ZtbqeOZYAz1WQIzYGzQUAbNGo80x0tYXyIcODpH 6jYlOZL05VNK09cS78c7z/71GvnEg7KrbBToSeqhz9AA1h21YtmkcE/S8bIYZw== To: guix-patches@gnu.org Subject: [PATCH] gnu: python-wand: Fix build. Date: Fri, 30 Jun 2023 15:56:45 +0800 Message-Id: <45dbedbb4a398f7aa1f857e4944aaa6d721b78fa.1688111652.git.hako@ultrarare.space> MIME-Version: 1.0 X-Debbugs-Cc: Lars-Dominik Braun , jgart Content-Transfer-Encoding: 8bit X-Spamd-Bar: + Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space X-Spam-Level: * Received-SPF: pass client-ip=144.168.59.46; envelope-from=hako@ultrarare.space; helo=mail.boiledscript.com 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.3 (-) X-Debbugs-Envelope-To: submit Cc: Hilton Chain , Thorsten Wilms X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Fixes . * gnu/packages/python-xyz.scm (python-wand)[arguments]<#:phases>: Pass tests? to 'check. Reported-by: Thorsten Wilms --- gnu/packages/python-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c4105c4685..bf0ccfe07b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2445,7 +2445,7 @@ (define-public python-wand (setenv "MAGICK_HOME" (assoc-ref inputs "imagemagick")) (setenv "WAND_MAGICK_LIBRARY_SUFFIX" ".Q16"))) (replace 'check - (lambda _ + (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv"))))))) (native-inputs base-commit: 94ac93042f09b4ba68b7b64ed1feeebd3dab1ea4 -- 2.40.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 17 08:44:09 2023 Received: (at 64361) by debbugs.gnu.org; 17 Jul 2023 12:44:10 +0000 Received: from localhost ([127.0.0.1]:49363 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qLNaD-0004Ck-Mb for submit@debbugs.gnu.org; Mon, 17 Jul 2023 08:44:09 -0400 Received: from mail.boiledscript.com ([144.168.59.46]:45868) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qLNaB-0004Cb-0W for 64361@debbugs.gnu.org; Mon, 17 Jul 2023 08:44:08 -0400 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1689597593; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=sHzNZSnumH3P1gXEP2EG/4m3uFCBWuZywWoxx8qEDX4=; b=UfWUt7V3ykXEns4QUTBkeuEvxyUz77HRK2S4HNiCKyxqvikbjRiQU1Mf2z5ZaXlhftB3gt GRDRSdHA3JrHJTpFC9LRiaF6ouxSQHMx/ijdyKJ7vLb+z6aM1E9jcOfNcVTK3jGaWjeWpX Wr1IBfFs9TvNFlzjdBmMhGCaVgHhLlATxtEp/w9iWlJ/2uew+lCJrflWr2mh34BGR3UQbF J185vYras/F4HXTcEjTJLb97defJ23PaxTuoa/eaWyFF0tFr+LDzHDZLa6m5XY93LoyIHL NnwPFEDvAZi9JY+Xcwfx5lQ7sKDx27z3tiyeZYpjtF6cBBvsoFNirY6oQi6jTg== To: 64361@debbugs.gnu.org Subject: [PATCH v2] gnu: python-wand: Honor #:tests? argument. Date: Mon, 17 Jul 2023 20:43:55 +0800 Message-ID: In-Reply-To: <"45dbedbb4a398f7aa1f857e4944aaa6d721b78fa.1688111652.git.hako@ultrarare.space"> References: <"45dbedbb4a398f7aa1f857e4944aaa6d721b78fa.1688111652.git.hako@ultrarare.space"> MIME-Version: 1.0 X-Debbugs-Cc: Lars-Dominik Braun , jgart Content-Transfer-Encoding: 8bit X-Spamd-Bar: + Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space X-Spam-Level: * X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 64361 Cc: Hilton Chain 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 (-) Fixes . * gnu/packages/python-xyz.scm (python-wand)[arguments]<#:phases>: Pass keyword argument #:tests? to 'check. Reported-by: Thorsten Wilms --- gnu/packages/python-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 973216c5ed..f07ae0b1f9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2446,7 +2446,7 @@ (define-public python-wand (setenv "MAGICK_HOME" (assoc-ref inputs "imagemagick")) (setenv "WAND_MAGICK_LIBRARY_SUFFIX" ".Q16"))) (replace 'check - (lambda _ + (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv"))))))) (native-inputs base-commit: ad08f9331fee7a8e71e94b02f86f54ab3e1001a8 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 19 00:45:52 2023 Received: (at 64361-done) by debbugs.gnu.org; 19 Jul 2023 04:45:52 +0000 Received: from localhost ([127.0.0.1]:54677 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qLz4S-00009W-D0 for submit@debbugs.gnu.org; Wed, 19 Jul 2023 00:45:52 -0400 Received: from smtpm4.myservices.hosting ([185.26.105.235]:35652) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qLz4O-00009F-99; Wed, 19 Jul 2023 00:45:50 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm4.myservices.hosting (Postfix) with ESMTP id 9C3B020C93; Wed, 19 Jul 2023 06:45:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 12CCC80098; Wed, 19 Jul 2023 06:45:44 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id XQ5oVJcAFOeo; Wed, 19 Jul 2023 06:45:43 +0200 (CEST) Received: from [192.168.1.116] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 7F11580097; Wed, 19 Jul 2023 06:45:43 +0200 (CEST) Message-ID: <14fa06c8-e204-f451-b21e-22ac4a751248@makinata.eu> Date: Wed, 19 Jul 2023 05:45:32 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0 Subject: Re: [bug#64361] [PATCH v2] gnu: python-wand: Honor #:tests? argument. Content-Language: en-US To: Hilton Chain References: <"45dbedbb4a398f7aa1f857e4944aaa6d721b78fa.1688111652.git.hako@ultrarare.space"> From: Bruno Victal In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: 64361-done Cc: Tobias Geerinckx-Rice , 64361-done@debbugs.gnu.org, 64350-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: -1.1 (-) Fixed with 13cb9b302868b5a966a6ae177412c474084f4bf1. -- Furthermore, I consider that nonfree software must be eradicated. Cheers, Bruno. From unknown Sun Aug 10 16:48:20 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 16 Aug 2023 11:24:10 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator