guix-commits
[Top][All Lists]
Advanced

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

03/08: gnu: ocaml-qcheck: Update to 0.12.


From: guix-commits
Subject: 03/08: gnu: ocaml-qcheck: Update to 0.12.
Date: Mon, 20 Jan 2020 19:12:39 -0500 (EST)

roptat pushed a commit to branch master
in repository guix.

commit 795cf2a3b57c73eeec0fe853dbf47e140e44ff56
Author: Julien Lepiller <address@hidden>
AuthorDate: Mon Jan 20 23:26:18 2020 +0100

    gnu: ocaml-qcheck: Update to 0.12.
    
    * gnu/packages/ocaml.scm (ocaml-qcheck): Update to 0.12.
---
 gnu/packages/ocaml.scm | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 34018ea..3beead8 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -1140,7 +1140,7 @@ GNU CC attributes.  It provides also a C pretty printer 
as an example of use.")
 (define-public ocaml-qcheck
   (package
     (name "ocaml-qcheck")
-    (version "0.11")
+    (version "0.12")
     (source
      (origin
        (method git-fetch)
@@ -1149,14 +1149,22 @@ GNU CC attributes.  It provides also a C pretty printer 
as an example of use.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0d2wih4zxn2zm7kxd9dnf5nlp838km3vz6wv80fa3m51609fb24i"))))
+        (base32 "1llnfynhlndwyjig7wrayjnds2b3mggp5lw20dwxhn2i2lkkb22m"))))
     (build-system dune-build-system)
     (arguments
-     `(#:test-target "."))
-    (native-inputs
+     `(#:test-target "."
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'build 'fix-deprecated
+           (lambda _
+             (substitute* "src/core/QCheck.ml"
+               (("Pervasives.compare") "compare"))
+             #t)))))
+    (propagated-inputs
      `(("ocaml-alcotest" ,ocaml-alcotest)
-       ("ocaml-ounit" ,ocaml-ounit)
-       ("ocamlbuild" ,ocamlbuild)))
+       ("ocaml-ounit" ,ocaml-ounit)))
+    (native-inputs
+     `(("ocamlbuild" ,ocamlbuild)))
     (home-page "https://github.com/c-cube/qcheck";)
     (synopsis "QuickCheck inspired property-based testing for OCaml")
     (description "QuickCheck inspired property-based testing for OCaml. This



reply via email to

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