From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44986) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fMfiR-0008IJ-Rh for guix-patches@gnu.org; Sat, 26 May 2018 16:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fMfiQ-00081x-OS for guix-patches@gnu.org; Sat, 26 May 2018 16:23:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42039) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fMfiQ-00081p-JW for guix-patches@gnu.org; Sat, 26 May 2018 16:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fMfiQ-0003ic-EL for guix-patches@gnu.org; Sat, 26 May 2018 16:23:02 -0400 Subject: bug#31494: [PATCH] gnu: gifsicle: New variable. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180518150002.24615-1-ambrevar@gmail.com> <87muwvnzk7.fsf@gnu.org> <87bmdawmty.fsf@gmail.com> Date: Sat, 26 May 2018 22:22:04 +0200 In-Reply-To: <87bmdawmty.fsf@gmail.com> (Pierre Neidhardt's message of "Sun, 20 May 2018 14:09:13 +0200") Message-ID: <87h8muyxoz.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Pierre Neidhardt Cc: 31494-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Pierre Neidhardt skribis: > * gnu/packages/image.scm (gifsicle): New variable. Applied with the minor changes below, in line with . Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 752815c58..d6c39e5c7 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1426,29 +1426,25 @@ in-memory raw vectors.") (("/bin/sh") (which "sh")) (("/bin/rm") - (which "rm")))))))) + (which "rm"))) + #t))))) (native-inputs `(("perl" ,perl))) ; Only for tests. (inputs `(("libx11" ,libx11))) (home-page "http://www.lcdf.org/gifsicle/") (synopsis "Edit GIF images and animations") - (description "Gifsicle is a commandline GIF swiss-army knife. Features: + (description "Gifsicle is a command-line GIF image manipulation tool that: + @itemize -@item Batch mode for changing GIFs in place. +@item Provides a batch mode for changing GIFs in place. @item Prints detailed information about GIFs, including comments. -@item Control over interlacing, comments, looping, transparency... +@item Control over interlacing, comments, looping, transparency, etc. @item Creates well-behaved GIFs: removes redundant colors, only uses local color -tables if it absolutely has to (local color tables waste space and can cause -viewing artifacts), etc. -@item It can shrink colormaps and change images to use the Web-safe palette (or -any colormap you choose). -@item Optimize your animations! This stores only the changed portion of each -frame, and can radically shrink your GIFs. You can also use transparency to -make them even smaller. Gifsicle's optimizer is pretty powerful, and usually -reduces animations to within a couple bytes of the best commercial optimizers. -@item Unoptimizing animations, which makes them easier to edit. +tables, etc. +@item Shrinks colormaps and change images to use the Web-safe palette. +@item Optimizes GIF animations, or unoptimizes them for easier editing. @end itemize -Two other programs are included with Gifsicle: @code{gifview} is a lightweight -animated-GIF viewer which can show animations as slideshows or in real time, -and @code{gifdiff} compares two GIFs for identical visual appearance.") +Two other programs are included with Gifsicle: @command{gifview} is a +lightweight animated-GIF viewer, and @command{gifdiff} compares two GIFs for +identical visual appearance.") (license license:gpl2+))) --=-=-=--