From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60229) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8UW4-0004F9-Dw for guix-patches@gnu.org; Wed, 10 May 2017 12:31:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8UVy-0007di-PU for guix-patches@gnu.org; Wed, 10 May 2017 12:31:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34258) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8UVy-0007de-Le for guix-patches@gnu.org; Wed, 10 May 2017 12:31:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8UVy-0005s2-G9 for guix-patches@gnu.org; Wed, 10 May 2017 12:31:02 -0400 Subject: bug#26865: [PATCH] gnu: Add python-sge-pygame. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8UV3-0003hp-8x for guix-patches@gnu.org; Wed, 10 May 2017 12:30:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8UUz-00071s-SI for guix-patches@gnu.org; Wed, 10 May 2017 12:30:05 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:46859 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8UUz-00070y-Lu for guix-patches@gnu.org; Wed, 10 May 2017 12:30:01 -0400 From: Kei Kebreau Date: Wed, 10 May 2017 12:29:49 -0400 Message-Id: <20170510162949.5856-1-kei@openmailbox.org> 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: 26865@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/game-development.scm (python-sge-pygame, python2-sge-pygame): New variables. --- gnu/packages/game-development.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 41d85aac8..e47b556c0 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -187,6 +187,33 @@ and network communications. A very thin client library can be embedded to provide connectivity for client applications written in any language.") (license license:gpl3+))) +(define-public python-sge-pygame + (package + (name "python-sge-pygame") + (version "1.4.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sge-pygame" version)) + (sha256 + (base32 + "1qhrcja1igqkjjn1w425ni5f41mijdq5dpq0ymkhl29xxrf8hnx8")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pygame" ,python-pygame) + ("python-six" ,python-six))) + (home-page "http://stellarengine.nongnu.org") + (synopsis "A 2-D game engine for Python") + (description + "The SGE Game Engine (\"SGE\", pronounced like \"Sage\") is a +general-purpose 2-D game engine. It takes care of several details fro you so +you can focus on the game itself. This makes more rapid game development +possible, and it also makes the SGE easy to learn.") + (license license:lgpl3+))) + +(define-public python2-sge-pygame + (package-with-python2 python-sge-pygame)) + (define-public tiled (package (name "tiled") -- 2.12.2