From a77340e1cd434f5e328a49a1065247fc54885612 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Sun, 9 May 2021 18:11:21 -0400 Subject: gnu: retux: Update to 1.5. * gnu/packages/games.scm (retux): Update to 1.5. [source]: Download zip archive since a stable tar archive is unavailable. [native-inputs]: Add unzip. --- gnu/packages/games.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index efe2c72dad..e340b4aaec 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2086,8 +2086,8 @@ Every puzzle has a complete solution, although there may be more than one.") (license license:gpl2+))) (define-public retux - (let ((release "1.4.1") - (revision 1)) + (let ((release "1.5") + (revision 0)) (package (name "retux") (version (if (zero? revision) @@ -2099,10 +2099,10 @@ Every puzzle has a complete solution, although there may be more than one.") (uri (string-append "https://github.com/retux-game/retux/" "releases/download/v" version "/retux-" - release "-src.tar.gz")) + release "-src.zip")) (sha256 (base32 - "1vrldg2qh2gqfswj7vkpc589ldrrjd903j6cnfdik9zh0jhlq4h2")))) + "1yima7s36hn2kh5h08lczc5iid8jbdxk7x1g5ms6knaznzj7rll3")))) (build-system python-build-system) (arguments `(#:tests? #f ; no check target @@ -2125,6 +2125,8 @@ Every puzzle has a complete solution, although there may be more than one.") (copy-file "retux.py" (string-append bin "/retux")) (copy-recursively "data" data) #t)))))) + (native-inputs + `(("unzip" ,unzip))) (inputs `(("python-sge-pygame" ,python-sge-pygame) ("python-six" ,python-six) -- cgit v1.2.3 From 9a11f2380ff49756ace2f33bc96a88cdb6af5453 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 10 May 2021 09:32:06 +0300 Subject: gnu: chess: Update to 6.2.8. * gnu/packages/games.scm (chess): Update to 6.2.8. --- gnu/packages/games.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e340b4aaec..731c0cbc4a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -19,7 +19,7 @@ ;;; Copyright © 2016 Albin Söderqvist ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Kei Kebreau ;;; Copyright © 2016 Alex Griffin -;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2016 Steve Webber ;;; Copyright © 2017 Adonay "adfeno" Felipe Nogueira @@ -3156,7 +3156,7 @@ asynchronously and at a user-defined speed.") (define-public chess (package (name "chess") - (version "6.2.7") + (version "6.2.8") (source (origin (method url-fetch) @@ -3164,7 +3164,7 @@ asynchronously and at a user-defined speed.") ".tar.gz")) (sha256 (base32 - "0ilq4bfl0lwyzf11q7n2skydjhalfn3bgxhrp5hjxs5bc5d6fdp5")))) + "0irqb0wl30c2i1rs8f6mm1c89l7l9nxxv7533lr408h1m36lc16m")))) (build-system gnu-build-system) (arguments '(#:phases -- cgit v1.2.3