guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: ocaml-menhir: Update to 20200211.


From: guix-commits
Subject: branch master updated: gnu: ocaml-menhir: Update to 20200211.
Date: Tue, 08 Dec 2020 15:18:24 -0500

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 20e5658  gnu: ocaml-menhir: Update to 20200211.
20e5658 is described below

commit 20e5658c0471c76cc297cfd30ad49f0585310e27
Author: Vincent Legoll <vincent.legoll@gmail.com>
AuthorDate: Mon Mar 16 16:32:25 2020 +0100

    gnu: ocaml-menhir: Update to 20200211.
    
    * gnu/packages/ocaml.scm (ocaml-menhir): Update to 20200211.
    [build-system]: Switch from gnu to dune.
    [arguments]: Remove phases and make-flags.
    [native-inputs]: Remove field.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/ocaml.scm | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 369e819..2bfda73 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -739,8 +739,7 @@ Emacs.")
 (define-public ocaml-menhir
   (package
     (name "ocaml-menhir")
-    ;; More recent versions can be built after we have dune >= 2.0
-    (version "20190626")
+    (version "20200211")
     (source
      (origin
        (method git-fetch)
@@ -749,19 +748,12 @@ Emacs.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0v8av4pw6rykzb7wx54xhbsx0jhh8xyb4x0k4yrxi0w5ylkck6mb"))))
-    (build-system ocaml-build-system)
+        (base32 "019izf51kdc7pzkw68zg8a2alc8lxw1gwdp7in970mr90n16b5zj"))))
+    (build-system dune-build-system)
     (inputs
      `(("ocaml" ,ocaml)))
-    (native-inputs
-     `(("ocamlbuild" ,ocamlbuild)))
     (arguments
-     `(#:make-flags `("USE_OCAMLFIND=true"
-                      ,(string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:tests? #f ; No check target
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     `(#:tests? #f)) ; No check target
     (home-page "http://gallium.inria.fr/~fpottier/menhir/";)
     (synopsis "Parser generator")
     (description "Menhir is a parser generator.  It turns high-level grammar



reply via email to

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