From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56446) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gG7ZX-0006jP-B8 for guix-patches@gnu.org; Fri, 26 Oct 2018 15:15:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gG7ZW-0001qy-BR for guix-patches@gnu.org; Fri, 26 Oct 2018 15:15:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40094) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gG7ZW-0001qm-79 for guix-patches@gnu.org; Fri, 26 Oct 2018 15:15:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gG7ZW-0002Nv-14 for guix-patches@gnu.org; Fri, 26 Oct 2018 15:15:02 -0400 Subject: bug#33148: [PATCH] gnu: Add jp2a. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20181025102816.20497-1-contact@parouby.fr> Date: Fri, 26 Oct 2018 21:13:52 +0200 In-Reply-To: <20181025102816.20497-1-contact@parouby.fr> (Pierre-Antoine Rouby's message of "Thu, 25 Oct 2018 12:28:16 +0200") Message-ID: <87woq4bjwv.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-Antoine Rouby Cc: 33148-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Pierre-Antoine! Pierre-Antoine Rouby skribis: > * gnu/packages/image.scm: New variable. Applied with the minor changes below. 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 6e3c6cc18f..9bf9bd7e5e 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1511,7 +1511,8 @@ identical visual appearance.") version ".tar.gz")) (sha256 (base32 - "0nahpjvrahixcfqqrjj2k4fscc8qs4hqnmj2qgjzsjj3z6xxh2g5")))) + "0nahpjvrahixcfqqrjj2k4fscc8qs4hqnmj2qgjzsjj3z6xxh2g5")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system gnu-build-system) (inputs `(("libjpeg" ,libjpeg) @@ -1521,7 +1522,7 @@ identical visual appearance.") ("automake" ,automake) ("pkg-config" ,pkg-config))) (home-page "https://csl.name/jp2a/") - (synopsis "Converts JPG images to ASCII") - (description "Jp2a is a small utility that converts JPG images to -ASCII.") + (synopsis "Convert JPEG images to ASCII") + (description + "Jp2a is a small utility that converts JPEG images to ASCII.") (license license:gpl2))) --=-=-=--