[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: crawl: Update to 0.26.0.
From: |
guix-commits |
Subject: |
branch master updated: gnu: crawl: Update to 0.26.0. |
Date: |
Wed, 13 Jan 2021 18:30:48 -0500 |
This is an automated email from the git hooks/post-receive script.
cwebber pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 872aa11 gnu: crawl: Update to 0.26.0.
872aa11 is described below
commit 872aa117d29896757a7075128059bb2dcb5b2ab3
Author: Christopher Lemmer Webber <cwebber@dustycloud.org>
AuthorDate: Wed Jan 13 18:28:40 2021 -0500
gnu: crawl: Update to 0.26.0.
* gnu/packages/games.scm (crawl): Update to 0.26.0.
Remove no-longer-needed snippet.
---
gnu/packages/games.scm | 26 +++++---------------------
1 file changed, 5 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index c5d2ff6..b8f9350 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -6196,31 +6196,15 @@ fish. The whole game is accompanied by quiet,
comforting music.")
(define-public crawl
(package
(name "crawl")
- (version "0.25.0")
+ (version "0.26.0")
(source
(origin
(method url-fetch)
- (uri (list
- ;; Older releases get moved into a versioned directory
- (string-append "http://crawl.develz.org/release/"
- (version-major+minor version) "/stone_soup-"
- version "-nodeps.tar.xz")
- ;; Only the latest release is in this directory
- (string-append "http://crawl.develz.org/release/stone_soup-"
- version "-nodeps.tar.xz")))
+ (uri (string-append "https://github.com/crawl/crawl/releases/download/"
+ version "/stone_soup-" version "-nodeps.tar.xz"))
(sha256
- (base32 "0rn1wjxdqw33caiwisfypm1j8cid3c9pz01ahicl17144zs29z3d"))
- (patches (search-patches "crawl-upgrade-saves.patch"))
- ;; The 0.25.0 -nodeps.tar.xz was built from an OSX machine; normally
- ;; apparently it's built from a Debian machine before the Debian
- ;; packages are made. These ._* files are binary and have the string
- ;; "Mac OS X" in them... removing these seems to result in compilation
- ;; again.
- (modules '((guix build utils)))
- (snippet
- '(begin
- (for-each delete-file (find-files "." "^\\._"))
- #t))))
+ (base32 "1m81x1sp6p2ka5w2nib3pcw5w5iv58z41c8aqn0dayi1lb3yslfb"))
+ (patches (search-patches "crawl-upgrade-saves.patch"))))
(build-system gnu-build-system)
(inputs
`(("lua51" ,lua-5.1)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: crawl: Update to 0.26.0.,
guix-commits <=