guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: python-xsge: Update to 2020.09.07.


From: guix-commits
Subject: 02/03: gnu: python-xsge: Update to 2020.09.07.
Date: Wed, 9 Sep 2020 21:10:04 -0400 (EDT)

kkebreau pushed a commit to branch master
in repository guix.

commit 2110cd1332aee5439c32413f01483055ef91b339
Author: Kei Kebreau <kkebreau@posteo.net>
AuthorDate: Wed Sep 9 20:40:40 2020 -0400

    gnu: python-xsge: Update to 2020.09.07.
    
    * gnu/packages/game-development.scm (python-xsge): Update to 2020.09.07.
    [native-inputs]: Add unzip.
    [propagated-inputs]: Remove python-game, python-six, and python-tmx.  Use
    python-sge instead of python-sge-pygame.
    [home-page]: Update URL.
    (python2-xsge): Remove unsupported Python 2 variant.
---
 gnu/packages/game-development.scm | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 0f48803..c8e0e94 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -408,14 +408,15 @@ levels.")
 (define-public python-xsge
   (package
     (name "python-xsge")
-    (version "2018.02.26")
+    (version "2020.09.07")
     (source (origin
               (method url-fetch)
-              (uri (string-append "mirror://savannah/xsge/xsge/xsge-"
-                                  version ".tar.gz"))
+              (uri (string-append "https://github.com/python-sge/xsge";
+                                  "/releases/download/v" version
+                                  "/xsge-" version ".zip"))
               (sha256
                (base32
-                "0bx93hgf7cgdw2gsygbh59y8vpw37pgsa279rajw3fkdpl8vrc40"))))
+                "136xgy3f9vw636wxpqbha022avk0wyxw63mm3a2dvwhh90s716f9"))))
     (build-system python-build-system)
     (arguments
      '(#:phases
@@ -428,12 +429,11 @@ levels.")
                      (string-append "--prefix=" (assoc-ref outputs "out"))
                      "--root=/"))))
        #:tests? #f)) ; no check target
+    (native-inputs
+     `(("unzip" ,unzip)))
     (propagated-inputs
-     `(("python-sge-pygame" ,python-sge-pygame)
-       ("python-pygame" ,python-pygame)
-       ("python-six" ,python-six)
-       ("python-tmx" ,python-tmx)))
-    (home-page "http://xsge.nongnu.org";)
+     `(("python-sge" ,python-sge)))
+    (home-page "https://python-sge.github.io/";)
     (synopsis "Extensions for the SGE Game Engine")
     (description
      "xSGE is a collection of modules that make doing certain tasks with the 
SGE
@@ -442,9 +442,6 @@ GUI toolkit, lighting and physics frameworks and 
@code{Tiled} TMX format
 support.")
     (license license:gpl3+)))
 
-(define-public python2-xsge
-  (package-with-python2 python-xsge))
-
 (define-public tiled
   (package
     (name "tiled")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]