From unknown Wed Jun 18 00:26:19 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#53403 <53403@debbugs.gnu.org> To: bug#53403 <53403@debbugs.gnu.org> Subject: Status: [PATCH core-updates] gnu: imagemagick: Add missing input. Reply-To: bug#53403 <53403@debbugs.gnu.org> Date: Wed, 18 Jun 2025 07:26:19 +0000 retitle 53403 [PATCH core-updates] gnu: imagemagick: Add missing input. reassign 53403 guix-patches submitter 53403 SeerLite severity 53403 normal tag 53403 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 20 19:07:17 2022 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 From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 26 17:32:16 2022 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 From unknown Wed Jun 18 00:26:19 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 24 Feb 2022 12:24:04 +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