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.master
parent
762c89fb20
commit
2110cd1332
|
@ -408,14 +408,15 @@ levels.")
|
||||||
(define-public python-xsge
|
(define-public python-xsge
|
||||||
(package
|
(package
|
||||||
(name "python-xsge")
|
(name "python-xsge")
|
||||||
(version "2018.02.26")
|
(version "2020.09.07")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://savannah/xsge/xsge/xsge-"
|
(uri (string-append "https://github.com/python-sge/xsge"
|
||||||
version ".tar.gz"))
|
"/releases/download/v" version
|
||||||
|
"/xsge-" version ".zip"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bx93hgf7cgdw2gsygbh59y8vpw37pgsa279rajw3fkdpl8vrc40"))))
|
"136xgy3f9vw636wxpqbha022avk0wyxw63mm3a2dvwhh90s716f9"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -428,12 +429,11 @@ levels.")
|
||||||
(string-append "--prefix=" (assoc-ref outputs "out"))
|
(string-append "--prefix=" (assoc-ref outputs "out"))
|
||||||
"--root=/"))))
|
"--root=/"))))
|
||||||
#:tests? #f)) ; no check target
|
#:tests? #f)) ; no check target
|
||||||
|
(native-inputs
|
||||||
|
`(("unzip" ,unzip)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-sge-pygame" ,python-sge-pygame)
|
`(("python-sge" ,python-sge)))
|
||||||
("python-pygame" ,python-pygame)
|
(home-page "https://python-sge.github.io/")
|
||||||
("python-six" ,python-six)
|
|
||||||
("python-tmx" ,python-tmx)))
|
|
||||||
(home-page "http://xsge.nongnu.org")
|
|
||||||
(synopsis "Extensions for the SGE Game Engine")
|
(synopsis "Extensions for the SGE Game Engine")
|
||||||
(description
|
(description
|
||||||
"xSGE is a collection of modules that make doing certain tasks with the SGE
|
"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.")
|
support.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public python2-xsge
|
|
||||||
(package-with-python2 python-xsge))
|
|
||||||
|
|
||||||
(define-public tiled
|
(define-public tiled
|
||||||
(package
|
(package
|
||||||
(name "tiled")
|
(name "tiled")
|
||||||
|
|
Reference in New Issue