From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dsSY0-00005t-5M for guix-patches@gnu.org; Thu, 14 Sep 2017 07:43:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dsSXw-0006Bh-Cg for guix-patches@gnu.org; Thu, 14 Sep 2017 07:43:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59324) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dsSXw-0006BN-9x for guix-patches@gnu.org; Thu, 14 Sep 2017 07:43:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dsSXw-00043v-1d for guix-patches@gnu.org; Thu, 14 Sep 2017 07:43:04 -0400 Subject: [bug#28380] [PATCH] gnu: Add godot. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170907115947.19777-1-petermikkelsen10@gmail.com> <87efrh9otf.fsf@gnu.org> Date: Thu, 14 Sep 2017 13:41:51 +0200 In-Reply-To: (Peter Mikkelsen's message of "Fri, 8 Sep 2017 18:13:37 +0200") Message-ID: <87tw05a4n4.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: Peter Mikkelsen Cc: 25908-done@debbugs.gnu.org, 28380-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Peter Mikkelsen skribis: > I got some inspiration from that one, and afaik bug 25908 was never > completed. I guess you can see my patch as a completed version, co-author= ed > by Chris :) It builds and installs, and i have unbundled as much as > possible right now. > > Hope that helps! It does! I=E2=80=99m committing it with the cosmetic changes below. Note that it =E2=80=9Ccalls home=E2=80=9D to retrieve templates from godote= ngine.org and github.com. I suppose that=E2=80=99s expected but that wasn=E2=80=99t clea= r when I clicked on the browsing thing. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index e04c11d7d..5633456d4 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1118,7 +1118,10 @@ their own original games.") ("pulseaudio" ,pulseaudio) ("python2" ,python-2))) (home-page "https://godotengine.org/") - (synopsis "Advanced 2d and 3d game engine") - (description "Godot is an advanced, feature-packed, multi-platform -2D and 3D open source game engine.") + (synopsis "Advanced 2D and 3D game engine") + (description + "Godot is an advanced multi-platform game engine written in C++. If +features design tools such as a visual editor, can import 3D models and +provide high-quality 3D rendering, it contains an animation editor, and can be +scripted in a Python-like language.") (license license:expat))) --=-=-=--