Archived
1
0
Fork 0

gnu: python-pygame-sdl2: Update to 2.1.0-for-renpy-8.0.0.

* gnu/packages/game-development.scm (python-pygame-sdl2): Update to
2.1.0-for-renpy-8.0.0.
[source]: Revert to url-fetch.
Also add back the snippet to remove generated sources.
This commit is contained in:
Liliana Marie Prikler 2022-07-03 16:57:31 +02:00
parent 3e987cf521
commit 4cd5f03088
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -1209,24 +1209,25 @@ to create fully featured games and multimedia programs in the python language.")
license:lgpl2.1+)))) license:lgpl2.1+))))
(define-public python-pygame-sdl2 (define-public python-pygame-sdl2
;; Using latest git commit as of 2022-06-17, because there is no tagged
;; release for renpy 8.
;; Revert back to URLs once renpy 8 is released!
(let ((real-version "2.1.0") (let ((real-version "2.1.0")
;;(renpy-version "8.0.0") (renpy-version "8.0.0"))
(commit "1705c6e3004dcb1daf859560bcd52eb093e97d45"))
(package (package
(inherit python-pygame) (inherit python-pygame)
(name "python-pygame-sdl2") (name "python-pygame-sdl2")
(version (git-version real-version "0" commit)) (version (string-append real-version "-for-renpy-" renpy-version))
(source (source
(origin (origin
(method git-fetch) (method url-fetch)
(uri (git-reference (uri (string-append "https://www.renpy.org/dl/" renpy-version
(url "https://github.com/renpy/pygame_sdl2") "/pygame_sdl2-" version ".tar.gz"))
(commit commit))) (sha256 (base32 "0majf64pdfba5byjlv41pgsdmwvy09hw3m7143jz3kc1wjd2gaw8"))
(file-name (git-file-name name version)) (modules '((guix build utils)))
(sha256 (base32 "1g0arhpd59zypspk36sgajf1kzavppfkv766vifvxar60968rrjn")))) (snippet
'(begin
;; drop generated sources
(delete-file-recursively "gen")
(delete-file-recursively "gen3")
(delete-file-recursively "gen-static")))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:tests? #f ; tests require pygame to be installed first `(#:tests? #f ; tests require pygame to be installed first