all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62796] [PATCH core-updates] gnu: ocaml-ppxlib: Fix tests.
@ 2023-04-12 16:00 Simon Tournier
  2023-04-12 17:08 ` Simon Tournier
  2023-04-12 17:09 ` [bug#62796] [PATCH core-updates v2 1/2] " Simon Tournier
  0 siblings, 2 replies; 5+ messages in thread
From: Simon Tournier @ 2023-04-12 16:00 UTC (permalink / raw)
  To: 62796; +Cc: Simon Tournier, pukkamustard, julien, andreas

* gnu/packages/ocaml.scm (ocaml-ppxlib)[arguments]: Substitue obsolete 'egrep'
by 'grep -E'.
---
 gnu/packages/ocaml.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Hi,

This fixes a regression when updating grep.


Cheers,
simon


diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index c6dca2874f..f1c4e35044 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6660,7 +6660,12 @@ (define-public ocaml-ppxlib
              (substitute* "test/ppx_import_support/test.ml"
                (("\\(Failure") "Failure")
                (("  \"(Some ppx-es.*)\")" _ m)
-                (string-append " \"" m "\"."))))))))
+                (string-append " \"" m "\".")))))
+         (add-after 'fix-test-format 'fix-egrep
+           (lambda _
+             ;; egrep is obsolescent; using grep -E
+             (substitute* "test/expansion_context/run.t"
+               (("egrep") "grep -E")))))))
     (propagated-inputs
      (list ocaml-compiler-libs
            ocaml-ppx-derivers

base-commit: a3bfb867380f1e5ce157334d7d9877297ef509ab
-- 
2.38.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-04-12 19:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-12 16:00 [bug#62796] [PATCH core-updates] gnu: ocaml-ppxlib: Fix tests Simon Tournier
2023-04-12 17:08 ` Simon Tournier
2023-04-12 17:09 ` [bug#62796] [PATCH core-updates v2 1/2] " Simon Tournier
2023-04-12 17:09   ` [bug#62796] [PATCH core-updates v2 2/2] gnu: ocaml-mdx: " Simon Tournier
2023-04-12 19:54     ` bug#62796: " Julien Lepiller

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.