From unknown Fri Aug 08 23:32:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53403] [PATCH core-updates] gnu: imagemagick: Add missing input. Resent-From: SeerLite Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 21 Jan 2022 00:08:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 53403 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 53403@debbugs.gnu.org Cc: SeerLite X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164272363720014 (code B ref -1); Fri, 21 Jan 2022 00:08:01 +0000 Received: (at submit) by debbugs.gnu.org; 21 Jan 2022 00:07:17 +0000 Received: from localhost ([127.0.0.1]:59662 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAhSX-0005Ck-LM for submit@debbugs.gnu.org; Thu, 20 Jan 2022 19:07:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:39808) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAhST-0005CY-Vg for submit@debbugs.gnu.org; Thu, 20 Jan 2022 19:07:16 -0500 Received: from eggs.gnu.org ([209.51.188.92]:41176) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nAhST-0007Bj-IE for guix-patches@gnu.org; Thu, 20 Jan 2022 19:07:13 -0500 Received: from [2a03:4000:21:8a6::1] (port=47684 helo=mx.nixnet.email) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nAhSR-0008Fn-Du for guix-patches@gnu.org; Thu, 20 Jan 2022 19:07:13 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mx.nixnet.email (Postfix) with ESMTPSA id AA7B7200588; Thu, 20 Jan 2022 19:07:06 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nixnet.email; s=202002021149; t=1642723627; h=from:from:reply-to:subject:subject:to:to:cc:cc; bh=aIv7AXiC8ghtwlSXHPECLimcW+WPJesz4dhj+4/l3gc=; b=eUPMgVji3nsI+VBjhL/EIVto8kchK1zwXgbhUrcDjKpHJOPOqGBrIjsUDs8seXA6r6b/9q f8VRnvqA0rtmCbzsoyhCT9tpUGOzlk7xtusmmLywtjHr6IF7Cl+LuC6tkux5Fem5pGe4oN TUO+AOB2m6LI5DyXEMSJxjC6ihSpbdw= From: SeerLite Date: Thu, 20 Jan 2022 21:06:18 -0300 Message-Id: <20220121000617.22524-1-seerlite@nixnet.email> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a03:4000:21:8a6::1 (failed) Received-SPF: pass client-ip=2a03:4000:21:8a6::1; envelope-from=seerlite@nixnet.email; helo=mx.nixnet.email X-Spam_score_int: -12 X-Spam_score: -1.3 X-Spam_bar: - X-Spam_report: (-1.3 / 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, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no 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 (--) Fixes . * gnu/packages/imagemagick.scm (imagemagick/stable)[inputs]: Add libwebp and remove labels. --- gnu/packages/imagemagick.scm | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm index 06ed80cbac..92e89a55a7 100644 --- a/gnu/packages/imagemagick.scm +++ b/gnu/packages/imagemagick.scm @@ -113,20 +113,22 @@ (define-public imagemagick/stable "not recorded")) #t))))) ;; TODO: Add Jasper etc. - (inputs `(("fftw" ,fftw) - ("graphviz" ,graphviz) - ("ghostscript" ,ghostscript) - ("lcms" ,lcms) - ("libx11" ,libx11) - ("zlib" ,zlib) - ("libxml2" ,libxml2) - ("libtiff" ,libtiff) - ("libpng" ,libpng) - ("libjpeg" ,libjpeg-turbo) - ("pango" ,pango) - ("freetype" ,freetype) - ("bzip2" ,bzip2) - ("xz" ,xz))) + (inputs + (list fftw + graphviz + ghostscript + lcms + libx11 + zlib + libxml2 + libtiff + libpng + libjpeg-turbo + libwebp + pango + freetype + bzip2 + xz)) (native-inputs (list pkg-config)) (outputs '("out" "doc")) ; 26 MiB of HTML documentation -- 2.34.0 From unknown Fri Aug 08 23:32:12 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: SeerLite Subject: bug#53403: closed () Message-ID: References: <0f2b86fe-5496-1ff0-4e44-45b8af16091f@nixnet.email> <20220121000617.22524-1-seerlite@nixnet.email> X-Gnu-PR-Message: they-closed 53403 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 53403@debbugs.gnu.org Date: Wed, 26 Jan 2022 22:33:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1643236381-25276-1" This is a multi-part message in MIME format... ------------=_1643236381-25276-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #53403: [PATCH core-updates] gnu: imagemagick: Add missing input. 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 53403@debbugs.gnu.org. --=20 53403: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D53403 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1643236381-25276-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 53403-done) by debbugs.gnu.org; 26 Jan 2022 22:32:16 +0000 Received: from localhost ([127.0.0.1]:53737 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nCqps-0006Yk-IZ for submit@debbugs.gnu.org; Wed, 26 Jan 2022 17:32:16 -0500 Received: from mx.nixnet.email ([94.16.121.167]:58778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nCqpq-0006YU-B8 for 53403-done@debbugs.gnu.org; Wed, 26 Jan 2022 17:32:14 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mx.nixnet.email (Postfix) with ESMTPSA id 633AF200196 for <53403-done@debbugs.gnu.org>; Wed, 26 Jan 2022 17:32:10 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nixnet.email; s=202002021149; t=1643236330; h=from:from:reply-to:subject:to:to:cc; bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=; b=fhk0DLhVXVACnqJMFCFdGNEB0aMSv+6PYviFRQCS/ObfT5CfdsYZMcA81y7JcGXQvv9cks qmyBGF1dJK5dWZH8Re+Kk2Vq2Cm6n2YCxkd0Apotq5AbdmtzpH4Sgi9QHQe2xTLj1OWHRI ggXjBpL9DwH0xOOoeBHL1y3NMEp0E04= Message-ID: <0f2b86fe-5496-1ff0-4e44-45b8af16091f@nixnet.email> Date: Wed, 26 Jan 2022 19:32:07 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: 53403-done@debbugs.gnu.org From: SeerLite Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 4.3 (++++) 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: Content analysis details: (4.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 2.3 EMPTY_MESSAGE Message appears to have no textual parts and no Subject: text 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: 53403-done 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 (+++) 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: Content analysis details: (3.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 2.3 EMPTY_MESSAGE Message appears to have no textual parts and no Subject: text 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager ------------=_1643236381-25276-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 21 Jan 2022 00:07:17 +0000 Received: from localhost ([127.0.0.1]:59662 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAhSX-0005Ck-LM for submit@debbugs.gnu.org; Thu, 20 Jan 2022 19:07:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:39808) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAhST-0005CY-Vg for submit@debbugs.gnu.org; Thu, 20 Jan 2022 19:07:16 -0500 Received: from eggs.gnu.org ([209.51.188.92]:41176) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nAhST-0007Bj-IE for guix-patches@gnu.org; Thu, 20 Jan 2022 19:07:13 -0500 Received: from [2a03:4000:21:8a6::1] (port=47684 helo=mx.nixnet.email) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nAhSR-0008Fn-Du for guix-patches@gnu.org; Thu, 20 Jan 2022 19:07:13 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mx.nixnet.email (Postfix) with ESMTPSA id AA7B7200588; Thu, 20 Jan 2022 19:07:06 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nixnet.email; s=202002021149; t=1642723627; h=from:from:reply-to:subject:subject:to:to:cc:cc; bh=aIv7AXiC8ghtwlSXHPECLimcW+WPJesz4dhj+4/l3gc=; b=eUPMgVji3nsI+VBjhL/EIVto8kchK1zwXgbhUrcDjKpHJOPOqGBrIjsUDs8seXA6r6b/9q f8VRnvqA0rtmCbzsoyhCT9tpUGOzlk7xtusmmLywtjHr6IF7Cl+LuC6tkux5Fem5pGe4oN TUO+AOB2m6LI5DyXEMSJxjC6ihSpbdw= From: SeerLite To: guix-patches@gnu.org Subject: [PATCH core-updates] gnu: imagemagick: Add missing input. Date: Thu, 20 Jan 2022 21:06:18 -0300 Message-Id: <20220121000617.22524-1-seerlite@nixnet.email> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a03:4000:21:8a6::1 (failed) Received-SPF: pass client-ip=2a03:4000:21:8a6::1; envelope-from=seerlite@nixnet.email; helo=mx.nixnet.email X-Spam_score_int: -12 X-Spam_score: -1.3 X-Spam_bar: - X-Spam_report: (-1.3 / 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, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: SeerLite 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 (--) Fixes . * gnu/packages/imagemagick.scm (imagemagick/stable)[inputs]: Add libwebp and remove labels. --- gnu/packages/imagemagick.scm | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm index 06ed80cbac..92e89a55a7 100644 --- a/gnu/packages/imagemagick.scm +++ b/gnu/packages/imagemagick.scm @@ -113,20 +113,22 @@ (define-public imagemagick/stable "not recorded")) #t))))) ;; TODO: Add Jasper etc. - (inputs `(("fftw" ,fftw) - ("graphviz" ,graphviz) - ("ghostscript" ,ghostscript) - ("lcms" ,lcms) - ("libx11" ,libx11) - ("zlib" ,zlib) - ("libxml2" ,libxml2) - ("libtiff" ,libtiff) - ("libpng" ,libpng) - ("libjpeg" ,libjpeg-turbo) - ("pango" ,pango) - ("freetype" ,freetype) - ("bzip2" ,bzip2) - ("xz" ,xz))) + (inputs + (list fftw + graphviz + ghostscript + lcms + libx11 + zlib + libxml2 + libtiff + libpng + libjpeg-turbo + libwebp + pango + freetype + bzip2 + xz)) (native-inputs (list pkg-config)) (outputs '("out" "doc")) ; 26 MiB of HTML documentation -- 2.34.0 ------------=_1643236381-25276-1--