From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35760) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iPShD-0001Dq-W3 for guix-patches@gnu.org; Tue, 29 Oct 2019 10:42:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iPShA-0002YN-Q0 for guix-patches@gnu.org; Tue, 29 Oct 2019 10:42:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39636) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iPShA-0002Xk-Mc for guix-patches@gnu.org; Tue, 29 Oct 2019 10:42:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iPShA-0002rs-CD for guix-patches@gnu.org; Tue, 29 Oct 2019 10:42:04 -0400 Subject: [bug#37981] [PATCH] gnu: openttd: Update package. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:35650) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iPSg5-0000pi-Bo for guix-patches@gnu.org; Tue, 29 Oct 2019 10:40:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iPSg3-0002Ha-TJ for guix-patches@gnu.org; Tue, 29 Oct 2019 10:40:57 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:60367) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iPSg3-0002H0-AF for guix-patches@gnu.org; Tue, 29 Oct 2019 10:40:55 -0400 From: Josh Holland Date: Tue, 29 Oct 2019 14:40:42 +0000 Message-Id: <20191029144042.112902-1-josh@inv.alid.pw> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 37981@debbugs.gnu.org Cc: Josh Holland * gnu/packages/games.scm (openttd-engine): Update to 1.9.3. [source](patches): Delete since present in new release. [home-page]: Add www. per guix lint suggestion. (openttd-opengfx): Update to 0.5.5. --- gnu/packages/games.scm | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3e85449fac..1a4aafcaa8 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -44,6 +44,7 @@ ;;; Copyright © 2019 Dan Frumin ;;; Copyright © 2019 Guillaume Le Vaillant ;;; Copyright © 2019 Timotej Lazar +;;; Copyright © 2019 Josh Holland ;;; ;;; This file is part of GNU Guix. ;;; @@ -2594,24 +2595,14 @@ world}, @uref{http://evolonline.org, Evol Online} and (define openttd-engine (package (name "openttd-engine") - (version "1.8.0") + (version "1.9.3") (source (origin (method url-fetch) - (uri (string-append "http://binaries.openttd.org/releases/" + (uri (string-append "https://proxy.binaries.openttd.org/openttd-releases/" version "/openttd-" version "-source.tar.xz")) - (patches - (list - (origin (method url-fetch) - (uri (string-append - "https://github.com/OpenTTD/OpenTTD/commit/" - "19076c24c1f3baf2a22d1fa832d5688216cf54a3.patch")) - (file-name "openttd-fix-compilation-with-ICU-61.patch") - (sha256 - (base32 - "02d1xmb75yv4x6rfnvxk3vvq4l3lvvwr2pfsdzn7lzalic51ziqh"))))) (sha256 (base32 - "0zq8xdg0k92p3s4j9x76591zaqz7k9ra69q008m209vdfffjvly2")) + "0ijq72kgx997ggw40i5f4a3nf7y2g72z37l47i18yjvgbdzy320r")) (modules '((guix build utils))) (snippet ;; The DOS port contains proprietary software. @@ -2656,7 +2647,7 @@ Tycoon Deluxe with many enhancements including multiplayer mode, internationalization support, conditional orders and the ability to clone, autoreplace and autoupdate vehicles. This package only includes the game engine. When you start it you will be prompted to download a graphics set.") - (home-page "http://openttd.org/") + (home-page "http://www.openttd.org/") ;; This package is GPLv2, except for a few files located in ;; "src/3rdparty/" which are under the 3-clause BSD, LGPLv2.1+ and Zlib ;; licenses. In addition, this software contains an in-game downloader @@ -2667,7 +2658,7 @@ engine. When you start it you will be prompted to download a graphics set.") (define openttd-opengfx (package (name "openttd-opengfx") - (version "0.5.2") + (version "0.5.5") (source (origin (method url-fetch) @@ -2675,7 +2666,7 @@ engine. When you start it you will be prompted to download a graphics set.") version "/opengfx-" version "-source.tar.xz")) (sha256 (base32 - "0iz66q7p1mf00njfjbc4vibh3jaybki7armkl18iz7p6x4chp9zv")))) + "009fa1bdin1bk0ynzhzc30hzkmmwzmwkk6j591ax3f6w75l28n49")))) (build-system gnu-build-system) (arguments '(#:make-flags (list "CC=gcc" -- 2.23.0