guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: hop: Update to 3.2.0-pre1.


From: guix-commits
Subject: 02/02: gnu: hop: Update to 3.2.0-pre1.
Date: Sun, 30 Dec 2018 17:00:17 -0500 (EST)

kkebreau pushed a commit to branch master
in repository guix.

commit 697b6ca3688dba8513310bbff7c2f911023c977f
Author: Kei Kebreau <address@hidden>
Date:   Sun Dec 30 14:24:16 2018 -0500

    gnu: hop: Update to 3.2.0-pre1.
    
    * gnu/packages/scheme.scm (hop): Update to 3.2.0-pre1.
    [arguments]: Add "--hostcc=gcc" to configure flags in the 'configure' phase
    and substitute absolute reference to "/bin/rm".
---
 gnu/packages/scheme.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index 74c1033..07c37ff 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -320,14 +320,14 @@ and between Scheme and Java programs.")
 (define-public hop
   (package
     (name "hop")
-    (version "3.1.0-pre2")
+    (version "3.2.0-pre1")
     (source (origin
              (method url-fetch)
              (uri (string-append "ftp://ftp-sop.inria.fr/indes/fp/Hop/hop-";
                                  version ".tar.gz"))
              (sha256
               (base32
-               "0bvq79vxcpgwydwi923cxb5w9isx2x8r3d0xndbdhacmmsw1m811"))))
+               "0jf418d0s9imv98s6qrpjxr1mdaxr37knh5qyfl5y4a9cc41mlg5"))))
     (build-system gnu-build-system)
     (arguments
      `(#:test-target "test"
@@ -338,8 +338,12 @@ and between Scheme and Java programs.")
          (replace 'configure
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
+               (substitute* '("tools/Makefile"
+                              "test/hopjs/TEST.in")
+                 (("/bin/rm") (which "rm")))
                (invoke "./configure"
                        (string-append "--prefix=" out)
+                       "--hostcc=gcc"
                        (string-append "--blflags="
                                       ;; user flags completely override useful
                                       ;; default flags, so repeat them here.



reply via email to

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