all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62740] [PATCH] gnu: minetest: Update to 5.7.0.
       [not found] <f37774eae9cc57e5a7b9a916aa5a524bcf1ef478.1681044825.git.poomklao.ref@yahoo.com>
@ 2023-04-09 12:54 ` Parnikkapore via Guix-patches via
  2023-04-13 17:36   ` bug#62740: " Christopher Baines
  0 siblings, 1 reply; 2+ messages in thread
From: Parnikkapore via Guix-patches via @ 2023-04-09 12:54 UTC (permalink / raw)
  To: 62740

* gnu/packages/minetest.scm (minetest): Update to 5.7.0.
* gnu/packages/minetest.scm (minetest): Move check phase to after
install, as the tests refer to data files in the installation.
* gnu/packages/minetest.scm (minetest-data): Update to 5.7.0.
* gnu/packages/games.scm (irrlicht-for-minetest): Update to 1.9.0mt10.
---
 gnu/packages/games.scm    | 4 ++--
 gnu/packages/minetest.scm | 9 +++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 77c4a12a6e..08d17edfb0 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -3637,7 +3637,7 @@ (define-public irrlicht-for-minetest
   (package
     (inherit irrlicht)
     (name "irrlicht-for-minetest")
-    (version "1.9.0mt8")
+    (version "1.9.0mt10")
     (source
      (origin
        (method git-fetch)
@@ -3647,7 +3647,7 @@ (define-public irrlicht-for-minetest
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1646pj40dqkzbbc2lxzbmq2pjyrkgggbi2lah6pa5mv420p402kg"))))
+         "0y5vchz91khs8dmrkpgc7sqmvzx2yjj6svivvm80r4yppv7s03rw"))))
     (build-system cmake-build-system)
     (arguments
      ;; No check target.
diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm
index 4c14d9412c..bf0df314a7 100644
--- a/gnu/packages/minetest.scm
+++ b/gnu/packages/minetest.scm
@@ -52,7 +52,7 @@ (define-module (gnu packages minetest)
 (define-public minetest
   (package
     (name "minetest")
-    (version "5.6.1")
+    (version "5.7.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -61,7 +61,7 @@ (define-public minetest
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1bgk369n7r52vh3hdngrlf98k3v84ch2qp341xhs53ixrns2crfn"))
+                "008l44zwwsarwk4hn7wx2nj2m21b1iqsphl7g69rrlxj760zl0pl"))
               (modules '((guix build utils)))
               (snippet
                '(begin
@@ -106,7 +106,8 @@ (define-public minetest
                   "(void)0;"))
                (setenv "MINETEST_SUBGAME_PATH" ; for check
                        (string-append (getcwd) "/games"))))
-           (replace 'check
+           (delete 'check)
+           (add-after 'install 'check
              (lambda* (#:key tests? #:allow-other-keys)
                ;; Thanks to our substitutions, the tests should also run
                ;; when invoked on the target outside of `guix build'.
@@ -165,7 +166,7 @@ (define minetest-data
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1w0vdk6a1rhsfwyfviayfwsyqbzwikqazkgbrfl39anf3a50rvv1"))))
+                "02kbj1h6jsq6k8x4v2ir0njczdz7nyx6dbym85ixxp3mrqxiws61"))))
     (build-system copy-build-system)
     (arguments
      (list #:install-plan

base-commit: 02033bfc05a1e82b12e80c6d000e1724e910e899
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#62740: [PATCH] gnu: minetest: Update to 5.7.0.
  2023-04-09 12:54 ` [bug#62740] [PATCH] gnu: minetest: Update to 5.7.0 Parnikkapore via Guix-patches via
@ 2023-04-13 17:36   ` Christopher Baines
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Baines @ 2023-04-13 17:36 UTC (permalink / raw)
  To: Parnikkapore; +Cc: 62740-done, guix-patches

[-- Attachment #1: Type: text/plain, Size: 757 bytes --]


Parnikkapore via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/minetest.scm (minetest): Update to 5.7.0.
> * gnu/packages/minetest.scm (minetest): Move check phase to after
> install, as the tests refer to data files in the installation.
> * gnu/packages/minetest.scm (minetest-data): Update to 5.7.0.
> * gnu/packages/games.scm (irrlicht-for-minetest): Update to 1.9.0mt10.
> ---
>  gnu/packages/games.scm    | 4 ++--
>  gnu/packages/minetest.scm | 9 +++++----
>  2 files changed, 7 insertions(+), 6 deletions(-)

Thanks for the patch, I've tweaked the commit message a bit to remove
some repetition and make some bits more specific. I've pushed the
amended patch to master as 972d66b66d80a16d1427eb4c33a1b31d8369d949.

Thanks,

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-04-13 17:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <f37774eae9cc57e5a7b9a916aa5a524bcf1ef478.1681044825.git.poomklao.ref@yahoo.com>
2023-04-09 12:54 ` [bug#62740] [PATCH] gnu: minetest: Update to 5.7.0 Parnikkapore via Guix-patches via
2023-04-13 17:36   ` bug#62740: " Christopher Baines

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.