guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: mescc-tools: Support riscv64-linux build.


From: guix-commits
Subject: 01/03: gnu: mescc-tools: Support riscv64-linux build.
Date: Sat, 11 Nov 2023 01:37:57 -0500 (EST)

janneke pushed a commit to branch master
in repository guix.

commit 952d0951da3bc272ac6753631ddc1bd6ee38f03d
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Nov 8 20:31:40 2023 +0100

    gnu: mescc-tools: Support riscv64-linux build.
    
    * gnu/packages/mes.scm (mescc-tools) [arguments]: Update to gexps.  Add
    patch-Kaem/test.sh phase to fix shebang for riscv64-linux/qemu build.
    
    Change-Id: Id61c04deb08138481f7290607488465710969e8d
---
 gnu/packages/mes.scm | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm
index ba925fe4d1..fa376c9ee8 100644
--- a/gnu/packages/mes.scm
+++ b/gnu/packages/mes.scm
@@ -33,6 +33,7 @@
   #:use-module (gnu packages texinfo)
   #:use-module (guix build-system gnu)
   #:use-module (guix download)
+  #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix licenses)
   #:use-module (guix packages)
@@ -209,9 +210,8 @@ Guile.")
     (version "1.5.0")
     (source (origin
               (method url-fetch)
-              (uri (string-append
-                    "https://github.com/oriansj/mescc-tools/releases/download/";
-                    "Release_" version "/" name "-" version ".tar.gz"))
+              (uri (string-append "mirror://savannah/" name "/"
+                                  name "-" version ".tar.gz"))
               (sha256
                (base32
                 "1vjczlajyrbjcx9ld35vhdqbxfdwwy3axg0jray3iwnrf70qr700"))))
@@ -220,10 +220,15 @@ Guile.")
                          "armhf-linux" "aarch64-linux"
                          "riscv64-linux"))
     (arguments
-     `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:test-target "test"
-       #:phases (modify-phases %standard-phases
-                  (delete 'configure))))
+     (list
+      #:make-flags #~(list (string-append "PREFIX=" #$output))
+      #:test-target "test"
+      #:phases #~(modify-phases %standard-phases
+                   (delete 'configure)
+                   (add-after 'unpack 'patch-Kaem/test.sh
+                     (lambda _
+                       (substitute* "Kaem/test.sh"
+                         (("#/usr/") "#! /usr")))))))
     (native-inputs (list which))
     (synopsis "Tools for the full source bootstrapping process")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]