guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: python-pygame-sdl2: Update to 2.1.0-0-1705c6e.


From: guix-commits
Subject: 03/06: gnu: python-pygame-sdl2: Update to 2.1.0-0-1705c6e.
Date: Fri, 17 Jun 2022 12:58:03 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 62a7455107d82bc45975425c5973fc9dc3f6efaf
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Fri Jun 17 10:26:57 2022 +0200

    gnu: python-pygame-sdl2: Update to 2.1.0-0-1705c6e.
    
    * gnu/packages/game-development.scm (python-pygame-sdl2): Update to
    2.1.0-0-1705c6e.
---
 gnu/packages/game-development.scm | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 099268d58c..f69088324a 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1207,26 +1207,24 @@ to create fully featured games and multimedia programs 
in the python language.")
                    license:lgpl2.1+))))
 
 (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")
-        (renpy-version "7.4.11"))
+        ;;(renpy-version "8.0.0")
+        (commit "1705c6e3004dcb1daf859560bcd52eb093e97d45"))
     (package
       (inherit python-pygame)
       (name "python-pygame-sdl2")
-      (version (string-append real-version "-for-renpy-" renpy-version))
+      (version (git-version real-version "0" commit))
       (source
        (origin
-         (method url-fetch)
-         (uri (string-append "https://www.renpy.org/dl/"; renpy-version
-                             "/pygame_sdl2-" version ".tar.gz"))
-         (sha256 (base32 
"0nxvca16299jx6sp0ys29rqixcs21ymhqwjfkbchhss0yar7qjgz"))
-         (modules '((guix build utils)))
-         (snippet
-          '(begin
-             ;; drop generated sources
-             (delete-file-recursively "gen")
-             (delete-file-recursively "gen3")
-             (delete-file-recursively "gen-static")
-             #t))))
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/renpy/pygame_sdl2";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256 (base32 
"1g0arhpd59zypspk36sgajf1kzavppfkv766vifvxar60968rrjn"))))
       (build-system python-build-system)
       (arguments
        `(#:tests? #f                ; tests require pygame to be installed 
first



reply via email to

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