From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60617) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gA7ZR-0001PU-Ld for guix-patches@gnu.org; Wed, 10 Oct 2018 02:02:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gA7ZM-00063H-VT for guix-patches@gnu.org; Wed, 10 Oct 2018 02:02:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38515) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gA7ZK-000623-FT for guix-patches@gnu.org; Wed, 10 Oct 2018 02:02:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gA7ZK-0005Bf-9O for guix-patches@gnu.org; Wed, 10 Oct 2018 02:02:02 -0400 Subject: [bug#33001] [PATCH] Upgrade Godot 3.0.4 -> 3.0.6 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gA7Y9-0001HY-7l for guix-patches@gnu.org; Wed, 10 Oct 2018 02:00:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gA7Y6-00052J-00 for guix-patches@gnu.org; Wed, 10 Oct 2018 02:00:49 -0400 Received: from mout02.posteo.de ([185.67.36.66]:50721) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gA7Y5-00051J-Lg for guix-patches@gnu.org; Wed, 10 Oct 2018 02:00:45 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id ADC862400E5 for ; Wed, 10 Oct 2018 08:00:43 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 42VNkL3yXxz9rxD for ; Wed, 10 Oct 2018 08:00:42 +0200 (CEST) From: Brett Gilio Date: Wed, 10 Oct 2018 01:00:38 -0500 Message-ID: <87in2afiih.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; format=flowed 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: 33001@debbugs.gnu.org Minor upgrade of Godot to 3.0.6 --- BEGIN PATCH --- diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index bfebcc433..6b7e71f6c 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1080,7 +1080,7 @@ games.") (define-public godot (package (name "godot") - (version "3.0.4") + (version "3.0.6") (source (origin (method git-fetch) (uri (git-reference @@ -1089,7 +1089,7 @@ games.") (file-name (git-file-name name version)) (sha256 (base32 - "0i4ssfb6igga9zwvsmahrnasx9cyqrsd6mlmssjgc482fy9q2kz4")) + "0g64h0x8dlv6aa9ggfcidk2mknkfl5li7z1phcav8aqp9srj8avf")) (modules '((guix build utils))) (snippet '(begin --- END PATCH ---