From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52114) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h4xLp-0005Q0-S2 for guix-patches@gnu.org; Fri, 15 Mar 2019 20:39:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h4xI5-0001oZ-J3 for guix-patches@gnu.org; Fri, 15 Mar 2019 20:35:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60370) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h4xI5-0001oU-ER for guix-patches@gnu.org; Fri, 15 Mar 2019 20:35:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h4xI5-0008Fa-9z for guix-patches@gnu.org; Fri, 15 Mar 2019 20:35:09 -0400 Subject: [bug#34881] [PATCH] gnu: gzdoom: Update to 3.7.2. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:47450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h4wLm-0003jw-V3 for guix-patches@gnu.org; Fri, 15 Mar 2019 19:34:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h4w6O-0006u4-IN for guix-patches@gnu.org; Fri, 15 Mar 2019 19:19:01 -0400 Received: from pictor.uberspace.de ([95.143.172.207]:34968) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h4w6O-0006tS-2a for guix-patches@gnu.org; Fri, 15 Mar 2019 19:19:00 -0400 From: nee Message-ID: <16bfe884-5687-ea40-bdde-058a8f87b77d@hidamari.blue> Date: Sat, 16 Mar 2019 00:18:57 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------4B6F992E9A339E13EA723BCF" Content-Language: en-GB 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: 34881@debbugs.gnu.org This is a multi-part message in MIME format. --------------4B6F992E9A339E13EA723BCF Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit --------------4B6F992E9A339E13EA723BCF Content-Type: text/x-patch; name="0001-gnu-gzdoom-Update-to-3.7.2.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-gnu-gzdoom-Update-to-3.7.2.patch" =46rom 261618b557f4f292c376e1f92c4a4d5f23bc4b73 Mon Sep 17 00:00:00 2001 From: nee Date: Fri, 15 Mar 2019 23:53:52 +0100 Subject: [PATCH] gnu: gzdoom: Update to 3.7.2. * gnu/packages/games.scm (gzdoom): Update to 3.7.2. [source](uri): Update path. [source](snippet): Bundled libjpeg directory has beend renamed. --- gnu/packages/games.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 46b58e352c..a1626740cd 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -5309,22 +5309,22 @@ You can save humanity and get programming skills!= ") (define-public gzdoom (package (name "gzdoom") - (version "3.3.0") + (version "3.7.2") (source (origin (method url-fetch) (uri - (string-append "https://zdoom.org/files/gzdoom/src/gzdoom= -g" + (string-append "https://zdoom.org/files/gzdoom/src/gzdoom= -src-g" version ".zip")) (sha256 (base32 - "09a4kx3ry8pc9r578m7yprwa7zsdqxjpn10lyc92r5g9sx4l1m1a"))= + "0182f160m8d0c3nywjw3dxvnz93xjs4cn8akx7137cha4s05wdq7"))= (patches (search-patches "gzdoom-search-in-installed-share= =2Epatch")) (modules '((guix build utils))) (snippet '(begin (delete-file-recursively "bzip2") (delete-file-recursively "game-music-emu") - (delete-file-recursively "jpeg-6b") + (delete-file-recursively "jpeg") (delete-file-recursively "zlib") #t)))) (arguments --=20 2.20.1 --------------4B6F992E9A339E13EA723BCF--