[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: python-renpy: Update to 8.0.0.
From: |
guix-commits |
Subject: |
03/06: gnu: python-renpy: Update to 8.0.0. |
Date: |
Sun, 3 Jul 2022 12:11:47 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 65c9ecce2aa3eb393534c204023a28818ddbfe6c
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Jul 3 16:59:59 2022 +0200
gnu: python-renpy: Update to 8.0.0.
* gnu/packages/game-development.scm (python-renpy): Update to 8.0.0.
[source]: Revert back to url-fetch. Also patch module/setup.py to not refer
to missing sources.
---
gnu/packages/game-development.scm | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index 117c743107..07402aecf2 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1258,21 +1258,16 @@ While it aims to be used as a drop-in replacement, it
appears to be
developed mainly for Ren'py.")
(license (list license:lgpl2.1 license:zlib)))))
-;; Using nightly from 2022-06-16.
-;; Revert back to URLs once renpy 8 is released!
-(define %renpy-commit "3e854bc7cb1642ca18b061a0c6e349f168965c43")
(define-public python-renpy
(package
(name "python-renpy")
- (version (git-version "7.99.99" "0" %renpy-commit))
+ (version "8.0.0")
(source
(origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/renpy/renpy")
- (commit %renpy-commit)))
- (file-name (git-file-name name version))
- (sha256 (base32 "11g7hqhw4gbkx5ib2wsawrznmjbn8r9zkgf2sg39z56h96y8wfbn"))
+ (method url-fetch)
+ (uri (string-append "https://www.renpy.org/dl/" version
+ "/renpy-" version "-source.tar.bz2"))
+ (sha256 (base32 "09z3r16j4cxddkb50ghmi4xp0s05s15q4pzdmfajy85ignwqhjdi"))
(modules '((guix build utils)))
(patches
(search-patches
@@ -1281,7 +1276,10 @@ developed mainly for Ren'py.")
'(with-directory-excursion "module"
;; drop fribidi sources
(delete-file-recursively "fribidi-src")
- #t))))
+ ;; drop _renpytfd, as there are missing sources
+ (substitute* "setup.py"
+ (("cython\\(\"_renpytfd\"" all)
+ (string-append "pass # " all)))))))
(build-system python-build-system)
(arguments
`(#:tests? #f ; Ren'py doesn't seem to package tests
- branch master updated (4a2f487740 -> 9cdfecc8a3), guix-commits, 2022/07/03
- 01/06: gnu: Add font-artifika., guix-commits, 2022/07/03
- 02/06: gnu: python-pygame-sdl2: Update to 2.1.0-for-renpy-8.0.0., guix-commits, 2022/07/03
- 05/06: etc: teams: Sort members lexicographically by last name., guix-commits, 2022/07/03
- 04/06: gnu: renpy: Install sdk-fonts., guix-commits, 2022/07/03
- 06/06: etc: teams: Add entry for Liliana Prikler., guix-commits, 2022/07/03
- 03/06: gnu: python-renpy: Update to 8.0.0.,
guix-commits <=