From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38045) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eIzvW-0004Vr-DI for guix-patches@gnu.org; Sun, 26 Nov 2017 11:37:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eIzvS-0001on-GQ for guix-patches@gnu.org; Sun, 26 Nov 2017 11:37:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50847) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eIzvS-0001oh-Ca for guix-patches@gnu.org; Sun, 26 Nov 2017 11:37:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eIzvS-000243-6e for guix-patches@gnu.org; Sun, 26 Nov 2017 11:37:02 -0500 Subject: bug#29444: [PATCH] gnu: image: Rename pngcrunch to pngcrush and update it. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <16353634-233f-2972-5d9a-f8afd38205b5@cock.li> Date: Sun, 26 Nov 2017 17:36:16 +0100 In-Reply-To: <16353634-233f-2972-5d9a-f8afd38205b5@cock.li> (nee@cock.li's message of "Sat, 25 Nov 2017 21:06:29 +0100") Message-ID: <878tetvvy7.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: nee Cc: 29444-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable nee skribis: > Hello the package pngcrush was wrongly named pngcrunsh. > > From 0aa4d700c488cc25bc45f4402f2afe0823197546 Mon Sep 17 00:00:00 2001 > From: nee > Date: Sat, 25 Nov 2017 20:51:11 +0100 > Subject: [PATCH] gnu: image: Rename pngcrunch to pngcrush and update it. > > * gnu/packages/image.scm(pngcrush): Renamed from pngcrunch. > [version]: update to 1.8.13. > [arguments]: Use the nolib Makefile. > [origin]: Use the no-lib tar. > [home-page]: update to the new website. > * gnu/packages/image.scm(pngcrunsh): Make it a deprecated package. Funny. :-) Applied with the change below to make deprecation effective. Thanks! 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 fd6db73a8..a183817db 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -241,8 +241,9 @@ in-memory raw vectors.") files. It can compress them as much as 40% losslessly.") (license license:zlib))) -;;; typo package of pngcrush -(deprecated-package "pngcrunch" pngcrush) +(define-public pngcrunch + ;; This package used to be wrongfully name "pngcrunch". + (deprecated-package "pngcrunch" pngcrush)) (define-public libjpeg (package --=-=-=--