From e719135a57992cd58d745c63b232107da9d2c4d4 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 1 May 2022 14:31:24 +0200 Subject: gnu: ocaml-cmdliner: Update to 1.1.0. Cmdliner changed its output format, so two packages need to be modified to accept the new format. The patch modifies ocaml 4.07 packages to ensure this patch results in the same derivations for these variants. * gnu/packages/ocaml.scm (ocaml-cmdliner): Update to 1.1.0. (ocaml-alcotest, ocaml-mdx)[arguments]: Fix tests. (ocaml4.07-cmdliner): New variable. (ocaml4.07-alcotest): Do not fix tests. --- gnu/packages/ocaml.scm | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 0e9ffa1f9a..8a0a7f1988 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2253,14 +2253,14 @@ (define-public ocaml-calendar (define-public ocaml-cmdliner (package (name "ocaml-cmdliner") - (version "1.0.4") + (version "1.1.0") (source (origin (method url-fetch) (uri (string-append "https://erratique.ch/software/cmdliner/releases/" "cmdliner-" version ".tbz")) (sha256 (base32 - "1h04q0zkasd0mw64ggh4y58lgzkhg6yhzy60lab8k8zq9ba96ajw")))) + "1i5k2bdmkd97g0il9cxfd8praqbvblnq5k3irwp2c9g5fkh9vdca")))) (build-system ocaml-build-system) (inputs (list ocaml-result)) @@ -2279,6 +2279,7 @@ (define-public ocaml-cmdliner (("Sys.readdir dir") "let a = Sys.readdir dir in Array.sort String.compare a; a")) #t))))) + (properties `((ocaml4.07-variant . ,(delay ocaml4.07-cmdliner)))) (home-page "https://erratique.ch/software/cmdliner") (synopsis "Declarative definition of command line interfaces for OCaml") (description "Cmdliner is a module for the declarative definition of command @@ -2289,6 +2290,20 @@ (define-public ocaml-cmdliner most of the POSIX and GNU conventions.") (license license:bsd-3))) +(define-public ocaml4.07-cmdliner + (package-with-ocaml4.07 + (package + (inherit ocaml-cmdliner) + (version "1.0.4") + (source (origin + (method url-fetch) + (uri (string-append "https://erratique.ch/software/cmdliner/releases/" + "cmdliner-" version ".tbz")) + (sha256 + (base32 + "1h04q0zkasd0mw64ggh4y58lgzkhg6yhzy60lab8k8zq9ba96ajw")))) + (properties '())))) + (define-public ocaml-fmt (package (name "ocaml-fmt") @@ -2385,7 +2400,16 @@ (define-public ocaml-alcotest (build-system dune-build-system) (arguments `(#:package "alcotest" - #:test-target ".")) + #:test-target "." + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-test-format + (lambda _ + ;; cmdliner changed the format and the tests fail + (substitute* "test/e2e/alcotest/failing/unknown_option.expected" + (("`") "'") + (("COMMAND") "[COMMAND]") + (("\\.\\.\\.") "…"))))))) (native-inputs (list ocamlbuild)) (propagated-inputs @@ -2421,6 +2445,9 @@ (define-public ocaml4.07-alcotest (sha256 (base32 "1frwi185z4aadmaf0vp8xk5227nyg7nmh28ijj5l7ncjr5slvhz8")))) + (arguments + `(#:package "alcotest" + #:test-target ".")) (properties '())))) (define-public ocaml-ppx-tools @@ -7619,6 +7646,17 @@ (define-public ocaml-mdx (base32 "1w1givvhwv9jzj9zbg4mmlpb35sqi75w83r99p2z50bdr69fdf57")))) (build-system dune-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-test-format + (lambda _ + ;; cmdliner changed the format and the tests fail + (substitute* '("test/bin/mdx-test/misc/no-such-file/test.expected" + "test/bin/mdx-test/misc/no-such-prelude/test.expected") + (("`") "'") + (("COMMAND") "[COMMAND]") + (("\\.\\.\\.") "…"))))))) (inputs (list ocaml-fmt ocaml-astring -- cgit v1.2.3