From 70e741720a675991380da5c963f92bd1077e823c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 28 Aug 2020 09:35:38 +0200 Subject: gnu: odamex: Update to 0.8.3. * gnu/packages/games.scm (odamex): Update to 0.8.3. --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index af20bc508f..479ae52ab0 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -7048,7 +7048,7 @@ Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom.") (define-public odamex (package (name "odamex") - (version "0.8.1") + (version "0.8.3") (source (origin (method url-fetch) @@ -7056,7 +7056,7 @@ Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom.") "mirror://sourceforge/odamex/Odamex/" version "/" "odamex-src-" version ".tar.gz")) (sha256 - (base32 "1ywbqkfacc9fc5di3dn95y5ah2ys9i241j64q3f37a73x92llw1i")))) + (base32 "0f887g87bmcq4dpcga7xc2mpxs947dkbc934ir9xs55gz6z13q96")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests (inputs -- cgit 1.4.1 From f14e808aeae7b2fa7536f5fe62dae66b788fea84 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Wed, 2 Sep 2020 13:44:12 -0400 Subject: gnu: hedgewars: Fix build with shared libraries. Fixes: . * gnu/packages/games.scm (hedgewars)[arguments]: Set "haskell_flags" in #:configure-flags to enable dynamic linking. --- gnu/packages/games.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 479ae52ab0..1cd0df0dd0 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8848,7 +8848,8 @@ play with up to four players simultaneously. It has network support.") ;; XXX: Engine is built as Pascal source code, requiring Free Pascal ;; Compiler, which we haven't packaged yet. With the flag below, we use ;; a Pascal to C translator and Clang instead. - `(#:configure-flags (list "-DBUILD_ENGINE_C=ON") + `(#:configure-flags (list "-DBUILD_ENGINE_C=ON" + "-Dhaskell_flags=-dynamic;-fPIC") #:phases (modify-phases %standard-phases (replace 'check -- cgit 1.4.1 From f98ea63204680bfd29f487200f9c048c197f9e28 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Wed, 9 Sep 2020 19:35:20 -0400 Subject: gnu: retux: Update to 1.4. * gnu/packages/games.scm (retux): Update to 1.4. [source, home-page]: Update URLs. [arguments]: Update 'install phase. --- gnu/packages/games.scm | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1cd0df0dd0..15b1857f6c 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2016, 2017 Rodger Fox ;;; Copyright © 2016, 2017, 2018 Nikita ;;; Copyright © 2016 Albin Söderqvist -;;; Copyright © 2016, 2017, 2018, 2019 Kei Kebreau +;;; Copyright © 2016, 2017, 2018, 2019, 2020 Kei Kebreau ;;; Copyright © 2016 Alex Griffin ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner ;;; Copyright © 2016 Jan Nieuwenhuizen @@ -1811,15 +1811,16 @@ Every puzzle has a complete solution, although there may be more than one.") (define-public retux (package (name "retux") - (version "1.3.6") + (version "1.4") (source (origin (method url-fetch) - (uri (string-append "mirror://savannah/retux/" + (uri (string-append "https://github.com/retux-game/retux/" + "releases/download/v" (version-major+minor version) "/retux-" version "-src.tar.gz")) (sha256 (base32 - "01bidh4zisjp3nc436x0g85v60dvwb3ig37i7y01sa71j8fm4fmb")))) + "1hxy1pvlxhk0ci3wh2i3mmr82faqdjnnxsiwwr5gcr93nfnw9w5f")))) (build-system python-build-system) (arguments `(#:tests? #f ; no check target @@ -1831,28 +1832,22 @@ Every puzzle has a complete solution, although there may be more than one.") (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) - (data (string-append out "/share/retux")) - (doc (string-append out "/share/doc/retux"))) + (data (string-append out "/share/retux"))) (mkdir-p bin) (substitute* "retux.py" ;; Use the correct data directory. (("os\\.path\\.join\\(os\\.path\\.dirname\\(__file__\\), \"data\"\\),") - (string-append "\"" data "\",")) - ;; Use Python 3 so the patch-shebangs phase works properly. - ((".*python2.*") "#!/usr/bin/python3")) + (string-append "\"" data "\","))) (copy-file "retux.py" (string-append bin "/retux")) - (copy-recursively "data" data) - - (install-file "COPYING" doc) #t)))))) (inputs `(("python-sge-pygame" ,python-sge-pygame) ("python-six" ,python-six) ("python-xsge" ,python-xsge))) - (home-page "http://retux.nongnu.org") + (home-page "https://retux-game.github.io/") (synopsis "Action platformer game") (description "ReTux is an action platformer loosely inspired by the Mario games, -- cgit 1.4.1 From 39e880bfbbf5b30f6326964e8f1957cb831893fe Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Wed, 9 Sep 2020 21:13:53 -0400 Subject: gnu: starfighter: Update to 2.3.2. * gnu/packages/games.scm (starfighter): Update to 2.3.2. --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 15b1857f6c..e346e2b9a7 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4783,7 +4783,7 @@ of war. Widelands also offers an Artificial Intelligence to challenge you.") (define-public starfighter (package (name "starfighter") - (version "2.3.1") + (version "2.3.2") (source (origin (method url-fetch) (uri (string-append @@ -4792,7 +4792,7 @@ of war. Widelands also offers an Artificial Intelligence to challenge you.") version "-src.tar.gz")) (sha256 (base32 - "13396hvsj4cswlrw52kwqn37dadxps00vhr0hrqgm87fl4ih5yyx")))) + "1nvi277cazsw36b6nhd5nmk0cjvm71rlxasy24mf18j7fsvq9vp8")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit 1.4.1 From 706e79300b164d4e9ab717189c6058ec11069b8d Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Thu, 10 Sep 2020 08:22:44 -0400 Subject: gnu: armagetronad: Update to 0.2.9.0.1. * gnu/packages/games.scm (armagetronad): Update to 0.2.9.0.1. [source]: Update URL. [native-inputs]: Add pkg-config. --- gnu/packages/games.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e346e2b9a7..ac5d08b79b 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -385,15 +385,17 @@ The game includes a built-in editor so you can design and share your own maps.") (define-public armagetronad (package (name "armagetronad") - (version "0.2.8.3.5") + (version "0.2.9.0.1") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/armagetronad/stable/" - version "/armagetronad-" version ".src.tar.gz")) + version "/armagetronad-" version ".tbz")) (sha256 (base32 - "1z266haq22n5b0733h7qsg1rpzhz8lvm82f7wd06r008iiar7jdl")))) + "19rfhlg4gp0r7k1j8v4iw20325ciy156nmzax4xikmw22c6nmxcz")))) (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) (inputs `(("libxml2" ,libxml2) ("sdl" ,sdl) -- cgit 1.4.1 From 61d02cecd907b3cec14237bef3aafdcb6f62e6e9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Sep 2020 00:22:10 +0200 Subject: gnu: wesnoth: Update to 1.14.14. * gnu/packages/games.scm (wesnoth): Update to 1.14.14. --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ac5d08b79b..f6819873df 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3664,7 +3664,7 @@ falling, themeable graphics and sounds, and replays.") (define-public wesnoth (package (name "wesnoth") - (version "1.14.13") + (version "1.14.14") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/wesnoth/wesnoth-" @@ -3673,7 +3673,7 @@ falling, themeable graphics and sounds, and replays.") "wesnoth-" version ".tar.bz2")) (sha256 (base32 - "1pmqj4rah0256qi9w394ksb9apid723i5f5agkg6x1lahb1ac91q")))) + "1l7mdxn4kw938qz824057rqh99b7y9439a54s64n1xz95w77lp0r")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ;no check target -- cgit 1.4.1